From 640e6eac2d029314b2eeeac98f405c348edf77a7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timoth=C3=A9?= Date: Tue, 17 Jul 2018 18:06:18 +0200 Subject: [PATCH] Fixed Hidden Radio button in firefox. Added an input property that apply on radio buttons to control size and appearance in firefox (-moz-appearance attribute) --- GerritSite.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/GerritSite.css b/GerritSite.css index 1392c35..62965de 100644 --- a/GerritSite.css +++ b/GerritSite.css @@ -26,6 +26,12 @@ input:not([type="checkbox"]), textarea { -moz-appearance: none; } + +input[type="radio"] { + height:16px !important; + -moz-appearance: radio !important; +} + a { transition: background 0.1s linear 0s, color 0.1s linear 0s; }