From de44d613651e679dd0285504575b4913afdacbb5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Kuna?= <1282324+codecalm@users.noreply.github.com> Date: Mon, 3 Aug 2026 01:47:43 +0200 Subject: [PATCH] Fix `.card-tabs .nav-tabs` z-index colliding with dropdowns (#2752) --- .changeset/fix-card-tabs-dropdown-zindex.md | 5 +++++ core/scss/ui/_cards.scss | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 .changeset/fix-card-tabs-dropdown-zindex.md 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 {