summaryrefslogtreecommitdiff
path: root/toolkit
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
commit31572b0d909c6300c9539e7e68eab2f4416f8799 (patch)
tree459a934e12af5fd88c2fd1ca7d7ebeb728a5ed48 /toolkit
parent9efe008d301026ac24790f3646ff0e88431fbf7f (diff)
downloadaura-central-31572b0d909c6300c9539e7e68eab2f4416f8799.tar.gz
Issue mcp-graveyard/UXP%1793 - Only use proper Aero Styling in the Toolkit Error Console on Windows 7
Diffstat (limited to 'toolkit')
-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 d918fb73c..4fb3fab70 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