From fa9574086d1b2cc16a733cd60677054c67eed48d Mon Sep 17 00:00:00 2001 From: Michael Stanclift Date: Tue, 2 Apr 2024 04:15:31 -0500 Subject: [PATCH] Fix search box color on light theme (#29808) --- app/javascript/styles/mastodon-light/diff.scss | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/app/javascript/styles/mastodon-light/diff.scss b/app/javascript/styles/mastodon-light/diff.scss index 493e377d61..1de90e0016 100644 --- a/app/javascript/styles/mastodon-light/diff.scss +++ b/app/javascript/styles/mastodon-light/diff.scss @@ -80,6 +80,7 @@ html { } .search__input, +.search__popout, .setting-text, .report-dialog-modal__textarea, .audio-player { @@ -439,7 +440,8 @@ html { .directory__tag > div, .card > a, .page-header, -.compose-form .compose-form__warning { +.compose-form, +.compose-form__warning { box-shadow: none; } @@ -475,12 +477,17 @@ html { color: $white; } -.compose-form .spoiler-input__input { +.compose-form, +.spoiler-input__input, +.search__input, +.search__popout { color: lighten($ui-highlight-color, 8%); } .compose-form .autosuggest-textarea__textarea, .compose-form__highlightable, +.search__input, +.search__popout, .poll__option input[type='text'] { background: darken($ui-base-color, 10%); }