From 16e310b2e02696b1c3ceb8fd1e833880ed050577 Mon Sep 17 00:00:00 2001 From: alstjr7375 Date: Thu, 13 Oct 2022 09:42:26 +0900 Subject: [PATCH] Fix: Tab Bar - Height at `TabMixPlus`'s multirow' https://github.com/onemen/TabMixPlus/issues/168 --- css/leptonChrome.css | 6 ++++++ src/padding/_tabbar_height.scss | 5 +++++ 2 files changed, 11 insertions(+) diff --git a/css/leptonChrome.css b/css/leptonChrome.css index c02b695..54bcc39 100644 --- a/css/leptonChrome.css +++ b/css/leptonChrome.css @@ -3591,6 +3591,12 @@ height: var(--tab-min-height) !important; } } + /* Works with TabMixPlus */ + #TabsToolbar[multibar] .tabbrowser-tab { + height: unset !important; + /* Original: var(--tab-min-height_mlt) */ + } + /* Scroll Button - Size Fix */ :root #tabbrowser-arrowscrollbox { --scrollbtn-vertical-padding: 3px; diff --git a/src/padding/_tabbar_height.scss b/src/padding/_tabbar_height.scss index 2f6da44..05f6e2d 100644 --- a/src/padding/_tabbar_height.scss +++ b/src/padding/_tabbar_height.scss @@ -59,6 +59,11 @@ } } +/* Works with TabMixPlus */ +#TabsToolbar[multibar] .tabbrowser-tab { + height: unset !important; /* Original: var(--tab-min-height_mlt) */ +} + /* Scroll Button - Size Fix */ :root #tabbrowser-arrowscrollbox { --scrollbtn-vertical-padding: 3px;