Das hat wunderboar funktioniert.
Bist du dir da wirklich sicher, denn mit den Änderungen wird bei meinem Testfox (76) kein Button angesprochen. Ich habe mir mal erlaubt deinen eingestellten Code etwas zu verändern, der dann das macht, was er soll. Kannst ja mal testen, wenn du möchtest.
CSS
/* Download-Fenster (Öffnen mit, Datei speichern) */
/* Farben für Dateityp (von Typ:) */
#type{
color: #000066 !important;
background-color: orange !important;
}
/* Auswahlbox "Öffnen mit" - Farben + fett*/
#openHandler{
-moz-appearance: none!important;
min-height:20px!important;
color: #000066 !important;
background-color: #ffff00 !important;
}
/* Download-Fenster Hauptfarbe - Farben, Schriftgröße in px + fett */
dialog#unknownContentType{
color: #ffff00 !important;
background-color: #000066 !important;
font-size: 18px !important;
}
/* Button "Abbrechen" - Farben, Schriftgröße in px + fett */
hbox.dialog-button-box button[label="Abbrechen"] {
-moz-appearance: none!important;
color: #000066 !important;
background-color: #ffff00 !important;
font-size: 20px !important;
}
hbox.dialog-button-box button[label="Abbrechen"]:hover {
-moz-appearance: none !important;
color: white !important;
background: red !important;
}
/* Button "Datei speichern" u."OK" - Farben, Schriftgröße in px + fett */
hbox.dialog-button-box button[label="Datei speichern"]{
-moz-appearance: none!important;
color: #000066 !important;
background-color: #ffff00 !important;
font-size: 20px !important;
}
hbox.dialog-button-box button[label="Datei speichern"]:hover {
-moz-appearance: none !important;
color: white !important;
background: dodgerblue !important;
}
hbox.dialog-button-box button[label="OK"] {
-moz-appearance: none!important;
color: #000066 !important;
background-color: #ffff00 !important;
font-size: 20px !important;
}
hbox.dialog-button-box button[label="OK"]:hover {
-moz-appearance: none !important;
color: blue !important;
background: orange !important;
}
Alles anzeigen

