From 86aec314751f8251f76cb3b75f8b81eef5c065b7 Mon Sep 17 00:00:00 2001 From: "Matt A. Tobin" Date: Mon, 12 Jul 2021 12:57:39 -0400 Subject: [PATCH] Issue #1793 - Add a border-bottom to toolbox Follow-up to e8be661944c730cb3b702cd7f7d97e0860eb9132 --- toolkit/themes/windows/global/toolbar.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/toolkit/themes/windows/global/toolbar.css b/toolkit/themes/windows/global/toolbar.css index 97310e1aeb..0a6eb943a0 100644 --- a/toolkit/themes/windows/global/toolbar.css +++ b/toolkit/themes/windows/global/toolbar.css @@ -23,6 +23,12 @@ toolbox { so don't use the widget toolbox styling and fallback to -moz-Dialog's color which by default should be a non-blinding rgb(240, 240, 240) */ -moz-appearance: none; + + /* Since we are overriding the style we want to provide the bottom border + that is normally drawn by look&feel. + However, local application styling may also provide it on adjacent + widgets as a border-top. Those will need to omit it on Windows 10. */ + border-bottom: 1px solid ThreeDShadow; } }