theme.park/css/defaults/placeholders.css
deathbybandaid a0c9584190 2022-04-24
2022-04-25 07:39:03 -04:00

34 lines
623 B
CSS

*::-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;
}