From: Eugen Rochko Date: Tue, 15 Sep 2020 07:24:24 +0000 (+0200) Subject: [Glitch] Fix unreadable placeholder text color in high contrast theme in web UI ... X-Git-Url: https://git.xn--scling-oua.cat.family/?a=commitdiff_plain;h=dadec533ce82aa30c78d58dba8f668fb0558f8bd;p=mastodon.git [Glitch] Fix unreadable placeholder text color in high contrast theme in web UI (#14803) Port bbcbf12215a5ec69362a769c1bae9c630eda0ed4 to glitch-soc Signed-off-by: Thibaut Girka --- diff --git a/app/javascript/flavours/glitch/styles/contrast/diff.scss b/app/javascript/flavours/glitch/styles/contrast/diff.scss index f78e60597..0f3a6cc6d 100644 --- a/app/javascript/flavours/glitch/styles/contrast/diff.scss +++ b/app/javascript/flavours/glitch/styles/contrast/diff.scss @@ -75,3 +75,12 @@ .public-layout .public-account-header__tabs__tabs .counter.active::after { border-bottom: 4px solid $ui-highlight-color; } + +.composer { + .composer--spoiler input, + .compose-form__autosuggest-wrapper textarea { + &::placeholder { + color: $inverted-text-color; + } + } +}