From 42a2248a993e6c3031766cd6d3cdb5e68d145b1b Mon Sep 17 00:00:00 2001 From: xAphex <5391237+xAphex@users.noreply.github.com> Date: Fri, 22 Dec 2017 21:58:59 +0200 Subject: [PATCH] fixing highlight hover border color, also removing black border around downloads box this is my fix for highlight border color, also i changed this annoying black 1px solid border around downloads box. --- userChrome.css | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/userChrome.css b/userChrome.css index 3f6cede..ef536ca 100644 --- a/userChrome.css +++ b/userChrome.css @@ -536,7 +536,7 @@ url(chrome://browser/content/places/bookmarkProperties.xul) { #placeContent, #places #downloadsRichListBox { -moz-appearance: none !important; - border: 1px solid rgb(0,0,0) !important; + border: 1px solid var(--grey-60) !important; color: rgb(200,200,200) !important; background-color: var(--grey-60) !important; } @@ -628,6 +628,10 @@ url(chrome://browser/content/places/bookmarkProperties.xul) { #places treechildren:not(.autocomplete-treebody)::-moz-tree-row(hover) { background: var(--dark-accent) !important; + -moz-border-top-colors: var(--dark-accent) !important; + -moz-border-right-colors: var(--dark-accent) !important; + -moz-border-left-colors: var(--dark-accent) !important; + -moz-border-bottom-colors: var(--dark-accent) !important; } #places treechildren:not(.autocomplete-treebody)::-moz-tree-row(hover, selected) { @@ -722,4 +726,4 @@ browser[type="content"] > html { .tab-line[selected="true"] { background-color: var(--primary-accent-color) !important; -} \ No newline at end of file +}