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 {
::-webkit-input-placeholder {
@content;
}
:-moz-placeholder {
@content;
}
::-moz-placeholder {
@content;
}
:-ms-input-placeholder {
@content;
$placeholders: ":-webkit-input" ":-moz" "-moz" "-ms-input";
@each $placeholder in $placeholders {
&:#{$placeholder}-placeholder {
@content;
}
}
}