You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

34 lines
656 B

*::-webkit-input-placeholder {
color: var(--text-muted) !important;
}
*:focus::-webkit-input-placeholder {
color: var(--text-hover) !important;
}
/* Firefox < 19 */
*:-moz-placeholder {
color: var(--text-muted) !important;
}
*:focus:-moz-placeholder {
color: var(--text-hover) !important;
}
/* Firefox > 19 */
*::-moz-placeholder {
color: var(--text-muted) !important;
}
*:focus::-moz-placeholder {
color: var(--text-hover) !important;
}
/* Internet Explorer 10 */
*:-ms-input-placeholder {
color: var(--text-muted) !important;
}
*:focus:-ms-input-placeholder {
color: var(--text-hover) !important;
}