- Firefox-Version
- 89
- Betriebssystem
- LINUX
Hallo,
ich habe die userChrome.css von hier; aber die Tabs müssen nach oben, unter die URL-Zeile und nicht in den Lesezeichen und HTML-Bereich. Bei drei und mehr Tabs sind die auf der rechten Seite nicht.mehr zugreifbar. Wie geht's?
Meine komplette Datei:
CSS
/* Kommentare nur so, NICHT mit # (funktioniert nur manchmal) */
/* Suchleiste bei URL-Eingabe abschalten, Quelle: https://www.camp-firefox.de/forum/viewtopic.php?f=1&t=127163 */
#PopupAutoCompleteRichResult{
display: none !important;
}
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */
@namespace html url("http://www.w3.org/1999/xhtml");
/* Buttonbox rechts auf der Tableiste ausblenden, Quelle: https://www.camp-firefox.de/forum/thema/129116-tuning-tipps-m-eine-firefox-tweaks-sammlung/?postID=1135456#post1135456 */
#TabsToolbar > .titlebar-buttonbox-container {
display: none !important;
}
/* Werte / Zeilenabstand in der Sidebar anpassen, Quelle: https://www.camp-firefox.de/forum/thema/129783-ff72-und-die-tabs/?postID=1135340#post1135340 */
.sidebar-placesTree treechildren::-moz-tree-row {
min-height: 20px !important;
height: 20px !important;
}
.sidebar-placesTree treechildren::-moz-tree-image {
margin: -2px 2px !important;
}
/* TabsOnBottom, Quelle: EXPERT #2344 und https://support.mozilla.org/de/questions/1248277 */
/* TabsOnBottom FF72, Quelle: https://www.camp-firefox.de/forum/thema/129783-ff72-und-die-tabs/?postID=1135338#post1135338 */
/* WICHTIG: layout.css.xul-box-display-values.survive-blockification.enabled == TRUE */
#main-window[privatebrowsingmode=temporary] .tabbrowser-tab[visuallyselected="true"]{
margin-top: -4px !important;
max-height: 31px !important;
}
#main-window[privatebrowsingmode=temporary] #tabbrowser-tabs {
width: 100vw !important;
}
#main-window[privatebrowsingmode=temporary]:not([chromehidden*="toolbar"]) #navigator-toolbox {
padding-bottom: var(--tab-min-height) !important;
}
#main-window[privatebrowsingmode=temporary]:root {
--tab-min-height: 31px !important;
}
#main-window[privatebrowsingmode=temporary]:root #tabbrowser-tabs {
--tab-min-height: 31px !important;
}
#main-window[privatebrowsingmode=temporary] .tabbrowser-tab:not([pinned]) {
-moz-box-flex: 0!important;
width: 157px!important;
}
@-moz-document url(chrome://browser/content/browser.xhtml) {
#TabsToolbar {
background: #104e8b !important;
position: absolute !important;
display: block !important;
top: 107px !important; /*Abstand nach oben*/
width: 100% !important;
}
#TabsToolbar :-moz-any(.tabs-newtab-button,#tabs-newtab-button) {
min-width: 0px !important;
width: 25px !important;
margin-bottom: -5px !important;
}
#tabbrowser-tabs {
width: 100vw !important;
}
#main-window:not([chromehidden*="toolbar"]) #navigator-toolbox {
padding-bottom: 38px !important;
}
:root {
--tab-min-height: 25px !important; /* 30 25 20*/
}
:root #tabbrowser-tabs {
--tab-min-height: 20px !important; /* 30 25 15*/
}
.tabbrowser-tab:not([selected="true"]) {
color: blue !important;
background: lightgrey !important;
font-weight: bold !important;
}
/* Aktiver Tab */
.tabbrowser-tab[selected] .tab-content {
color: white !important;
background: blue !important;
font-weight: bold !important;
}
.tabbrowser-tab:not([pinned]) {
-moz-box-flex: 0!important;
width: 157px!important;
}
}
Alles anzeigen