Merge pull request #4 from pdcreis/patch-5

Update _mixins.scss
This commit is contained in:
Mike Francis 2014-05-09 10:09:15 +01:00
commit d9a569ab87
1 changed files with 16 additions and 18 deletions

View File

@ -10,32 +10,30 @@
}
@mixin background-size($size) {
-webkit-background-size: $size;
-webkit-background-size: $size;
-moz-background-size: $size;
-o-background-size: $size;
background-size: $size;
}
@mixin font-smoothing {
font-smoothing: antialiased;
-webkit-font-smoothing: antialiased;
font-smoothing: antialiased;
text-rendering: optimizeLegibility;
-moz-osx-font-smoothing: grayscale;
text-rendering: optimizeLegibility;
}
@mixin placeholder {
::-webkit-input-placeholder {
@content;
}
:-moz-placeholder {
@content;
}
::-moz-placeholder {
@content;
}
:-ms-input-placeholder {
@content;
}
::-webkit-input-placeholder {
@content;
}
:-moz-placeholder {
@content;
}
::-moz-placeholder {
@content;
}
:-ms-input-placeholder {
@content;
}
}