From: Eugen Rochko Date: Tue, 15 Sep 2020 07:24:24 +0000 (+0200) Subject: Fix unreadable placeholder text color in high contrast theme in web UI (#14803) X-Git-Url: https://git.xn--scling-oua.cat.family/?a=commitdiff_plain;h=bbcbf12215a5ec69362a769c1bae9c630eda0ed4;p=mastodon.git Fix unreadable placeholder text color in high contrast theme in web UI (#14803) Fix #14717 --- diff --git a/app/javascript/styles/contrast/diff.scss b/app/javascript/styles/contrast/diff.scss index 5a40e7d79..841ed6648 100644 --- a/app/javascript/styles/contrast/diff.scss +++ b/app/javascript/styles/contrast/diff.scss @@ -75,3 +75,8 @@ .public-layout .public-account-header__tabs__tabs .counter.active::after { border-bottom: 4px solid $ui-highlight-color; } + +.compose-form .autosuggest-textarea__textarea::placeholder, +.compose-form .spoiler-input__input::placeholder { + color: $inverted-text-color; +}