mirror of
https://github.com/black7375/Firefox-UI-Fix.git
synced 2025-12-05 18:20:44 -08:00
Fix: UserContent - Addon page menu icon #1043
This commit is contained in:
parent
2658e7328e
commit
0a1dd71991
3 changed files with 4 additions and 4 deletions
4
css/leptonContent.css
generated
4
css/leptonContent.css
generated
|
|
@ -3662,7 +3662,7 @@
|
||||||
}
|
}
|
||||||
@-moz-document url-prefix("about:addons") {
|
@-moz-document url-prefix("about:addons") {
|
||||||
@supports -moz-bool-pref("userChrome.icon.context_menu") {
|
@supports -moz-bool-pref("userChrome.icon.context_menu") {
|
||||||
button[role="menuitem"] {
|
button:is([role="menuitem"], [role="menuitemcheckbox"]) {
|
||||||
background-image: var(--icon, url("../icons/blank.svg")); /* Don't use !important. because of [checked] */
|
background-image: var(--icon, url("../icons/blank.svg")); /* Don't use !important. because of [checked] */
|
||||||
}
|
}
|
||||||
panel-item[action="check-for-updates"] {
|
panel-item[action="check-for-updates"] {
|
||||||
|
|
@ -7523,7 +7523,7 @@
|
||||||
}
|
}
|
||||||
@-moz-document url-prefix("about:addons") {
|
@-moz-document url-prefix("about:addons") {
|
||||||
@media (not (-moz-bool-pref: "userChrome.icon.disabled")) and (-moz-bool-pref: "userChrome.icon.menu") and (-moz-bool-pref: "userChrome.icon.context_menu") {
|
@media (not (-moz-bool-pref: "userChrome.icon.disabled")) and (-moz-bool-pref: "userChrome.icon.menu") and (-moz-bool-pref: "userChrome.icon.context_menu") {
|
||||||
button[role="menuitem"] {
|
button:is([role="menuitem"], [role="menuitemcheckbox"]) {
|
||||||
background-image: var(--icon, url("../icons/blank.svg")); /* Don't use !important. because of [checked] */
|
background-image: var(--icon, url("../icons/blank.svg")); /* Don't use !important. because of [checked] */
|
||||||
}
|
}
|
||||||
panel-item[action="check-for-updates"] {
|
panel-item[action="check-for-updates"] {
|
||||||
|
|
|
||||||
2
css/leptonContentESR.css
generated
2
css/leptonContentESR.css
generated
|
|
@ -3801,7 +3801,7 @@
|
||||||
}
|
}
|
||||||
@-moz-document url-prefix("about:addons") {
|
@-moz-document url-prefix("about:addons") {
|
||||||
@supports -moz-bool-pref("userChrome.icon.context_menu") {
|
@supports -moz-bool-pref("userChrome.icon.context_menu") {
|
||||||
button[role="menuitem"] {
|
button:is([role="menuitem"], [role="menuitemcheckbox"]) {
|
||||||
background-image: var(--icon, url("../icons/blank.svg")); /* Don't use !important. because of [checked] */
|
background-image: var(--icon, url("../icons/blank.svg")); /* Don't use !important. because of [checked] */
|
||||||
}
|
}
|
||||||
panel-item[action="check-for-updates"] {
|
panel-item[action="check-for-updates"] {
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
// https://github.com/mozilla/gecko-dev/commit/260e4270fca18f2f6f59a1ffe4deccb5080a15f7
|
// https://github.com/mozilla/gecko-dev/commit/260e4270fca18f2f6f59a1ffe4deccb5080a15f7
|
||||||
button[role="menuitem"] {
|
button:is([role="menuitem"], [role="menuitemcheckbox"]) {
|
||||||
background-image: var(--icon, url("../icons/blank.svg")); /* Don't use !important. because of [checked] */
|
background-image: var(--icon, url("../icons/blank.svg")); /* Don't use !important. because of [checked] */
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue