Skip to content

Instantly share code, notes, and snippets.

@sbrack8t
Created January 8, 2016 16:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sbrack8t/b3045678f05c6a315340 to your computer and use it in GitHub Desktop.
Save sbrack8t/b3045678f05c6a315340 to your computer and use it in GitHub Desktop.
Mixin for styling input placeholder text
// @file
// Mixin for styling placeholder text
$ph_name: (
'::-webkit-input-placeholder',
':-moz-placeholder',
'::-moz-placeholder',
':-ms-input-placeholder',
'::-ms-input-placeholder',
':placeholder-shown'
);
@mixin placeholder-style(){
@each $name in $ph_name {
#{$name} {
@content;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment