From cfef6f90099cdd41a4d0674eaab52d5738bc0f91 Mon Sep 17 00:00:00 2001 From: xAphex <5391237+xAphex@users.noreply.github.com> Date: Sat, 23 Dec 2017 16:02:44 +0200 Subject: [PATCH] Fix for border color when not in focus. --- userChrome.css | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/userChrome.css b/userChrome.css index 77da168..e89e382 100644 --- a/userChrome.css +++ b/userChrome.css @@ -648,6 +648,13 @@ url(chrome://browser/content/places/bookmarkProperties.xul) { background: var(--blue-40) !important; } + treechildren:not(.autocomplete-treebody)::-moz-tree-row(selected) { + -moz-border-top-colors: var(--grey-80) !important; + -moz-border-right-colors: var(--grey-80) !important; + -moz-border-left-colors: var(--grey-80) !important; + -moz-border-bottom-colors: var(--grey-80) !important; + } + #placeContent treechildren:not(.autocomplete-treebody)::-moz-tree-row(odd) { background: rgba(12, 12, 13, .1) !important; } @@ -752,4 +759,4 @@ browser[type="content"] > html { .tab-line[selected="true"] { background-color: var(--primary-accent-color) !important; -} \ No newline at end of file +}