Falsch!
habe nur kurz mal dies getestet und funktionierende Beispiel-URL's einkommentiert!
EDIT: Kommentar in Zeile 6 angepasst
CSS
/*■■■■■■■■■■■■■■■■■Schriftfarbe■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
/* Mixed content including neterror *//* funzt bei about:neterror/netTimeout/ */
#identity-box[pageproxystate="valid"].unknownIdentity ~ .urlbar-input-box {
color: red !important;
}
/* http: and potentially some other insecure connections: */
/* funzt bei http://fritz.box/*/
#identity-box[pageproxystate="valid"].notSecure ~ .urlbar-input-box {
color: red !important;
}
/* Extension pages *//* funzt bei allen Erweiterungen*/
#identity-box[pageproxystate="valid"].extensionPage ~ .urlbar-input-box {
color: purple !important;
}
/* Internal about: and chrome:// urls (includes reader-view) */
/* funzt bei reader-view*/
/* funzt bei about:about*/
#identity-box[pageproxystate="valid"].localResource ~ .urlbar-input-box,
#identity-box[pageproxystate="valid"].chromeUI ~ .urlbar-input-box {
color: green !important;
}
Alles anzeigen