Skip to content

Instantly share code, notes, and snippets.

@samwx
Created May 24, 2016 13:33
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save samwx/6af5a849e127ad1a8d2511dd54d5dd2a to your computer and use it in GitHub Desktop.
Save samwx/6af5a849e127ad1a8d2511dd54d5dd2a to your computer and use it in GitHub Desktop.
Rulesets for LESS
@placeholder-ruleset: { text-transform: uppercase; };
.placeholder(@color-01, @placeholder-ruleset);
/**/
.placeholder(@color, @ruleset: {}) {
::-webkit-input-placeholder {
color: @color;
@ruleset();
}
::-moz-placeholder {
color: @color;
@ruleset();
} /* firefox 19+ */
:-ms-input-placeholder {
color: @color;
@ruleset();
} /* ie */
input:-moz-placeholder {
color: @color;
@ruleset();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment