in der .css für diese Seite getestet
Ja
CSS Alles anzeigen@-moz-document url-prefix(about:addons) { .search-label { margin-inline-end: 8px; background-color: #9c1818 !important; width: 200px !important; text-align: center !important; color: #ffd700 !important; border-radius: 15px !important; font-weight: 600 !important; } input { border: none; padding: 0 1px; outline: none; font: inherit; font-size: inherit; text-shadow: inherit; box-sizing: border-box; -moz-box-flex: 1; min-width: 0; text-align: inherit; background-color: #00016e !important; color: #fff !important; font-size: 17px !important; } .textbox-search-icon .deck-selected { color: red !important; } search-addons > search-textbox { min-height: 32px; padding-inline: 8px; background-color: #00016e !important; color: #fff !important; } .search-addons > .search-textbox { margin: 0; width: 20em; min-height: 32px; background-color: #00016e !important; color: #fff !important; } }
Es reicht auch oben:
@-moz-document url(about:addons) {
Danke. Ich hatte oben als Adressierung noch "@namespace url(http://www.w3.org/1999/xhtml);" drin. Das habe ich jetzt entfernt und der Code funktioniert auch bei mir.
Kannst du mir bitte noch sagen, wie ich bei dem drop-down Menü bei :hover den border-radius ändern kann?
CSS
#page-options panel-list {
font: menu;
background-color: #00016e !important;
border-radius: 5px !important;
border-color: #00016e !important;
color: #ffd700 !important;
}
#page-options panel-item {
--in-content-button-background-hover: #ffd700 !important;
--in-content-button-text-color-hover: #9c1818 !important;
--in-content-button-border-radius: 30px !important;
}
Alles anzeigen