Skip to content

Commit 8a5eb89

Browse files
committed
Fix a few minor issues
1 parent def775d commit 8a5eb89

File tree

3 files changed

+18
-14
lines changed

3 files changed

+18
-14
lines changed

browser/themes/shared/light-dark-overrides.css

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -64,15 +64,17 @@
6464
}
6565
}
6666

67-
@media (-moz-platform: windows-win8) {
68-
@media (-moz-windows-default-theme) {
67+
@media (-moz-platform: windows-win8),
68+
(-moz-windows-default-theme),
69+
(-moz-windows-glass) {
70+
@media not (-moz-windows-classic) {
6971
#TabsToolbar {
7072
color: black;
7173
--toolbarbutton-icon-fill: currentColor;
7274
}
73-
}
74-
#toolbar-menubar {
75-
color: black;
75+
#toolbar-menubar {
76+
color: black;
77+
}
7678
}
7779
}
7880

browser/themes/shared/r3dfox.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -619,7 +619,7 @@
619619

620620
#alltabs-button::after {
621621
padding: 4px 4px 4px 0px !important;
622-
@media (-moz-platform: windows-xp), (-moz-windows-classic) {
622+
@media (-moz-platform: windows-winxp), (-moz-windows-classic) {
623623
padding: 6px 5px 5px 0px !important;
624624
}
625625
border-radius: 0px 4px 4px 0px !important;

browser/themes/windows/browser.css

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -168,14 +168,16 @@
168168
}
169169
/* Titlebar */
170170

171-
:root[tabsintitlebar][sizemode="normal"] #titlebar {
172-
appearance: auto;
173-
-moz-default-appearance: -moz-window-titlebar;
174-
}
171+
@media not (-moz-platform: windows-win10) {
172+
:root[tabsintitlebar][sizemode="normal"] #titlebar {
173+
appearance: auto;
174+
-moz-default-appearance: -moz-window-titlebar;
175+
}
175176

176-
:root[tabsintitlebar][sizemode="maximized"] #titlebar {
177-
appearance: auto;
178-
-moz-default-appearance: -moz-window-titlebar-maximized;
177+
:root[tabsintitlebar][sizemode="maximized"] #titlebar {
178+
appearance: auto;
179+
-moz-default-appearance: -moz-window-titlebar-maximized;
180+
}
179181
}
180182

181183
@media not (-moz-windows-compositor) {
@@ -231,7 +233,7 @@
231233
/* add extra margin for unmaximized windows
232234
on Win XP Luna themes to look consistent */
233235
@media not (-moz-windows-classic) {
234-
@media (-moz-platform: windows-xp) {
236+
@media (-moz-platform: windows-winxp) {
235237
:root[tabsintitlebar]:not([sizemode="maximized"]) .titlebar-buttonbox-container {
236238
margin-top: 4px;
237239
}

0 commit comments

Comments
 (0)