Fix #4515: Aligned input placeholder color to new 1.7 theme changes

This commit is contained in:
buddh4 2020-10-15 12:13:05 +02:00
parent 5a5f18da41
commit 77ef734b12
2 changed files with 9 additions and 4 deletions

View File

@ -77,17 +77,22 @@ label.control-label {
}
// Placeholder text
::placeholder {
color: @text-color-soft3 !important;
}
::-webkit-input-placeholder {
color: @text-color-soft !important;
color: @text-color-soft3 !important;
}
::-moz-placeholder {
color: @text-color-soft !important;
color: @text-color-soft3 !important;
}
/* firefox 19+ */
:-ms-input-placeholder {
color: @text-color-soft !important;
color: @text-color-soft3 !important;
}
/* hide native password reveal icons */

File diff suppressed because one or more lines are too long