ShadowFox/userChrome-files/dark_address_bar.css

94 lines
2.2 KiB
CSS
Raw Normal View History

2017-12-02 22:50:35 +00:00
/* The following code is based on that found on
* https://www.jeffersonscher.com/gm/url-bar-tweaks.html
* Copyright © 2017 Jefferson Scher (BSD-3-Clause License or CC-BY License) */
2017-12-03 05:20:09 +00:00
:root {
--panel-separator-color: var(--grey-60) !important;
}
2017-12-02 22:50:35 +00:00
#PopupAutoCompleteRichResult .autocomplete-richlistbox {
2017-12-02 22:50:35 +00:00
background-color: var(--grey-60) !important;
}
/* Hover color */
.autocomplete-richlistitem:hover,
treechildren.searchbar-treebody::-moz-tree-row(hover) {
background-color: var(--primary-dark-color) !important;
}
2017-12-02 22:50:35 +00:00
#PopupAutoCompleteRichResult .autocomplete-richlistitem {
border-bottom-color: var(--primary-light-color) !important;
}
.autocomplete-richlistitem .ac-title,
.autocomplete-richlistitem .ac-action,
.autocomplete-richlistitem .ac-separator,
#PopupSearchAutoComplete {
color: var(--primary-light-color) !important;
}
.autocomplete-richlistitem[selected=true] {
background-color: var(--primary-accent-color) !important;
}
.autocomplete-richlistitem[selected=true] .ac-title,
.ac-title[selected],
.autocomplete-richlistitem[selected=true] .ac-action,
.ac-action[selected],
.autocomplete-richlistitem[selected=true] .ac-separator,
.ac-separator[selected] {
color: white !important;
}
.autocomplete-richlistitem[selected=true] .ac-url,
.ac-url[selected] {
color: white !important;
}
.ac-url {
color: var(--primary-accent-color) !important;
}
.search-one-offs {
background: var(--grey-60) !important;
}
.search-panel-input-value {
color: var(--primary-accent-color) !important;;
}
2017-12-03 05:20:09 +00:00
/* Search one-offs */
2017-12-02 22:50:35 +00:00
.search-panel-one-offs {
background: var(--grey-80) !important;
}
2017-12-03 05:20:09 +00:00
.search-panel-header {
background-color: var(--grey-80) !important;
2017-12-03 05:20:09 +00:00
border-top: none !important;
}
.search-panel-one-offs {
border-top: none !important;
}
/* Searchbar */
/* Why won't the menu items change color?? */
/* Changes header */
panel[type="autocomplete"], panel[type="autocomplete-richlistbox"], .autocomplete-history-popup {
color: var(--primary-light-color) !important;
background: var(--primary-dark-color) !important;
}
/* Changes the hover color and text color */
.autocomplete-tree {
background-color: var(--grey-60) !important;
color: black !important;
}