Sehr fummelige Angelegenheit für mich :-??
So kann ich es dir anbieten, nur rechts den kleinen Scrollbalken bekomme ich (noch) nicht weg.
[attachment=0]Zwischenablage01.jpg[/attachment]
Dazu habe ich deine userChrome.css aus dem Beitrag Nr. 24 benutzt, und dieses zusätzlich unten drunter eingetragen:
CSS
.tabbrowser-tab{
max-height: 25px!important;
-moz-box-flex: 0!important;
width: 170px!important;
}
:root {
--tab-min-height: 18px !important;
}
.tab-stack {
width: 100%!important;
}
#tabbrowser-tabs .scrollbox-innerbox {
display: flex!important;
flex-wrap: wrap!important;
overflow-y: auto !important;
min-height: var(--tab-min-height);
max-height: calc(5*var(--tab-min-height)) !important; /* 5 rows */
}
#tabbrowser-tabs .arrowscrollbox-scrollbox {
overflow: visible!important;
display: block!important;
}
#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