12 lines
639 B
CSS
12 lines
639 B
CSS
/* Source file https://github.com/MrOtherGuy/firefox-csshacks/tree/master/chrome/custom_menupopup_check_icons.css made available under Mozilla Public License v. 2.0
|
|
See the above repository for updates as well as full license text. */
|
|
|
|
/* Modifies appearance of menupopup check icons to more clearly show if the item is a radio or checkbox item */
|
|
|
|
menuitem[type="radio"]:is([checked=""],[checked="true"]) > .menu-icon{
|
|
content: radial-gradient(currentColor 30%, transparent 40%) !important;
|
|
}
|
|
menuitem[type="checkbox"]:is([checked=""],[checked="true"]) > .menu-icon{
|
|
content: url("chrome://global/skin/icons/check.svg") !important;
|
|
}
|