diff options
author | Matt A. Tobin <email@mattatobin.com> | 2021-07-12 12:58:30 -0400 |
---|---|---|
committer | Matt A. Tobin <email@mattatobin.com> | 2021-07-12 12:58:30 -0400 |
commit | 1327910cdab1a826062437cc502c8df688ee2fc4 (patch) | |
tree | d971ca4e6aedaab31dbe925637c8b2de3d7900cd | |
parent | 3b7f2ddd3c5b1624421de3e9042d6cf0c1bc40be (diff) | |
download | uxp-1327910cdab1a826062437cc502c8df688ee2fc4.tar.gz |
Issue #1793 - Add a border-bottom to treecols header
-rw-r--r-- | toolkit/themes/windows/global/tree.css | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/toolkit/themes/windows/global/tree.css b/toolkit/themes/windows/global/tree.css index 2b4957c6c9..3a0ae882fa 100644 --- a/toolkit/themes/windows/global/tree.css +++ b/toolkit/themes/windows/global/tree.css @@ -198,6 +198,14 @@ treechildren::-moz-tree-cell-text(progressmeter) { /* ::::: tree columns ::::: */ +@media (-moz-os-version: windows-win10) and (-moz-windows-theme: aero) { + treecols { + /* Windows 10's "aero" msstyle does not provide a complete style for + the treecols header so we need to provide a bottom border */ + border-bottom: 1px solid ThreeDLightShadow; + } +} + treecol, treecolpicker { -moz-appearance: treeheadercell; |