Hallo zusammen,
so langsam aber sicher entspricht der neue Fox meinen Bedürfnissen. Schnell ist er ja.
Ich habe unter anderem folgendes Script für die mehrzeilige Tab-Leiste in meiner userchrome:
-----------------------------------------------------------------------------------------------------------------
/*Mehrzeilige Tab-Leiste*/
/*AGENT_SHEET*/
/* tabs height for "classic tabs" */
:root {
--tab-min-height: 9px !important;
}
.tabbrowser-tab:not([pinned]) {
flex-grow: 1;
min-width: 150px !important;
max-width: 150px !important;
}
.tabbrowser-tab,.tab-background {
min-height: 9px;
}
.tab-stack {
width: 100%;
}
/**/
#tabbrowser-tabs .scrollbox-innerbox {
display: flex;
flex-wrap: wrap;
overflow-y: auto !important;
min-height: 10px
max-height: 10px
}
#tabbrowser-tabs .arrowscrollbox-scrollbox {
overflow: visible;
display: block;
}
#tabbrowser-tabs .scrollbutton-up,
#tabbrowser-tabs .scrollbutton-down,
#alltabs-button,
.tabbrowser-tab:not([fadein]){
display: none;
}
#main-window[tabsintitlebar] #tabbrowser-tabs {
-moz-window-dragging: no-drag;
}
Alles anzeigen
--------------------------------------------------------------------------------------------------------------------------
Das passt mir soweit, nur die Höhe der Tab Reiter ist viel zu hoch, siehe Screenshot:
[attachment=0]Screenshot (1).jpg[/attachment]
Wie kann ich diese Höhe ändern ? Der mutmaßliche Code:
--tab-min-height: 9px !important;
hat nämliche keinerlei Auswirkungen. Ich kann die Zahl auch auf 0 ändern, die Höhe ist dennoch gleich.
Es muss aber an diesem Code liegen, denn wenn ich den ganzen Code aus der userchrome lösche, passt die Höhe,
nur die mehrzeilige Tab-Leiste ist dann halt auch weg.
Weiß jemand Rat ?