Split -vendor-placeholder selector by vendor.

Some browsers (specifically Firefox(18) that I know of) fail to select
correctly if the selectors are combined. This was fixed in bootstrap
(https://github.com/twitter/bootstrap/blob/master/less/forms.less#L210).
Not sure of the exact commit but there is a nice comment.
This commit is contained in:
Ben Doerr 2013-02-06 12:39:15 -05:00
parent 6043a370ad
commit 77908ed3d8
1 changed files with 7 additions and 1 deletions

View File

@ -1418,7 +1418,13 @@ body {
-moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
}
:-moz-placeholder, :-ms-input-placeholder, ::-webkit-input-placeholder {
:-moz-placeholder {
color: #999999;
}
::-webkit-input-placeholder {
color: #999999;
}
:-ms-input-placeholder {
color: #999999;
}
.help-block, .help-inline {