mirror of
https://github.com/gilbN/theme.park.git
synced 2024-11-04 10:12:31 +01:00
34 lines
664 B
CSS
34 lines
664 B
CSS
input::-webkit-input-placeholder {
|
|
color: var(--text) !important;
|
|
}
|
|
|
|
input:focus::-webkit-input-placeholder {
|
|
color: var(--text-hover) !important;
|
|
}
|
|
|
|
/* Firefox < 19 */
|
|
input:-moz-placeholder {
|
|
color: var(--text) !important;
|
|
}
|
|
|
|
input:focus:-moz-placeholder {
|
|
color: var(--text-hover) !important;
|
|
}
|
|
|
|
/* Firefox > 19 */
|
|
input::-moz-placeholder {
|
|
color: var(--text) !important;
|
|
}
|
|
|
|
input:focus::-moz-placeholder {
|
|
color: var(--text-hover) !important;
|
|
}
|
|
|
|
/* Internet Explorer 10 */
|
|
input:-ms-input-placeholder {
|
|
color: var(--text) !important;
|
|
}
|
|
|
|
input:focus:-ms-input-placeholder {
|
|
color: var(--text-hover) !important;
|
|
} |