Skip to content

Instantly share code, notes, and snippets.

@vistar
Last active August 29, 2015 14:23
Show Gist options
  • Save vistar/29adf11145676ab7a7dd to your computer and use it in GitHub Desktop.
Save vistar/29adf11145676ab7a7dd to your computer and use it in GitHub Desktop.
Placeholder decoration
input, textarea {
&[placeholder],
&::-moz-placeholder,
&:-moz-placeholder,
&:-ms-input-placeholder {
text-overflow: ellipsis;
}
&::-webkit-input-placeholder,
&::-moz-placeholder,
&:-moz-placeholder,
&:-ms-input-placeholder {
color: $page;
opacity: 1;
transition: opacity .3s ease;
}
&:focus::-webkit-input-placeholder,
&:focus::-moz-placeholder,
&:focus:-moz-placeholder,
&:focus:-ms-input-placeholder {
opacity: 0;
transition: opacity .3s ease;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment