Beispiel: meist ist der Pfeil zugeklappt und es sind neue Nachrichten nicht auf Anhieb zu finden. Wenn der oberste / erste Nachricht sich farblich abheben würde, wäre eine neue Nachricht im Thread sofort zu erkennen.
Ist sowas per Erweiterung, oder userchrom.css umsetzbar?
Teste es doch mal damit ↓ in der userChrome.css.
CSS
#threadTree > table > tbody > tr[data-properties~="unread"][data-properties~="new"] > td,
#threadTree > table > tbody > tr[data-properties~="hasUnread"][data-properties~="hasNew"] > td {
background-color: #800 !important;
}
#threadTree > table > tbody > tr[data-properties~="unread"][data-properties~="new"]:hover > td,
#threadTree > table > tbody > tr[data-properties~="hasUnread"][data-properties~="hasNew"]:hover > td {
background-color: #D1E2F2 !important;
color: #000 !important;
}
Die Farben musst Du wohl noch für Dich passend ändern.