2 changed files with 35 additions and 1 deletions
@ -0,0 +1,34 @@ |
|||||
|
input::-webkit-input-placeholder { |
||||
|
color: var(--text); |
||||
|
} |
||||
|
|
||||
|
input:focus::-webkit-input-placeholder { |
||||
|
color: var(--text-hover); |
||||
|
} |
||||
|
|
||||
|
/* Firefox < 19 */ |
||||
|
input:-moz-placeholder { |
||||
|
color: var(--text); |
||||
|
} |
||||
|
|
||||
|
input:focus:-moz-placeholder { |
||||
|
color: var(--text-hover); |
||||
|
} |
||||
|
|
||||
|
/* Firefox > 19 */ |
||||
|
input::-moz-placeholder { |
||||
|
color: var(--text); |
||||
|
} |
||||
|
|
||||
|
input:focus::-moz-placeholder { |
||||
|
color: var(--text-hover); |
||||
|
} |
||||
|
|
||||
|
/* Internet Explorer 10 */ |
||||
|
input:-ms-input-placeholder { |
||||
|
color: var(--text); |
||||
|
} |
||||
|
|
||||
|
input:focus:-ms-input-placeholder { |
||||
|
color: var(--text-hover); |
||||
|
} |
File diff suppressed because one or more lines are too long
Loading…
Reference in new issue