Es ist seltsam und verhext. Test mit der about:about Seite:
CSS
@-moz-document url-prefix("about:") {
html > body {
background: url("sh.jpg") !important;
background-attachment: fixed !important;
}
}
funktioniert NICHT
funktioniert
funktioniert auch
Gruß Harry
PS: So etwas funktioniert bei mir, jedoch ohne Bilder:
CSS
/***** Add-ons mit Versionsnummer anzeigen *****/
@import url("./css/addonlists_show_addon_version_number.css");
/***** Interner Bereich für AddOns *****/
@-moz-document url-prefix("about:"), url-prefix("view-source:") {
/* Erweiterungen mit Installations/Akutalisierungs-Datum auflisten */
#list-view > #addon-list .date-updated {
display: -moz-box !important;
}
/* Hintergrund hellgrau */
body {
background: #ddd !important;
}
/* Hauptfenster hellgrau */
.main-content,
.search-container {
background-color: #ddd !important;
}
/* Navigation etwas dunkler */
#nav-header,
#categories,
.navigation {
background-color: #bbb !important;
}
}
Alles anzeigen