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

Commit

Permalink
Fix for placeholder text not being grayed out in IE10
Browse files Browse the repository at this point in the history
looks like a similar issue to #5166
  • Loading branch information
eug48 committed May 14, 2013
1 parent 317f5e3 commit cb0ae04
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion css/structure/jquery.mobile.forms.textinput.css
Expand Up @@ -23,6 +23,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, textarea::-moz-placeholder { color: #aaa; }

/* For IE10 */
:-ms-input-placeholder { color: #aaa; }

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

Expand All @@ -40,4 +43,4 @@ input[type=number]::-webkit-outer-spin-button { margin: 0; }
.ui-hide-label div.ui-input-text,
.ui-input-search input.ui-input-text,
div.ui-input-text input.ui-input-text { width: 100%; }
}
}

0 comments on commit cb0ae04

Please sign in to comment.