Created
June 30, 2015 19:09
-
-
Save mattfelten/1a9866cbcdbaa09ae054 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
fea |
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.14) | |
// Compass (v1.0.3) | |
// ---- | |
.element { | |
&::input-placeholder { | |
color: #4F5251; | |
} | |
&::-webkit-input-placeholder { | |
color: #4F5251; | |
} | |
&::-moz-input-placeholder { | |
color: #4F5251; | |
} | |
&:-ms-input-placeholder { | |
color: #4F5251; | |
} | |
} | |
.element { | |
&::input-placeholder, | |
&::-webkit-input-placeholder, | |
&::-moz-input-placeholder, | |
&:-ms-input-placeholder { | |
color: #4F5251; | |
} | |
} |
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
.element::input-placeholder { | |
color: #4F5251; | |
} | |
.element::-webkit-input-placeholder { | |
color: #4F5251; | |
} | |
.element::-moz-input-placeholder { | |
color: #4F5251; | |
} | |
.element:-ms-input-placeholder { | |
color: #4F5251; | |
} | |
.element::input-placeholder, .element::-webkit-input-placeholder, .element::-moz-input-placeholder, .element:-ms-input-placeholder { | |
color: #4F5251; | |
} |
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
fea |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment