Probiere mal diesen korrigierten Code:
Wie gehabt, linke Seite keine Wirkung.
Jetzt habe ich diesen Block vom Anfang an das Ende gesetzt, ihn so eingefügt:
CSS
/**************** Versionsnummer des Addons wird angezeigt *************************************/
@-moz-document url-prefix(chrome://mozapps/content/extensions/aboutaddons.html) {
/*restore version number */
div:not([current-view="updates"]) .addon-name-link[title]::after,
div:not([current-view="updates"]) .addon-name[title]::after {
display: block !important;
content: attr(title) !important;
margin-top: -22px !important;
}
}
Alles anzeigen
Und dann unter dem vorerst letzten Code-Teil auch die zweite Klammer gesetzt, dann wird alles sauber angezeigt.
So wie von dir gezeigt sieht es dann aus:
CSS
/**************** fortlaufende Nummerierung installierten Erweiterungen *******************/
body {
counter-reset: section;
}
#main > div:nth-child(1) > addon-list:nth-child(1) > section:nth-child(2) > addon-card:nth-child(n+2) > div:nth-child(1) > div:nth-child(2)::before,
#main > div:nth-child(1) > addon-list:nth-child(1) > section:nth-child(3) > addon-card:nth-child(n+2) > div:nth-child(1) > div:nth-child(2)::before {
font-size:18px!important;
color: red !important;
font-weight: bold !important;
counter-increment: section;
content: counter(section)".) ";
margin-left: -8px !important;
padding-right: 8px !important;
margin-top:4px!important;
}
addon-list addon-card > .addon.card {
width: 700px;
}
}
Alles anzeigen