From bb7d7eebdd452546e7ceee73b1bdbb237566635a Mon Sep 17 00:00:00 2001 From: "Matt A. Tobin" Date: Mon, 12 Jul 2021 13:09:00 -0400 Subject: 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. --- basilisk/themes/windows/browser.css | 7 +++++++ basilisk/themes/windows/places/organizer.css | 7 +++++++ 2 files changed, 14 insertions(+) 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, -- cgit v1.2.3