diff options
author | Matt A. Tobin <email@mattatobin.com> | 2021-07-12 13:09:00 -0400 |
---|---|---|
committer | Matt A. Tobin <email@mattatobin.com> | 2021-07-12 13:09:00 -0400 |
commit | bb7d7eebdd452546e7ceee73b1bdbb237566635a (patch) | |
tree | ce21875ccf660c2838f0a41b7783a64b34e3ee88 | |
parent | e29e57e9bc4d6890358446421a8501dcdd617eaf (diff) | |
download | basilisk-bb7d7eebdd452546e7ceee73b1bdbb237566635a.tar.gz |
Issue MoonchildProductions/UXP#1793 - Override the global style for Windows 10 that adds a bottom border to the toolbox widget
The local application style already provides this.
-rw-r--r-- | basilisk/themes/windows/browser.css | 7 | ||||
-rw-r--r-- | basilisk/themes/windows/places/organizer.css | 7 |
2 files changed, 14 insertions, 0 deletions
diff --git a/basilisk/themes/windows/browser.css b/basilisk/themes/windows/browser.css index a0043b2..7d55168 100644 --- a/basilisk/themes/windows/browser.css +++ b/basilisk/themes/windows/browser.css @@ -123,6 +123,13 @@ toolbar:-moz-lwtheme { border-top: none; } +@media (-moz-os-version: windows-win10) and (-moz-windows-theme: aero) { + #navigator-toolbox { + /* Override the global style for Windows 10 that adds a bottom border */ + border-bottom: none; + }; +} + #navigator-toolbox::after { content: ""; display: -moz-box; diff --git a/basilisk/themes/windows/places/organizer.css b/basilisk/themes/windows/places/organizer.css index 9ae4c83..d7c008f 100644 --- a/basilisk/themes/windows/places/organizer.css +++ b/basilisk/themes/windows/places/organizer.css @@ -174,6 +174,13 @@ } } +@media (-moz-os-version: windows-win10) and (-moz-windows-theme: aero) { + #placesToolbox { + /* Override the global style for Windows 10 that adds a bottom border */ + border-bottom: none; + } +} + @media (-moz-windows-default-theme) and (-moz-os-version: windows-win7) { #placesView, #infoPane, |