Skip to content
This repository was archived by the owner on Oct 8, 2021. It is now read-only.

Commit be4649f

Browse files
Core: Added fix for fieldset width on Firefox. Fixes #6077.
1 parent 32cfdfe commit be4649f

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

css/structure/jquery.mobile.core.css

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,16 @@
1212
.ui-mobile fieldset {
1313
border-width: 0;
1414
}
15+
/* Fixes for fieldset issues on IE10 and FF (see #6077) */
1516
.ui-mobile fieldset {
1617
min-width: 0;
1718
}
19+
@-moz-document url-prefix() {
20+
.ui-mobile fieldset {
21+
display: table-column;
22+
}
23+
}
24+
1825
/* Viewport */
1926
.ui-mobile-viewport {
2027
margin: 0;

0 commit comments

Comments
 (0)