Created
April 1, 2015 01:03
-
-
Save erin-dot-io/7dfd15325f2c83707afa to your computer and use it in GitHub Desktop.
Placeholder text css styling for form elements
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
//placeholder colors | |
$placeholder-color : #aaa; | |
$placeholder-color-focus : #ccc; | |
// Placeholder CSS. Requires Bourbon (bourbon.io) | |
input { | |
@include placeholder {color: $placeholder-color;} | |
&:focus { | |
&::-webkit-input-placeholder {color: $placeholder-color-focus;} | |
&:-moz-placeholder {color: $placeholder-color-focus;} | |
&::-moz-placeholder {color: $placeholder-color-focus;} | |
&:-ms-input-placeholder {color: $placeholder-color-focus;} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment