From b5f233f6d524ca9f74e9d33bf5692a1a678d7fec Mon Sep 17 00:00:00 2001 From: Marien Fressinaud Date: Thu, 4 Jul 2013 19:26:33 +0200 Subject: Fix CSS (Windows) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Sous Windows, le redimensionnement des radiobox et des checkbox est effectif (contrairement à Gnu/Linux). On force désormais la taille de ces éléments à 15px --- public/theme/global.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'public/theme/global.css') diff --git a/public/theme/global.css b/public/theme/global.css index 081d26730..b3d80e52a 100644 --- a/public/theme/global.css +++ b/public/theme/global.css @@ -88,8 +88,8 @@ input, select, textarea { } input[type="radio"], input[type="checkbox"] { - width: 15px; - min-height: 15px; + width: 15px !important; + min-height: 15px !important; } input:focus, select:focus, textarea:focus { color: #0062BE; -- cgit v1.2.3