cyberpirate
Fleet Admiral
- Registriert
- Jan. 2007
- Beiträge
- 22.693
Moin,
kann Ich die Farbe des aktiven Tabs im FF 89 ändern?
MfG
kann Ich die Farbe des aktiven Tabs im FF 89 ändern?
MfG
Folge dem Video um zu sehen, wie unsere Website als Web-App auf dem Startbildschirm installiert werden kann.
Anmerkung: Diese Funktion ist in einigen Browsern möglicherweise nicht verfügbar.
Teste bitte, Farbe wenn dann anpassen.cyberpirate schrieb:des aktiven Tabs im FF 89 ändern?
.tabbrowser-tab[selected] .tab-content {
background: orange !important;
}
Einfach orange austauschen.cyberpirate schrieb:andere Farben definieren?
Aktiver Tab:Leo.16 schrieb:die Schriftfarbe ändern?
.tabbrowser-tab[selected] {
color: red !important;
}
.tabbrowser-tab:not([selected]) {
color: green!important;
}
Leo.16 schrieb:wie kann man denn dann die Schriftfarbe ändern?
Und bei FF89 sind im neuen Design die Ecken rund, werden so aber eckig.
Welchen Code benutzt du denn für den HG der Tabs?cyberpirate schrieb:Kann man das noch ändern?
Möchtest du die abgerundet, dann:cyberpirate schrieb:Kann man das noch ändern?
.tabbrowser-tab[selected] .tab-content {
background: orange !important;
border-radius: 80px !important;
}
.tabbrowser-tab:not([selected]) .tab-content {
background: red !important;
border-radius: 80px !important;
}
.tab-background {
border-radius: 80px !important;
}
.tabbrowser-tab[selected] .tab-content {
background: orange !important;
border-radius: 0px !important;
}
.tabbrowser-tab:not([selected]) .tab-content {
background: red !important;
border-radius: 0px !important;
}
.tab-background {
border-radius: 0px !important;
}
Super vielen Dank!2002Andreas schrieb:Möchtest du die abgerundet, dann:
Danke, das Tool war mir mittlerweile entfallen.Marc_N schrieb:man nur die Farben anpassen möchte
Auch das geht:cyberpirate schrieb:die Textfarbe der Tabs
.tabbrowser-tab[selected] .tab-label {
color: white !important;
}
.tabbrowser-tab:not([selected]) .tab-label {
color: white !important;
}
.tabbrowser-tab[selected]:hover .tab-content {
background: blue !important;
}
.tabbrowser-tab:not([selected]):hover .tab-content {
background: green !important;
}
cyberpirate schrieb:die Höhe der tabs
/*Tabs abgerundet*/
.tabbrowser-tab:is([visuallyselected="true"], [multiselected]) > .tab-stack > .tab-background,
.tabbrowser-tab:not([visuallyselected="true"]) > .tab-stack > .tab-background {
border-radius: 80px!important;
}
/*Aktiver Tab hover HG rot*/
.tabbrowser-tab:is([visuallyselected="true"]:hover, [multiselected]) > .tab-stack > .tab-background {
background: red !important;
}
/*Aktiver Tab Text weiß*/
.tabbrowser-tab[visuallyselected="true"]:hover {
color: white !important;
}
/*Aktiver Tab HG orange*/
.tabbrowser-tab:is([visuallyselected="true"], [multiselected]) > .tab-stack > .tab-background {
background: orange !important;
}
/*Inaktiver Tab hover HG blau*/
.tabbrowser-tab:not([visuallyselected="true"]):hover > .tab-stack > .tab-background {
background: blue !important;
}
/*Inaktiver Tab Text weiß*/
.tabbrowser-tab:not([visuallyselected="true"]):hover {
color: white !important;
}
/*Inaktiver Tab HG hellgrau*/
.tabbrowser-tab:not([visuallyselected="true"]) > .tab-stack > .tab-background {
background: lightgrey !important;
}
In about:config den Wertcyberpirate schrieb:Und jetzt noch die Höhe der tabs.