1
0
mirror of https://github.com/gilbN/theme.park.git synced 2024-09-11 19:32:24 +02:00
theme.park/css/defaults/placeholders.css

34 lines
623 B
CSS
Raw Normal View History

2023-10-03 20:51:06 +02:00
*::-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;
}