ShadowFox/userChrome-files/library.css

128 lines
3.8 KiB
CSS
Raw Normal View History

2017-12-18 18:28:29 +00:00
@-moz-document url(chrome://browser/content/places/places.xul),
url(chrome://browser/content/places/bookmarkProperties.xul) {
2017-12-21 04:10:05 +00:00
/* Details Dock and Bookmark Properties*/
2017-12-18 18:28:29 +00:00
#detailsDeck,
#bookmarkproperties {
-moz-appearance: none !important;
background-color: var(--grey-70) !important;
color: var(--primary-light-color) !important;
border: 0px solid black !important;
}
2017-12-21 04:10:05 +00:00
/* Toolbar */
toolbar {
-moz-appearance: none !important;
background-color: var(--grey-80) !important;
border: 0px solid black !important;
}
2017-12-21 04:10:05 +00:00
/* Main Area */
#placeContent,
#places #downloadsRichListBox {
2017-12-18 18:28:29 +00:00
-moz-appearance: none !important;
border: 1px solid var(--grey-60) !important;
2017-12-18 18:28:29 +00:00
color: rgb(200,200,200) !important;
background-color: var(--grey-60) !important;
}
2017-12-21 04:10:05 +00:00
/* Sidebar */
#placesList {
-moz-appearance: none !important;
color: rgb(200,200,200) !important;
background-color: rgba(12, 12, 13, .8) !important;
}
2017-12-18 18:28:29 +00:00
/* Column Header */
#contentView treecol {
-moz-appearance: none !important;
border: 0px solid !important;
border-bottom: 1px solid !important;
border-right: 1px solid rgb(0,0,0) !important;
-moz-border-bottom-colors: rgb(0,0,0) !important;
background: linear-gradient(to bottom,
2017-12-18 18:28:29 +00:00
rgba(56,70,82,1) 0%,
rgba(35,39,48,1) 100%) !important;
color: white !important;
}
2017-12-18 18:28:29 +00:00
/* Text Boxes - One Line */
#places textbox:not([multiline="true"]),
#editBookmarkPanelContent textbox:not([multiline="true"]) {
-moz-appearance: none !important;
color: var(--primary-light-color) !important;
background-color: var(--grey-60) !important;
}
2017-12-18 18:28:29 +00:00
/* Bookmarks Description Field */
#places #editBMPanel_descriptionField,
#editBookmarkPanelContent #editBMPanel_descriptionField {
-moz-appearance: none !important;
background-color: var(--grey-60) !important;
color: var(--primary-light-color) !important;
}
2017-12-18 18:28:29 +00:00
/* Bookmark Tag Options */
listbox {
-moz-appearance: none !important;
background-color: var(--grey-60) !important;
color: var(--primary-light-color) !important;
}
#places listbox:focus > listitem[selected="true"] {
background-color: var(--primary-accent-color) !important;
color: black !important;
}
/* *
2017-12-18 18:28:29 +00:00
* Tree Items *
* */
2017-12-18 18:28:29 +00:00
#places treechildren::-moz-tree-row {
background-color: transparent !important;
overflow-y: scroll !important;
}
2017-12-18 18:28:29 +00:00
/* Change the outline of icons to light instead of dark */
#places treechildren::-moz-tree-image, #places treechildren::-moz-tree-image {
fill: var(--primary-light-color) !important;
}
/* Selected, in focus */
#places treechildren:not(.autocomplete-treebody)::-moz-tree-row(selected, current, focus) {
background: var(--primary-accent-color) !important;
}
/* Selected, not in focus */
#places treechildren:not(.autocomplete-treebody)::-moz-tree-row(selected, current) {
background: var(--blue-40) !important;
}
2017-12-30 03:29:55 +00:00
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;
}
2017-12-21 04:10:05 +00:00
#placeContent treechildren:not(.autocomplete-treebody)::-moz-tree-row(odd) {
background: rgba(12, 12, 13, .1) !important;
}
2017-12-21 04:10:05 +00:00
#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;
2017-12-30 03:29:55 +00:00
-moz-border-bottom-colors: var(--dark-accent) !important;
2017-12-21 04:10:05 +00:00
}
2017-12-21 04:10:05 +00:00
#places treechildren:not(.autocomplete-treebody)::-moz-tree-row(hover, selected) {
background: var(--primary-accent-color) !important;
}
2017-12-18 18:28:29 +00:00
}