ich habe vieles (altes) auskommentiert, aber das dürfte nicht stören
Hier mein (fast) gesamter Code, da sich der Rest auf Einfärbungen von best. Lesezeichen usw. bezieht.
CSS
/* Tableiste grau/schwarz mit weißer Schrift */
/* [tabsintitlebar]:root:not(:-moz-lwtheme){background-color: hsla(0, 0%, 0%, 0.8)!important}
[tabsintitlebar]:root:not(:-moz-lwtheme){background-color: #221B1C!important} */
/* Hintergrund bei den Buttons in der Tableiste: +, <, >, v bei Hover und beim draufklicken */
#TabsToolbar {
--toolbarbutton-hover-background: rgb(83, 77, 78) !important;
--toolbarbutton-active-background: rgb(105, 100, 101) !important;
}
/* Tab-Leiste Hintergrundfarbe geändert und weiße Schrift */
#TabsToolbar {
color:#fff!important;
background: #221B1C !important;
}
/* ab ff 122 braucht es zusätzlich folgendes damit es auch bei unfokussiertem ff Fenster funktioniert */
#main-window :not([focus]) {
opacity: 1 !important;
}
/* < und > Buttons (wenn Tableiste sehr voll) weiß eingefärbt
-> Code in Datei "userChromeShadow.css"
dafür ist Datei "userChromeShadow.uc.js" nötig, damit es funktioniert
Alternative: */
#tabbrowser-arrowscrollbox {
--ug-scrollbutton_fill: rgb(255, 255, 255);
}
#scrollbutton-up, #scrollbutton-down {
fill: var(--ug-scrollbutton_fill, initial) !important;
}
/* Scrollbutton ^ und v in Lesezeichen- Verwalten-Leiste eingefärbt
.menupopup-arrowscrollbox {
--ug-scrollbutton_fill: red;
} */
/* v-Button für Alle Tabs auflisten (wenn Tableiste sehr voll) weiß eingefärbt */
#alltabs-button {
fill: rgb(255, 255, 255)!important;
}
/* + Button für neuer Tab weiß eingefärbt */
#tabs-newtab-button, #TabsToolbar #new-tab-button {
fill: rgb(255, 255, 255)!important;
}
/* Fette Schrift in URL Bar und/oder Hintergrund leicht grau */
/*#urlbar{
font-weight: bold !important;
background-color: #e7e8ea !important}*/
/* .urlbar-input {
font-weight: 600 !important;
color: var(--uc-grad-1) !important;
} */
/* Weitere Lesezeichen aus Lesezeichen-Symbolleiste entfernen (ab ff 85 nicht mehr nötig, da es dann per Rechtsklick geht)
#PlacesToolbar hbox toolbarbutton#OtherBookmarks.bookmark-item {
display: none !important;
} */
/* Fette Schrift in URL-Bar */
#urlbar{
font-weight: 600 !important
}
/* Weiße Schrift in allen Tabs, hellrot/kursiv in ungelesenen Tabs und lila/kursiv im privaten ungelesenen Tabs
Nötig ist Erweiterung https://addons.mozilla.org/de/firefox/addon/tab-flag/ Bei Options ▶ eingestellt */
#main-window .tabbrowser-tab { color:#fff!important;
}
#main-window .tabbrowser-tab[titlechanged] {
font-style: italic;
color:#db0101!important;
}
#main-window[privatebrowsingmode=temporary] .tabbrowser-tab[titlechanged] {
font-style: italic;
color:#911be1!important;
}
/* Adressleiste ab Firefox 75 nicht mehr vergrößern (geht auch via about:config "browser.urlbar.update1" auf false , aber dieser Wert verschwindet ab Firefox 77)
#urlbar[breakout][breakout-extend] {
top: calc((var(--urlbar-toolbar-height) - var(--urlbar-height)) / 2) !important;
left: 0 !important;
width: 100% !important;
}
#urlbar[breakout][breakout-extend] > #urlbar-input-container {
height: var(--urlbar-height) !important;
padding-block: 0 !important;
padding-inline: 0 !important;
}
#urlbar[breakout][breakout-extend][breakout-extend-animate] > #urlbar-background {
animation-name: none !important;
}
#urlbar[breakout][breakout-extend] > #urlbar-background {
box-shadow: none !important;
}*/
/* aktiven Tab einfärben (ab ff 89) */
#main-window .tab-background[selected]{
background-color:transparent!important;
box-shadow: inset 0px 0px 30px 0px #ee0909 !important;
}
/*Inaktiver Tab Hintergrund eingefärbt (ab ff 89) */
#main-window .tabbrowser-tab:not([hover]) .tab-background:not([selected]):not([multiselected]) {
box-shadow: inset 0px 0px 30px 0px #909090 !important;
opacity: .6 !important;
}
/*Inaktiver Tab Hintergrund eingefärbt aber bei Hover etwas stärker(ab ff 89) */
#main-window .tabbrowser-tab:hover .tab-background:not([selected]):not([multiselected]) {
box-shadow: inset 0px 0px 30px 0px #909090 !important;
opacity: .9 !important;
}
/* Tabs einfärben wenn alle Tabs ausgewählt sind (ab ff 89) */
#main-window .tab-background[multiselected]:not([selected]) {
background-color:transparent!important;
box-shadow: inset 0px 0px 30px 0px #ee0909 !important;
}
/*im privaten Modus:aktiven Tab einfärben (ab ff 89) */
#main-window[privatebrowsingmode=temporary] .tab-background[selected] {
background-color:transparent!important;
box-shadow: inset 0px 0px 30px 0px #610DAB !important;
}
/*im privaten Modus:Inaktiver Tab Hintergrund eingefärbt (ab ff 89) */
#main-window[privatebrowsingmode=temporary] .tabbrowser-tab:not([hover]) .tab-background:not([selected]):not([multiselected]) {
box-shadow: inset 0px 0px 30px 0px #909090 !important;
opacity: .6 !important;
}
/*im privaten Modus:Inaktiver Tab Hintergrund eingefärbt aber bei Hover etwas stärker(ab ff 89) */
#main-window[privatebrowsingmode=temporary] .tabbrowser-tab:hover .tab-background:not([selected]):not([multiselected]) {
box-shadow: inset 0px 0px 30px 0px #909090 !important;
opacity: .9 !important;
}
/*im privaten Modus:Tabs einfärben wenn alle Tabs ausgewählt sind (ab ff 89)*/
#main-window[privatebrowsingmode=temporary] .tab-background[multiselected] {
background-color:transparent!important;
box-shadow: inset 0px 0px 30px 0px #610DAB !important;
}
/*Tab Schließen-Kreuz anzeigen bei vielen Tabs wenn gehovert wird */
.tabbrowser-tab:hover .tab-close-button {
display: block !important;
}
/* Lautsprecher Symbol im Tab größer */
.tab-icon-overlay {
transform: scale(1.5, 1.5) !important;
}
/* Anzeige von Suchmaschinen bei Eingabe in Adressleiste verhindern, da es ab ff77 der about:config-Wert " browser.urlbar.oneOffSearches" nicht mehr gibt*/
#urlbar .search-one-offs:not([hidden]) {
display: none !important;
}
/*Lesezeichen Sidebar Ordnerfarbe ändern */
treechildren::-moz-tree-image(container) {
fill:orange !important;}
/*Lesezeichen Ordnerfarbe ändern */
.bookmark-item[container="true"]{
fill:orange !important;}
/*Weltkugel Icon einfärben*/
#cookiesChildren::-moz-tree-image(domainCol, leaf),
.alltabs-item > .menu-iconic-left > .menu-iconic-icon,
#page-proxy-favicon:not([src]),
treechildren::-moz-tree-image(title, leaf),
.bookmark-item:not([container]),
#PlacesToolbarItems > toolbarbutton[class="bookmark-item"][scheme="javascript"]:not([src]),
.sidebar-placesTreechildren::-moz-tree-image(leaf){
fill:orange!important;
}
/* Suchvorschläge in der Adresszeile ausblenden
#PopupAutoCompleteRichResult{
display: none !important;
} */
Alles anzeigen