Fix for border color when not in focus.

This commit is contained in:
xAphex 2017-12-23 16:02:44 +02:00 committed by GitHub
parent f40d1e02bc
commit cfef6f9009
1 changed files with 8 additions and 1 deletions

View File

@ -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;
}
}