ShadowFox/userChrome-files/dark_nav_bar_menus.css

155 lines
3.9 KiB
CSS
Raw Normal View History

2018-02-01 23:03:36 +00:00
/* Color of tab throbber animation */
:root {
--tab-loading-fill: var(--primary-accent-color) !important;
}
.tab-throbber::before {
fill: var(--primary-accent-color) !important;
opacity: 1 !important;
}
2017-11-30 22:34:27 +00:00
/*Pop Down Arrow */
.panel-arrow {
filter: invert(70%) !important;
2017-11-30 22:34:27 +00:00
}
/* main menu */
.panel-subview-body, #appMenu-zoomReset-button {
color: var(--grey-10) !important;
2018-02-15 01:46:15 +00:00
background: var(--mid-way-color) !important;
2017-11-30 22:34:27 +00:00
}
/* header of sub menus */
.panel-subview-footer,[class^="PanelUI-"] {
color: var(--grey-10) !important;
2018-02-15 01:46:15 +00:00
background: var(--primary-dark-color) !important;
2017-11-30 22:34:27 +00:00
}
/* webextension popup fix */
.webextension-popup-browser {
background: white !important;;
2017-11-30 22:34:27 +00:00
}
2017-12-03 03:18:07 +00:00
/* Fix for downloads menu */
photonpanelmultiview panelview {
background: none !important;
color: var(--primary-light-color) !important;
}
#emptyDownloads {
2018-02-15 01:46:15 +00:00
background: var(--mid-way-color) !important;
color: var(--primary-light-color) !important;
}
#downloadsFooterButtons {
2018-02-15 01:46:15 +00:00
background: var(--primary-dark-color) !important;
color: var(--primary-light-color) !important;
}
#downloadsFooter[showingsummary] > stack:not(:hover) {
2018-02-15 01:46:15 +00:00
background-color: var(--dark-accent) !important;
}
2017-12-07 17:04:01 +00:00
/* Fix downloads list - only appears to be necessary in Nightly */
#downloadsListBox {
background: var(--primary-dark-color) !important;
}
2017-12-03 03:18:07 +00:00
2017-12-02 22:50:35 +00:00
#appMenu-mainView toolbarbutton:hover, #customizationui-widget-multiview toolbarbutton:hover,
#widget-overflow-list toolbarbutton:hover {
2018-02-15 01:46:15 +00:00
background: var(--dark-accent) !important;
2017-12-02 22:50:35 +00:00
}
#BMB_bookmarksPopup {
background: none !important;
}
/* Secure Connection Drop Down */
#identity-popup-securityView {
2018-02-15 01:46:15 +00:00
background: var(--mid-way-color) !important;
}
/* Divider */
#identity-popup-multiView > .panel-viewcontainer > .panel-viewstack > .panel-subviews {
background: var(--primary-light-color) !important;
}
/* Button */
.identity-popup-expander[panel-multiview-anchor] {
2017-12-21 17:38:00 +00:00
background-color: var(--primary-accent-color) !important;
fill: var(--primary-light-color) !important;
}
/* Secure connection drop-down - necessary change for FF 59 */
/* Main Background */
#identity-popup-mainView {
2018-02-15 01:46:15 +00:00
background: var(--mid-way-color) !important;
color: var(--primary-light-color) !important;
}
/* Lock color */
#identity-popup[connection^="secure"] .identity-popup-security-content {
fill: var(--primary-accent-color) !important;
}
/* Permissions logo - white (can't change background image only)
* Temporary hack until I fish out the icon and invert that */
#identity-popup-permissions-content {
filter: invert(90%) !important;
}
/* Change color of text to account for ^^ */
#identity-popup-permissions-content {
2018-02-15 01:46:15 +00:00
color: var(--primary-dark-color) !important;
}
/* More info right button */
.identity-popup-expander {
2018-02-15 01:46:15 +00:00
border-right: solid 1px var(--light-accent-color) !important;
background-color: var(--mid-way-color) !important;
fill: var(--light-accent-color) !important;
}
/* New update is available */
.popup-notification-button[default][highlight="true"]:not([disabled]) {
background-color: var(--primary-accent-color) !important;
color: #ccc;
}
#update-available-whats-new {
color: var(--primary-accent-color) !important;
}
.popup-notification-icon[popupid="update-available"], .popup-notification-icon[popupid="update-manual"], .popup-notification-icon[popupid="update-restart"] {
2017-12-13 17:58:58 +00:00
background-color: var(--primary-accent-color) !important;
border-radius: 50%;
2018-01-14 23:02:04 +00:00
}
toolbarbutton {
text-shadow: none !important;
}
.panel-banner-item > .toolbarbutton-multiline-text {
color: var(--primary-light-color) !important;
}
.panel-banner-item {
background-color: hsla(96,65%,37%,.9) !important;
}
#update-manual-whats-new {
2018-02-01 23:03:36 +00:00
color: var(--primary-accent-color) !important;
}
/* Color of highlighted buttons */
toolbar[brighttext] {
--toolbarbutton-icon-fill-attention: var(--primary-accent-color-dark) !important;
}
2018-01-14 23:02:04 +00:00
::-moz-selection {
2018-02-15 01:46:15 +00:00
background: var(--primary-accent-color);
2018-01-14 23:02:04 +00:00
color: white !important;
}