- Firefox-Version
- 85
- Betriebssystem
- Win 64
Leider schaffe ich es nicht mir eine mehrzeilige Lesezeichenleiste über die userChrome.css einzurichten.
Ich habe:
über appdata/roaming/mozilla\firefox/profiles\6997xx\das Verzeichnis Chrome angelegt.
Darin wurde die userChrome.css anglegt und mit dem Script befüllt.
Doch keider funktiniert das nicht. Kann mir bitte jemand helfen?
CSS
/*Tableiste mehrreihig unten*/
@-moz-document url(chrome://browser/content/browser.xhtml) {
/* Höhe der Tabs und Abstand nach unten*/
.tabbrowser-tab:not([pinned]) {
margin-left: 1px !important;
max-height: 25px !important;
margin-bottom: 4px !important;
}
/* Höhe vom Tabtext und Abstand nach unten*/
.tab-text,.tab-icon-image,.tab-close-button {
margin-top: -3px !important;
}
/* Feste Tabbreite */
.tabbrowser-tab:not([pinned]) {
min-width: 150px !important;
max-width: 150px !important;
}
#titlebar {
-moz-box-ordinal-group: 2!important;
}
/*Abstand nach oben - unten, und Höhe der Tableiste*/
#titlebar {
margin-top: -4px !important;
margin-bottom: -3px;
}
/* Farbe der Tableiste hellgrau */
#titlebar {
appearance: none !important;
background: #eeeeee !important;
}
#toolbar-menubar {
position: fixed;
display: inline-flex;
}
[sizemode="maximized"]:not([tabsintitlebar="true"]) #toolbar-menubar,
[sizemode="normal"] #toolbar-menubar {
top: 1px;
}
[sizemode="maximized"] #toolbar-menubar {
top: 8px;
}
#main-window[tabsintitlebar="true"] #navigator-toolbox:not([inFullscreen="true"]) {
border-top: solid 39px transparent !important;
}
#main-window:not([tabsintitlebar="true"]) #navigator-toolbox:not([inFullscreen="true"]) {
border-top: solid 34px transparent !important;
}
}
Alles anzeigen
Edit 2002Andreas
Text in Klammercode </> gesetzt.