/* 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; }