ubuntuusers.de

firefox with proton

Status: Gelöst | Ubuntu-Version: Lubuntu 20.04 (Focal Fossa)
Antworten |

Taomon Team-Icon

Supporter
Avatar von Taomon

Anmeldungsdatum:
30. Januar 2011

Beiträge: 8463

Wohnort: Digiworld

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

hakel2020

Anmeldungsdatum:
21. Januar 2021

Beiträge: 1169

Die haben den aktiven Tab jetzt geändert, das ist mir klar "schwebt" (Werbung).

- Geschmackssache -

Bei einem -Designer-Theme- merke ich jetzt keinen Unterschied.

- Geschmackssache

seahawk1986

Anmeldungsdatum:
27. Oktober 2006

Beiträge: 11267

Wohnort: München

Probiers mal so (die Farben sind ja furchtbar...):

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#tabbrowser-tabs {
    --user-tab-rounding: 6px;
}
@media (-moz-proton) {
	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;
	}
}

Und in about:config muss toolkit.legacyUserProfileCustomizations.stylesheets true gesetzt sein.

Taomon Team-Icon

Supporter
(Themenstarter)
Avatar von Taomon

Anmeldungsdatum:
30. Januar 2011

Beiträge: 8463

Wohnort: Digiworld

Die Änderung in about:config fehlte. Das hab ich nirgendwo gefunden oder schlicht überlesen.

die Farbe wollte ich nochmal überarbeiten; vorher wollte ich überhaupts das erstmal zum laufen bringen.

Danke schön seahawk1986

Gruß Taomon

Antworten |