From be4649f9a21a992fe397c60cb91d703ce9f239a7 Mon Sep 17 00:00:00 2001 From: Jasper de Groot Date: Tue, 23 Jul 2013 21:45:07 +0200 Subject: [PATCH] Core: Added fix for fieldset width on Firefox. Fixes #6077. --- css/structure/jquery.mobile.core.css | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/css/structure/jquery.mobile.core.css b/css/structure/jquery.mobile.core.css index b54620e5f50..3f1537c1f8f 100644 --- a/css/structure/jquery.mobile.core.css +++ b/css/structure/jquery.mobile.core.css @@ -12,9 +12,16 @@ .ui-mobile fieldset { border-width: 0; } +/* Fixes for fieldset issues on IE10 and FF (see #6077) */ .ui-mobile fieldset { min-width: 0; } +@-moz-document url-prefix() { + .ui-mobile fieldset { + display: table-column; + } +} + /* Viewport */ .ui-mobile-viewport { margin: 0;