theme-store/themes/ea1a5ace-f698-4b45-ab88-6e8bd3a563f0/chrome.css
2024-08-19 20:29:17 +00:00

21 lines
527 B
CSS

/* Center the bookmarks toolbar */
@media (-moz-bool-pref: "uc.bookmarks.center-toolbar") {
#PlacesToolbarItems {
justify-content: center;
}
}
/* Hide folder icons in the bookmarks toolbar */
@media (-moz-bool-pref: "uc.bookmarks.hide-folder-icons") {
.bookmark-item[container="true"] .toolbarbutton-icon {
display: none;
}
}
/* Hide favicons in the bookmarks toolbar */
@media (-moz-bool-pref: "uc.bookmarks.hide-favicons") {
.bookmark-item:not([container]) .toolbarbutton-icon {
display: none;
}
}