Created
February 11, 2015 14:46
-
-
Save cimmanon/57f72c32c900dc130560 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
This file contains hidden or 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
<div class="test-svg1"></div> | |
<div class="test-svg2"></div> |
This file contains hidden or 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.4.11) | |
// Compass (v1.0.3) | |
// ---- | |
@mixin placeholder { | |
&::-webkit-input-placeholder {@content} | |
&:-moz-placeholder {@content} | |
&::-moz-placeholder {@content} | |
&:-ms-input-placeholder {@content} | |
} | |
input[type="text"] { | |
font-size: 13px; | |
@include placeholder { | |
font-size: 13px; | |
line-height: 17px; | |
} | |
} |
This file contains hidden or 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
input[type="text"] { | |
font-size: 13px; | |
} | |
input[type="text"]::-webkit-input-placeholder { | |
font-size: 13px; | |
line-height: 17px; | |
} | |
input[type="text"]:-moz-placeholder { | |
font-size: 13px; | |
line-height: 17px; | |
} | |
input[type="text"]::-moz-placeholder { | |
font-size: 13px; | |
line-height: 17px; | |
} | |
input[type="text"]:-ms-input-placeholder { | |
font-size: 13px; | |
line-height: 17px; | |
} |
This file contains hidden or 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
<div class="test-svg1"></div> | |
<div class="test-svg2"></div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment