bug1980382-www.fidrec.com.sg-fix-radio-buttons.css (652B)
1 /* This Source Code Form is subject to the terms of the Mozilla Public 2 * License, v. 2.0. If a copy of the MPL was not distributed with this 3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 4 5 /** 6 * www.fidrec.com.sg - Radio buttons are not visible 7 * Bug #1980382 - https://bugzilla.mozilla.org/show_bug.cgi?id=1980382 8 * WebCompat issue #169560 - https://github.com/webcompat/web-bugs/issues/169560 9 * 10 * The page has some bad CSS where it makes a -webkit-appearance rule invalid, but 11 * the corresponding -moz-apperance rule remains intact, leading to a bad rendering. 12 */ 13 14 input[type="radio"] { 15 -moz-appearance: radio !important; 16 }