diff --git a/.changeset/fix-card-tabs-dropdown-zindex.md b/.changeset/fix-card-tabs-dropdown-zindex.md new file mode 100644 index 000000000..b790fd7d9 --- /dev/null +++ b/.changeset/fix-card-tabs-dropdown-zindex.md @@ -0,0 +1,5 @@ +--- +"@tabler/core": patch +--- + +Fixed `.card-tabs .nav-tabs` sharing `z-index` with `.dropdown-menu`, which made dropdowns opened over card tabs render behind them. diff --git a/core/scss/ui/_cards.scss b/core/scss/ui/_cards.scss index aa366970c..5cb018f0e 100644 --- a/core/scss/ui/_cards.scss +++ b/core/scss/ui/_cards.scss @@ -594,7 +594,7 @@ Card list group .card-tabs { .nav-tabs { position: relative; - z-index: $zindex-dropdown; + z-index: 1; border-bottom: 0; .nav-link {