Skip to content

Instantly share code, notes, and snippets.

@floster
Last active September 5, 2017 08:58
Show Gist options
  • Save floster/53b4a0df08c8c8cec92213b6cd77ca5b to your computer and use it in GitHub Desktop.
Save floster/53b4a0df08c8c8cec92213b6cd77ca5b to your computer and use it in GitHub Desktop.
:placeholder SASS mixin
@mixin optional-at-root($sel) {
@at-root #{if(not &, $sel, selector-append(&, $sel))} {
@content;
}
}
@mixin placeholder {
@include optional-at-root('::-webkit-input-placeholder') {
@content;
}
@include optional-at-root(':-moz-placeholder') {
@content;
}
@include optional-at-root('::-moz-placeholder') {
@content;
}
@include optional-at-root(':-ms-input-placeholder') {
@content;
}
}
/* Usage */
.foo {
@include placeholder {
color: green;
}
}
@include placeholder {
color: red;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment