Files
firefox-csshacks/chrome/custom_menupopup_check_icons.css
2025-08-02 10:03:32 +03:00

12 lines
603 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"][checked="true"] > .menu-icon{
content: radial-gradient(currentColor 30%, transparent 40%) !important;
}
menuitem[type="checkbox"][checked="true"] > .menu-icon{
content: url("chrome://global/skin/icons/check.svg") !important;
}