Skip to content

Commit 1ff415f

Browse files
committed
Fix: Tabbar - No show at windows #368
1 parent 0fd746b commit 1ff415f

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

css/leptonChrome.css

+5-1
Original file line numberDiff line numberDiff line change
@@ -3656,14 +3656,18 @@
36563656
#tab-notification-deck-template {
36573657
flex-basis: 100%;
36583658
}
3659+
3660+
/* -moz-default-appearance: -moz-window-titlebar */
3661+
#titlebar {
3662+
-moz-appearance: none !important;
3663+
}
36593664
}
36603665
@supports -moz-bool-pref("userChrome.tab.on_bottom") {
36613666
/* Source file https://github.com/MrOtherGuy/firefox-csshacks/tree/master/chrome/tabs_on_bottom.css made available under Mozilla Public License v. 2.0
36623667
See the above repository for updates as well as full license text. */
36633668
/*= Tabbar - Move to bottom ==================================================*/
36643669
#titlebar {
36653670
order: 2;
3666-
-moz-appearance: none !important;
36673671
--tabs-navbar-shadow-size: 0px;
36683672
}
36693673

src/tabbar/_index.scss

+5
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,11 @@
1111
#tab-notification-deck-template {
1212
flex-basis: 100%;
1313
}
14+
15+
/* -moz-default-appearance: -moz-window-titlebar */
16+
#titlebar {
17+
-moz-appearance: none !important;
18+
}
1419
}
1520

1621
@include Option("userChrome.tab.on_bottom") {

src/tabbar/_tabs_on_bottom.scss

-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ See the above repository for updates as well as full license text. */
44
/*= Tabbar - Move to bottom ==================================================*/
55
#titlebar{
66
order: 2;
7-
-moz-appearance: none !important;
87
--tabs-navbar-shadow-size: 0px;
98
}
109
#tab-notification-deck {

0 commit comments

Comments
 (0)