mirror of
https://github.com/black7375/Firefox-UI-Fix.git
synced 2026-01-07 09:43:13 -08:00
21 lines
1.3 KiB
SCSS
21 lines
1.3 KiB
SCSS
/*= Standard Folder - More Visible ===========================================*/
|
|
/* on Toolbar and Menus */
|
|
:-moz-any(#PlacesToolbar, #BMB_bookmarksPopup, #bookmarksMenu) .bookmark-item[container="true"]:not([query="true"], [tagContainer], [dayContainer]),
|
|
/* in Sidebar, Library, Add/Edit Bookmark dialog */
|
|
/* https://github.com/rillian/firefox/blob/1f88437d263f56bdede4f20f69ba9c7b62f57001/layout/style/nsCSSAnonBoxList.h#L85-L98 */
|
|
/* Need to overide!!, can not use :not() */
|
|
:-moz-any(#bookmarks-view, #historyTree, #editBMPanel_folderTree, #placesList, #placeContent) treechildren::-moz-tree-image(title, container),
|
|
#editBMPanel_folderMenuList:not([selectedGuid="toolbar_____"], [selectedGuid="menu________"]),
|
|
#editBMPanel_folderMenuList .folder-icon:not([id]),
|
|
/* Download Popup */
|
|
.downloadIconShow > .button-box > .button-icon {
|
|
list-style-image: url("./icons/folder.svg") !important;
|
|
}
|
|
|
|
/* Standard Folder - Open */
|
|
:-moz-any(#PlacesToolbar, #BMB_bookmarksPopup, #bookmarksMenu)
|
|
.bookmark-item[container="true"]:not([query="true"], [tagContainer], [dayContainer])[open="true"],
|
|
:-moz-any(#bookmarks-view, #historyTree, #editBMPanel_folderTree, #placesList, #placeContent)
|
|
treechildren::-moz-tree-image(title, container, open) {
|
|
list-style-image: url("./icons/folder-open.svg") !important;
|
|
}
|