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

fix: 💄 Set placeholders to use wildcard

This commit is contained in:
GilbN 2022-04-22 21:55:52 +02:00
parent f6d8a5c11b
commit affa3f8984

View File

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