Forked from martinwolf/_mixin_placeholder-color.scss
Created
September 12, 2013 21:16
-
-
Save iparr/6543902 to your computer and use it in GitHub Desktop.
Updated to provide new Firefox (19+) support.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@mixin placeholder($color) { | |
&::-webkit-input-placeholder { | |
color: $color; | |
} | |
&:-moz-placeholder { | |
color: $color; | |
} | |
&::-moz-placeholder { | |
color: $color; | |
} | |
&:-ms-input-placeholder { | |
color: $color; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment