From a9388df01943ee4156143de81a745f8ba7274913 Mon Sep 17 00:00:00 2001 From: Edwin Noorlander Date: Tue, 11 Aug 2026 16:41:02 +0200 Subject: [PATCH] Remove --bs-nav-tabs CSS variables from theme, use direct !important overrides - Remove --bs-nav-tabs-border-radius/width/color from theme.css - Use border: none !important and border-radius: 0 !important directly - Override all Bootstrap --bs-dropdown-* variables completely - Add gap: 0 on .nav-tabs --- themes/default/assets/css/theme.css | 4 +--- themes/default/assets/css_compiled/theme.css | 4 +--- themes/default/assets/scss/theme.scss | 4 +--- 3 files changed, 3 insertions(+), 9 deletions(-) diff --git a/themes/default/assets/css/theme.css b/themes/default/assets/css/theme.css index 43eb37a..89471bc 100644 --- a/themes/default/assets/css/theme.css +++ b/themes/default/assets/css/theme.css @@ -221,12 +221,10 @@ } } .nav-tabs { - --bs-nav-tabs-border-radius: 0; - --bs-nav-tabs-border-width: 0; - --bs-nav-tabs-border-color: transparent; background-color: transparent !important; border: none !important; border-radius: 0 !important; + gap: 0 !important; } .nav-tabs .nav-link { background-color: transparent !important; diff --git a/themes/default/assets/css_compiled/theme.css b/themes/default/assets/css_compiled/theme.css index 43eb37a..89471bc 100644 --- a/themes/default/assets/css_compiled/theme.css +++ b/themes/default/assets/css_compiled/theme.css @@ -221,12 +221,10 @@ } } .nav-tabs { - --bs-nav-tabs-border-radius: 0; - --bs-nav-tabs-border-width: 0; - --bs-nav-tabs-border-color: transparent; background-color: transparent !important; border: none !important; border-radius: 0 !important; + gap: 0 !important; } .nav-tabs .nav-link { background-color: transparent !important; diff --git a/themes/default/assets/scss/theme.scss b/themes/default/assets/scss/theme.scss index 98c17a1..2c1d305 100644 --- a/themes/default/assets/scss/theme.scss +++ b/themes/default/assets/scss/theme.scss @@ -288,12 +288,10 @@ $header-bg-opacity: 1; // Remove nav-tabs background so it inherits from parent .nav-tabs { - --bs-nav-tabs-border-radius: 0; - --bs-nav-tabs-border-width: 0; - --bs-nav-tabs-border-color: transparent; background-color: transparent !important; border: none !important; border-radius: 0 !important; + gap: 0 !important; .nav-link { background-color: transparent !important;