mirror of
https://github.com/zen-browser/theme-store.git
synced 2025-07-15 20:53:54 +02:00
21 lines
527 B
CSS
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;
|
|
}
|
|
}
|