Jetzt wirds verrückt
das ist der gesamte CSS-Code für Tabs und damit sind jetzt die inaktiven Tabs breiter
(im aktuellen Nightly gesehen)
CSS
/* abgerundete Ecken der Tabs */
#TabsToolbar .tabbrowser-tab{
border-radius: 80px !important;
border:none!important;
}
.tab-background[selected="true"] {
background: #C1FFC1 !important;
border-radius: 80px !important;
border:none!important;
}
.tab-background:not([selected=true]) {
background: transparent !important;
border-radius: 80px !important;
border: 1px solid darkgreen !important;
}
.tabbrowser-tab::after, .tabbrowser-tab::before {
margin-inline-start: 0px!important;
border-left: 0px solid!important;
border-image:none!important;
border-image-slice: 0!important;
width: 0px!important;
box-sizing: border-box;
opacity: 0!important;
}
.tab-line[selected=true] {
display:none!important
}
.tab-line:not([selected=true]) {
display:none!important
}
/*Tab schließen Button HG bei hover rot und das X weiß*/
.tab-close-button[fadein]:hover {
fill: white !important;
background: green !important;
}
/*Abgerundeter Schließen Button*/
.tab-close-button {
border-radius: 80px !important;
}
/*Abgerundeter Neuer Tab Button*/
#tabs-newtab-button > image {
border-radius: 80px !important;
}
Aktiver Tab breiter, nicht aktiv schmaler
.tabbrowser-tab:not([pinned]):not([selected]) {
min-width: 128px !important;
max-width: 128px !important;
}
.tabbrowser-tab:not([pinned])[selected] {
min-width: 200px !important;
max-width: 200px !important;
}
.tab-close-button {
display: block !important;
}
Alles anzeigen
Kann es möglich sein, dass Änderungen an der Größe der Lesezeichen-Symbolleiste hier noch mit schuldig sind?
