mobile-config-firefox/chrome/dark_additional_windows.css

61 lines
1.7 KiB
CSS
Raw Normal View History

2019-05-01 09:30:12 +02:00
/* Dark library, page-info and bookmark-properties */
/* Color scheme matches default dark theme */
@-moz-document url(chrome://browser/content/places/places.xul),
url(chrome://browser/content/pageinfo/pageInfo.xul),
url(chrome://browser/content/places/bookmarkProperties.xul){
#placesToolbox,
#placesView,
#placesToolbar,
#main-window,
#topBar,
dialog,
tree{
-moz-appearance: none !important;
background-color: var(--toolbar-bgcolor,rgb(50,50,52)) !important;
2019-05-01 09:30:12 +02:00
color: rgb(249,249,250) !important;
}
#placesToolbar,
tree{
background: transparent !important;
}
2019-08-13 15:22:54 +02:00
2019-05-01 09:30:12 +02:00
textbox,
richlistbox,
treecol,
button,
menu,
#permList{
-moz-appearance: none !important;
color: inherit !important;
}
2019-08-13 15:22:54 +02:00
.menubar-left{ fill: currentColor; -moz-context-properties: fill; }
2019-05-01 09:30:12 +02:00
textbox,richlistbox{ background-color: rgba(0,0,0,0.2) !important; }
treecol:not([hideheader]){ height: 24px; }
treecol:hover{ filter: brightness(160%) }
treechildren::-moz-tree-row(multicol, odd), #permList{ background-color: rgba(0,0,0,0.2) !important; }
radiogroup > radio[selected],
radiogroup > radio:hover,
#permList > .permission:hover,
treechildren::-moz-tree-row(hover),
button:hover{ background-color: rgba(255,255,255,0.1) !important; color: inherit !important;}
treechildren::-moz-tree-row(selected){ background-color: Highlight !important; }
button{ padding: 3px }
#placesMenu > menu{ border: none !important; }
2019-07-09 10:56:13 +02:00
button{ border: 1px solid graytext; border-radius: 3px }
2019-05-01 09:30:12 +02:00
}
2019-07-09 10:56:13 +02:00
/* modal prompts (alert() & friends) */
.paymentDialogContainerFrame,
.tabmodalprompt-mainContainer{
background-color: var(--toolbar-bgcolor) !important;
color: var(--lwt-text-color,-moz-dialogtext) !important;
}