Kein Ding, hat mich auch interessiert nach Anfixen oben
Gespeicherte Zugangsdaten Button einfärben ?
-
Dato -
15. Januar 2024 um 17:33 -
Erledigt
-
-
Danke erstmal.
also es funktionieren beide CSS aber ohne die Schriftfarbe zu ändern.
Diese bleibt immer schwarz.
getestet hab ich es mit beiden CSS und zuletzt mit
appearance: none !important;
CSS
Alles anzeigen-moz-document url-prefix(about:logins) { .action-buttons .edit-button, .action-buttons edit-button { appearance: none !important; background-color: #006600 !important; color: yellow !important; } .action-buttons .edit-button:hover, .action-buttons edit-button:hover { background-color: #03a224 !important; } .action-buttons .delete-button, .action-buttons delete-button { background-color: #ff6800 !important; color: yellow !important; } .action-buttons .delete-button:hover, .action-buttons delete-button:hover { background-color: #e02020 !important; } .detail-grid .copy-button, .detail-grid copy-username-button, .detail-grid copy-password-button { background-color: #2074e0 !important; } .detail-grid .copy-button:hover, .detail-grid copy-username-button:hover, .detail-grid copy-password-button:hover { background-color: #004aaa !important; } }
-
Weil die Farbe ein shadow-css ist, das wird so nix,
-
Dato: Bitte verwende die Editor-Funktion für den Code-Block und nicht für jede einzelne Zeile jeweils einen Inline-Code.
-
-
aber ohne die Schriftfarbe zu ändern.
Hast den den Code auch mal getestet in der Fx Version 121?
CSS
Alles anzeigen@-moz-document url-prefix(about:logins) { [l10nid="login-item-edit-button"], [l10nid="about-logins-login-item-remove-button"] { border-radius: 5px !important; --in-content-button-background-hover: blue !important; --in-content-button-text-color: white !important; --in-content-button-text-color-hover: white !important; } [l10nid="login-item-edit-button"] { background-color: red !important; margin-right: 5px !important; } [l10nid="about-logins-login-item-remove-button"] { background-color: green !important; } }
Und so dann ab Fx 122:
CSS
Alles anzeigen@-moz-document url-prefix(about:logins) { .action-buttons edit-button, .action-buttons delete-button { border-radius: 5px !important; --in-content-button-background-hover: blue !important; --in-content-button-text-color: white !important; --in-content-button-text-color-hover: white !important; } .action-buttons edit-button { background-color: red !important; margin-right: 5px !important; } .action-buttons delete-button { background-color: green !important; } }
-
Das mag für v121 noch stimmen, aber nicht mehr für beta/122rc1/nightly, da gibt es diesen Bezeichner nicht mehr. Aber
CSS
Alles anzeigen.header .edit-button, .action-buttons .edit-button, .action-buttons edit-button { background-color: #20e048 !important; --in-content-button-text-color: black !important; } .header .edit-button:hover, .action-buttons .edit-button:hover, .action-buttons edit-button:hover { background-color: #03a224 !important; --in-content-button-text-color-hover: blue !important; }
Das -hover kann in die hover-Sektion von meinem CSS. Die Textfarbe richtet sich nach dem ausgewählten Theme, bei mir ist das Dark und damit Text weiß, bei Hell entsprechend Schwarz.
-
-
Nightly:
Im Nightly habe ich das so gelöst.
-
-
aber ohne die Schriftfarbe zu ändern.
Hast den den Code auch mal getestet in der Fx Version 121?
CSS
Alles anzeigen@-moz-document url-prefix(about:logins) { [l10nid="login-item-edit-button"], [l10nid="about-logins-login-item-remove-button"] { border-radius: 5px !important; --in-content-button-background-hover: blue !important; --in-content-button-text-color: white !important; --in-content-button-text-color-hover: white !important; } [l10nid="login-item-edit-button"] { background-color: red !important; margin-right: 5px !important; } [l10nid="about-logins-login-item-remove-button"] { background-color: green !important; } }
funktioniert in version 121.01
Danke @ all
-
funktioniert in version 121.01
Und der Code aus Beitrag Nr. 26 dann ab Version 122.
-
Beitrag Nr. 26 dann ab Version 122.
ist Notiert
-
ist Notiert
-
Und so dann ab Fx 122:
Sei gegrüßt, Andreas!
Dieses --in-content-button-text-color-hover: red !important; aus Beitrag #26 will einfach nicht greifen, obwohl der Rest funktioniert.
Hast du eine Idee?
-
Hast du eine Idee?
Hallo FuchsFan ..
hast du evtl. noch einen anderen Code mit hover?
Funktioniert es in einem sauberen Testprofil?
-
Funktioniert es in einem sauberen Testprofil?
Gerade mal getestet, funktioniert. Da ist also was faul, muss mal suchen. Danke, Andreas!
-
Danke, Andreas!
Nicht dafür
muss mal suchen
Wie gesagt schon, evtl. ein weiterer Code mit hover
-
Wie gesagt schon, evtl. ein weiterer Code mit hover
Gefunden, da hatte sich noch ein Rest von der Bastelei versteckt.
Sollte nicht passieren.
-
Gefunden
Sollte nicht passieren.
Keine Panik, kann doch jedem mal passieren.
Freut mich wenn es jetzt funktioniert.
-