Merge pull request #41 from xAphex/patch-1

fixing highlight hover border color
This commit is contained in:
overdodactyl 2017-12-22 21:22:36 +00:00 committed by GitHub
commit 18e8a9fef7
1 changed files with 6 additions and 2 deletions

View File

@ -570,7 +570,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;
}
@ -662,6 +662,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) {
@ -756,4 +760,4 @@ browser[type="content"] > html {
.tab-line[selected="true"] {
background-color: var(--primary-accent-color) !important;
}
}