mirror of
https://github.com/gilbN/theme.park.git
synced 2024-11-04 10:12:31 +01:00
34 lines
656 B
CSS
34 lines
656 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;
|
|
} |