From 207fff045310974b38c3f3bf36ed96ac8283bc00 Mon Sep 17 00:00:00 2001 From: Yuicho <43964607+yuicho@users.noreply.github.com> Date: Wed, 10 Apr 2024 08:32:52 +0900 Subject: [PATCH] =?UTF-8?q?Fix:=20[WebUI]=20=E3=83=95=E3=83=AB=E3=83=80?= =?UTF-8?q?=E3=83=BC=E3=82=AF=E3=83=86=E3=83=BC=E3=83=9E=E3=81=AE=E4=BF=AE?= =?UTF-8?q?=E6=AD=A3=20(#708)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Fix media alt textarea color 投稿に添付したメディアの編集モーダルウインドウに存在する「視覚的に閲覧が難しいユーザーへの説明」を入力するテキストエリアの色を修正 * Fix compose-form__warning color 投稿画面にて一部の公開範囲などを選んだ際に、入力欄の上部に表示される .compose-form__warning の背景色を修正(文字の視認性向上のため) * fix CSS Selector idの指定を`#~~~` から `[id=~~~]` に変更 --- app/javascript/styles/full-dark/diff.scss | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/javascript/styles/full-dark/diff.scss b/app/javascript/styles/full-dark/diff.scss index 1c98d95037..9483e7ecb6 100644 --- a/app/javascript/styles/full-dark/diff.scss +++ b/app/javascript/styles/full-dark/diff.scss @@ -1,6 +1,7 @@ input[type='text']:not(#cw-spoiler-input), input[type='search'], input[type='number'], +textarea[id='upload-modal__description'], input:not([type]) { background: $ui-base-color !important; color: $primary-text-color !important; @@ -24,6 +25,7 @@ input:not([type]) { color: $classic-secondary-color !important; } +.compose-form__warning, .modal-root__modal { background: lighten($classic-base-color, 12%); }