kann man zur besseren Lesbarkeit bei der Mailübericht den Hintergrund zeilenmäßig einfärben.
Teste das * in der im Profil und dort im Ordner chrome zu erstellenden Datei userChrome.css, zusätzlich musst Du die ** Pref in Konfiguration bearbeiten… per Doppelklick auf true stellen
*
CSS
/* Tabellenansicht */
#threadTree tr[is="thread-row"]:nth-child(1n+1) {
background-image: none !important;
background-color: #005499 !important;
}
#threadTree tr[is="thread-row"]:nth-child(2n+1) {
background-image: none !important;
background-color: #003a6c !important;
}
/* Kartenansicht */
#threadTree tr[is="thread-card"]:nth-child(1n+1),
#threadTree tr[is="thread-card"]:nth-child(1n+1) :where(td > .card-container) {
background-image: none !important;
background-color: #005499 !important;
}
#threadTree tr[is="thread-card"]:nth-child(2n+1),
#threadTree tr[is="thread-card"]:nth-child(2n+1) :where(td > .card-container) {
background-image: none !important;
background-color: #003a6c !important;
}
Alles anzeigen
**
toolkit.legacyUserProfileCustomizations.stylesheets
P.S.: Du musst noch für Dich passende Farben heraussuchen, guckst Du z.B. da Color Names Supported by All Browsers.