Wie krieg in
firefox --version Mozilla Firefox 89.0
den aktiven Tab farbig eingefärbt?
Probiert hab ich folgendes:
alex@Guilmon:~$ cat .mozilla/firefox/xcx55fyh.default-release/chrome/userChrome.css
tab {
font-size: 17px !important;
font-family: Maven Pro !important;
}
/* Use color and shape to make the tabs look more like tabs */
.tab-background {
background: #585060;
border-radius: 9px 9px 0 0 !important;
margin-bottom: 0px !important;
box-shadow: 0 0 2px 2px rgba(0,0,0,0.1) !important;
border: 1px solid rgba(0,0,0,.5) !important;
border-bottom-width: 0px !important;
}
/* Selected tabs I want a bright background with a dark foreground */
.tabbrowser-tab[selected] .tab-background {
background: #fcb731 !important;
}
.tabbrowser-tab[selected] .tab-label {
color: black !important;
font-weight: bold !important;
}
/* Draw a solid line underneath to make the selected tab look *connected* to the rest of the browser */
#TabsToolbar {
border-bottom: 2px solid #fcb731 !important;
}
/* Hover over tabs */
.tabbrowser-tab:hover .tab-background:not([selected]) {
background: #686070 !important;
}
alex@Guilmon:~$ wobei ich von css nicht den Hauch einer Ahnung habe.
Gruß Taomon