Created
July 6, 2014 19:50
-
-
Save cimmanon/7aca93066481ac3c96c3 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
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
// ---- | |
// 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 | |
*/ |
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
::-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