Fix for dynamic native tabs on Firefox 133

This commit is contained in:
2024-11-29 14:39:12 -05:00
parent 658ddf7d43
commit 5cfabdf92a

View File

@@ -1,23 +1,23 @@
#main-window #titlebar {
#main-window .toolbar-items {
overflow: hidden;
transition: height 0.3s 0.3s !important;
}
/* Default state: Set initial height to enable animation */
#main-window #titlebar {
#main-window .toolbar-items {
height: 3em !important;
}
#main-window[uidensity="touch"] #titlebar {
#main-window[uidensity="touch"] .toolbar-items {
height: 3.35em !important;
}
#main-window[uidensity="compact"] #titlebar {
#main-window[uidensity="compact"] .toolbar-items {
height: 2.7em !important;
}
/* Hidden state: Hide native tabs strip */
#main-window[titlepreface*=""] #titlebar {
#main-window[titlepreface*=""] .toolbar-items {
height: 0 !important;
}