Skip to content

Instantly share code, notes, and snippets.

@dmjcomdem
Created July 11, 2017 07:48
Show Gist options
  • Save dmjcomdem/4fa4efa2e690074d38fee60b01fe7780 to your computer and use it in GitHub Desktop.
Save dmjcomdem/4fa4efa2e690074d38fee60b01fe7780 to your computer and use it in GitHub Desktop.
style placeholder
.form-control {
&::placeholder {
color: #ccc;
opacity: 1;
text-overflow: ellipsis !important;
transition: opacity .3s ease-in-out;
}
&:focus::-webkit-input-placeholder {opacity: 0;}
&:focus::-moz-placeholder {opacity: 0;}
&:focus:-moz-placeholder {opacity: 0;}
&:focus:-ms-input-placeholder {opacity: 0;}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment