summaryrefslogtreecommitdiff
path: root/toolkit/themes
diff options
context:
space:
mode:
authorMatt A. Tobin <email@mattatobin.com>2021-07-12 13:00:51 -0400
committerMatt A. Tobin <email@mattatobin.com>2021-07-12 13:00:51 -0400
commitcc934f826465f552e546f80da1ea99a2f4f0f5c8 (patch)
tree459a934e12af5fd88c2fd1ca7d7ebeb728a5ed48 /toolkit/themes
parent1327910cdab1a826062437cc502c8df688ee2fc4 (diff)
downloaduxp-cc934f826465f552e546f80da1ea99a2f4f0f5c8.tar.gz
Issue #1793 - Only use proper Aero Styling in the Toolkit Error Console on Windows 7
Diffstat (limited to 'toolkit/themes')
-rw-r--r--toolkit/themes/windows/global/console/console.css14
1 files changed, 8 insertions, 6 deletions
diff --git a/toolkit/themes/windows/global/console/console.css b/toolkit/themes/windows/global/console/console.css
index d918fb73c8..4fb3fab706 100644
--- a/toolkit/themes/windows/global/console/console.css
+++ b/toolkit/themes/windows/global/console/console.css
@@ -208,11 +208,13 @@ toolbar#ToolbarMode .toolbarbutton-text {
}
%ifdef XP_WIN
-#ToolbarMode {
- -moz-appearance: -moz-win-browsertabbar-toolbox;
-}
-
-#ToolbarEval {
- -moz-appearance: toolbox;
+@media not (-moz-os-version: windows-win10) {
+ #ToolbarMode {
+ -moz-appearance: -moz-win-browsertabbar-toolbox;
+ }
+
+ #ToolbarEval {
+ -moz-appearance: toolbox;
+ }
}
%endif