Merge pull request #11 from pdcreis/patch-13

Update _mixins.scss
This commit is contained in:
Mike Francis 2014-09-08 11:24:44 +01:00
commit b7017f441c
1 changed files with 5 additions and 11 deletions

View File

@ -35,16 +35,10 @@
*/ */
@mixin placeholder { @mixin placeholder {
::-webkit-input-placeholder { $placeholders: ":-webkit-input" ":-moz" "-moz" "-ms-input";
@content; @each $placeholder in $placeholders {
} &:#{$placeholder}-placeholder {
:-moz-placeholder { @content;
@content; }
}
::-moz-placeholder {
@content;
}
:-ms-input-placeholder {
@content;
} }
} }