- Firefox-Version
- FF73
- Betriebssystem
- Win 10
Diverse Einstellungen aus der userchrome.css funktionieren nicht mehr in der Seitenleiste Lesezeichen:
Zeilenhöhe
Schriftgröße
Ordnericon
Farbe
In der Favoritenleiste und sonst ist alles ok. Was hat sich da verändert?
Ich habe mal den Code angefügt und würde mich freuen, wenn da mal jemand draufschaut und mir Hinweise gibt.
CSS
/* Do not remove the @namespace line -- it's required for correct functioning */
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* set default namespace to XUL */
/* Favoriten Schriftgröße */
#personal-bookmarks {
background: #d9d9d9 !important;
font-weight:bold !important;
font-size: 11px !important;
}
/* Ordner Mobile Lesezeichen im Menü Lesezeichen ausblenden*/
#mobileBookmarksFolderPopup,
#menu_mobileBookmarks {
display:none!important
}
/* Statuszeile entfernen */
statuspanel {
display:none !important;
}
/* Adresszeile aufräumen */
#reader-mode-button{
display:none!important;
}
#urlbar-zoom-button,
#pageActionButton,
.urlbar-history-dropmarker {
display:none!important;
}
/* URL-Zeile entfernen */
#statuspanel-label{
display:none!important;}
/* Schriftgröße Menüleiste */
#main-menubar > menu {
font-size:14px !important;
}
/* Searchbar Größe */
@-moz-document url-prefix(chrome://browser/content/browser.xhtml){
#search-container{
min-width: 300px!important;
font-weight:bold !important;
font-size: 11px !important;}
}
/* Adresscontainer Schriftgröße */
#urlbar,#urlbar-container{
font-weight:bold !important;
font-size: 12px !important;
}
/* Toolbar + Tabs Farben etc. */
toolbar .toolbarbutton-1 {
filter:none;
fill: #0052cc !important;
font-weight:bold !important;
}
#TabsToolbar .tabbrowser-tab {
font-weight:bold !important;
font-size: 13px !important;
color: black ! important;
}
#TabsToolbar .tabbrowser-tab[selected="true"] {
font-weight:bold !important;
color: black ! important;
}
#TabsToolbar .tab-icon-image {
height: 18px !important;
width: 18px !important;
}
/* Lesezeichen Sidebar - Ordnericon liegend grün */
@-moz-document url("chrome://browser/content/bookmarks/bookmarksPanel.xul"),
url("chrome://browser/content/history/history-panel.xul"),
url("chrome://browser/content/places/bookmarksSidebar.xul") {
treechildren::-moz-tree-image(container) {
fill: #009933 !important; }
}
/* Lesezeichen verwalten - Ordnericon liegend grün */
@-moz-document url-prefix("chrome://browser/content/places/places.xul") {
treechildren::-moz-tree-image(container) {
fill: #009933 !important; }
}
/* Lesezeichen - Ordnericon grün */
@-moz-document url-prefix("chrome://browser/content/browser.xhtml") {
.bookmark-item[container="true"] {
fill: #009933 !important;
-moz-image-region: rect(0px 16px 16px 0px) !important; }
}
/* Lesezeichen Sidebar Header entfernen */
sidebarheader {
display:none!important;
}
/* Lesezeichen Sidebar Farben */
@-moz-document url("chrome://browser/content/bookmarks/bookmarksPanel.xul"),
url("chrome://browser/content/browser.xhtml"),
url("chrome://browser/content/history/history-panel.xul"),
url("chrome://browser/content/places/bookmarksSidebar.xul") {
#bookmarks-view,sidebarheader,#sidebar-box,.sidebar-placesTreechildren,#sidebar-search-label,#sidebar-search-container,#placesList > treechildren{
-moz-appearance: none !important;
background: #cccccc !important;
border-right: 1px solid darkgrey !important;
font-weight:bold !important;
font-size: 12px !important;
}
/* Zeilenhöhe reduzieren */
.sidebar-placesTree treechildren::-moz-tree-row,
.placesTree treechildren::-moz-tree-row {
min-height: 20px !important;
}
/* Rand rechts grau */
#sidebar-box{
border-right: 1px darkgrey !important;
}
/* Folderpane */
#folderTree treechildren {
background-color: #cccccc !important;
}
/* Threadpane */
#threadTree treechildren {
background-color: #E9E9E9 !important;
}
/* Lesezeichen-Auswahl Farben */
tree[selstyle="primary"] > treechildren::-moz-tree-row {
border: none !important;
background-color: #E9E9E9 !important;
}
treechildren::-moz-tree-row(selected) {
border: none !important;
background-color: #bfbfbf !important;
}
treechildren::-moz-tree-cell-text(selected) {
color: #ff0000 !important;
}
treechildren::-moz-tree-row(hover) {
background-color: #80bfff !important;
color: black !important;
}
treechildren::-moz-tree-row(selected, focus) {
border: none !important;
background-color: #b3b3b3 !important;
}
}
Alles anzeigen