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

Commit

Permalink
inputs: add margin 0 for webkit-inner-spin-button/webkit-outer-spin-b…
Browse files Browse the repository at this point in the history
…utton to resolve android 4.1 width issue for type=number fields. Fixes #5131
  • Loading branch information
Jonah Schulte committed Oct 16, 2012
1 parent e1df63b commit 62457f9
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions css/structure/jquery.mobile.forms.textinput.css
Expand Up @@ -20,6 +20,9 @@ textarea.ui-mini { height: 45px; }
/* Resolves issue #5166: Added to support issue introduced in Firefox 15. We can likely remove this in the future. */
input:-moz-placeholder { color: #aaa; }

/* Resolves issue #5131: Width of textinput depends on its type, for Android 4.1 */
input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }

@media all and (min-width: 450px){
.ui-field-contain label.ui-input-text { vertical-align: top; display: inline-block; width: 20%; margin: 0 2% 0 0 }
.ui-field-contain input.ui-input-text,
Expand Down

0 comments on commit 62457f9

Please sign in to comment.