Created
May 27, 2014 22:54
-
-
Save artlung/1cbe27a60b20f9563a9a to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
This file contains 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
// ---- | |
// Sass (v3.3.7) | |
// Compass (v1.0.0.alpha.18) | |
// ---- | |
@mixin placeholderstyle() { | |
color: red; | |
} | |
input::-webkit-input-placeholder { | |
@include placeholderstyle() | |
} | |
input:-moz-placeholder { | |
@include placeholderstyle() | |
} | |
input::-moz-placeholder { | |
@include placeholderstyle() | |
} | |
input:-ms-input-placeholder { | |
@include placeholderstyle() | |
} |
This file contains 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
input::-webkit-input-placeholder { | |
color: red; | |
} | |
input:-moz-placeholder { | |
color: red; | |
} | |
input::-moz-placeholder { | |
color: red; | |
} | |
input:-ms-input-placeholder { | |
color: red; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment