diff options
author | Matt A. Tobin <email@mattatobin.com> | 2021-07-12 13:00:51 -0400 |
---|---|---|
committer | Matt A. Tobin <email@mattatobin.com> | 2021-07-12 13:00:51 -0400 |
commit | 9801e67a63f7de8dfa6d5b3eb70d6ddd6e5d19ff (patch) | |
tree | 459a934e12af5fd88c2fd1ca7d7ebeb728a5ed48 | |
parent | 18b20f402b48cd995fe41defbecb645eac924902 (diff) | |
download | uxp-9801e67a63f7de8dfa6d5b3eb70d6ddd6e5d19ff.tar.gz |
Issue mcp-graveyard/UXP#1793 - Only use proper Aero Styling in the Toolkit Error Console on Windows 7
-rw-r--r-- | toolkit/themes/windows/global/console/console.css | 14 |
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 |