Wie gesagt, das hat u.a. die alternierende Zeilen-Hintergrundfarbe gemacht, und weiteres.
Vielleicht gibt es ja hier einen Kenner, der das Version-115-konform machen kann.
Bitte teste diese * Variante, benenne dazu die alte userChrome.css nach z.B. userChrome.css.bak um und erstelle eine neue userChrome.css und füge die neue Variante ein.
*
CSS
#folderTree .container {
font-size: 20px !important;
}
/* horizontal grid lines */
#threadTree tr[is="thread-row"] {
border-bottom: 2px dotted grey !important;
}
/* vertical grid lines */
#threadTree tr[is="thread-row"] > td {
border-right: 2px dotted grey !important;
}
/* vertical grid lines */
#threadTree tr[is="thread-row"] {
appearance: none !important;
background-image: none !important;
background-color:#8c6900 !important;
}
#threadTree tr[is="thread-row"]:nth-child(2n) {
appearance: none !important;
background-image: none !important;
background-color:#FFE4C4 !important;
}
/* change Thread pane alternating row colours */
#threadTree tr[is="thread-row"].selected {
background-image: none !important;
background-color: #006800 !important;
}
#threadTree tr[is="thread-row"].selected.focus {
background-image: none !important;
background-color: #006800 !important;
}
#threadTree tr[is="thread-row"]:nth-child(2n).selected {
background-image: none !important;
background-color: #006800 !important;
}
#threadTree tr[is="thread-row"]:nth-child(2n).selected.focus {
background-image: none !important;
background-color: #006800 !important;
}
Alles anzeigen