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

Commit

Permalink
Core: Added fix for fieldset width on Firefox. Fixes #6077.
Browse files Browse the repository at this point in the history
  • Loading branch information
jaspermdegroot committed Jul 23, 2013
1 parent 32cfdfe commit be4649f
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions css/structure/jquery.mobile.core.css
Expand Up @@ -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;
Expand Down

0 comments on commit be4649f

Please sign in to comment.