Skip to content

Instantly share code, notes, and snippets.

@cimmanon
Created July 6, 2014 19:50
Show Gist options
  • Save cimmanon/7aca93066481ac3c96c3 to your computer and use it in GitHub Desktop.
Save cimmanon/7aca93066481ac3c96c3 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.3.9)
// Compass (v1.0.0.alpha.20)
// ----
%my-font-style {
font-family: serif;
}
.my-font-style-dotted {
font-family: serif;
}
::-webkit-input-placeholder {
@extend %my-font-style;
}
:-moz-placeholder {
/* this works > font-family: serif; */
/* this works > @extend .my-font-style-dotted; */
/* this failed, reset the webkit pseudo classe too */
@extend %my-font-style;
}
/* Same issue with
- &::-moz-placeholder
- &:-ms-input-placeholder
*/
::-webkit-input-placeholder, :-moz-placeholder {
font-family: serif;
}
.my-font-style-dotted {
font-family: serif;
}
:-moz-placeholder {
/* this works > font-family: serif; */
/* this works > @extend .my-font-style-dotted; */
/* this failed, reset the webkit pseudo classe too */
}
/* Same issue with
- &::-moz-placeholder
- &:-ms-input-placeholder
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment