Skip to content

Commit

Permalink
Adjust placeholder color
Browse files Browse the repository at this point in the history
  • Loading branch information
dwerning committed Aug 7, 2023
1 parent 45e9a6f commit 91f09b1
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions src/main/resources/static/css/tla-styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -38,17 +38,18 @@
color: var(--BBAWred);
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
color: #F2F3F4;
form .form-control::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
color: #cccccc;
opacity: 1; /* Firefox */
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
color: #F2F3F4;
form .form-control:-ms-input-placeholder { /* Internet Explorer 10-11 */
color: #cccccc;
}

::-ms-input-placeholder { /* Microsoft Edge */
color: #F2F3F4;
form .form-control::-ms-input-placeholder { /* Microsoft Edge */
color: #cccccc;
}
form .form-control:placeholder {
color: #cccccc;
}

.words-breakable {
Expand Down

0 comments on commit 91f09b1

Please sign in to comment.