Skip to content

Instantly share code, notes, and snippets.

@jefsnare
Created June 20, 2014 09:43
Show Gist options
  • Save jefsnare/e07068723359a0b00c78 to your computer and use it in GitHub Desktop.
Save jefsnare/e07068723359a0b00c78 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.3.8)
// Compass (v1.0.0.alpha.19)
// ----
$placeholder-prefixes: '::-webkit', ':-moz-placeholder', '::-moz-placeholder', ':-ms-input-placeholder';
@mixin input-placeholder() {
@each $prefix in $placeholder-prefixes {
&#{$prefix} {
@content;
opacity: 1;
}
&:focus#{$prefix} {
color: transparant;
}
}
}
.foo {
@include input-placeholder() {
color: red;
}
}
.foo::-webkit {
color: red;
opacity: 1;
}
.foo:focus::-webkit {
color: transparant;
}
.foo:-moz-placeholder {
color: red;
opacity: 1;
}
.foo:focus:-moz-placeholder {
color: transparant;
}
.foo::-moz-placeholder {
color: red;
opacity: 1;
}
.foo:focus::-moz-placeholder {
color: transparant;
}
.foo:-ms-input-placeholder {
color: red;
opacity: 1;
}
.foo:focus:-ms-input-placeholder {
color: transparant;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment