Ich hab's jetzt noch etwas verfeinert mit weisser (#FFFFFF) Hover-Angabe, bin aber noch nicht "angekommen" stosse auf Troubles mit aktiver vs. inaktiver Nachricht bzw. fokussiert vs. unfokussiert (siehe letzter Screenshot). Magst du mir nochmals helfen mit dem Feinschliff zwischen angewählter vs. nicht angewählter Nachricht? Ich hätte es enorm gerne so angepasst:
Teste bitte mal das ↓ CSS-Schnipsel statt Deinem CSS.
CSS
tr[is="thread-card"][data-properties~="read"] :is([class="subject"]) {
color: #A4A4A4 !important;
}
tr[is="thread-card"][data-properties~="read"]:hover :is([class="subject"]) {
color: #A4A4A4 !important;
}
tr[is="thread-card"][data-properties~="read"].selected :is([class="subject"]) {
color: #FFF !important;
}
tr[is="thread-card"][data-properties~="read"].selected:hover :is([class="subject"]) {
color: #000 !important;
}
tr[is="thread-card"][data-properties~="read"].selected:focus :is([class="subject"]) {
color: #FFF !important;
}
tr[is="thread-card"][data-properties~="read"].selected:focus:hover :is([class="subject"]) {
color: #000 !important;
}
Alles anzeigen