* Fix media alt textarea color 投稿に添付したメディアの編集モーダルウインドウに存在する「視覚的に閲覧が難しいユーザーへの説明」を入力するテキストエリアの色を修正 * Fix compose-form__warning color 投稿画面にて一部の公開範囲などを選んだ際に、入力欄の上部に表示される .compose-form__warning の背景色を修正(文字の視認性向上のため) * fix CSS Selector idの指定を`#~~~` から `[id=~~~]` に変更
38 lines
860 B
SCSS
38 lines
860 B
SCSS
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;
|
|
|
|
&.setting-text {
|
|
border-color: $darker-text-color;
|
|
}
|
|
}
|
|
|
|
.column-content-select__control,
|
|
.button.button-secondary {
|
|
border-color: $darker-text-color !important;
|
|
}
|
|
|
|
.column-content-select__control,
|
|
.column-content-select__menu {
|
|
background: $ui-base-color !important;
|
|
}
|
|
|
|
.column-content-select__single-value {
|
|
color: $classic-secondary-color !important;
|
|
}
|
|
|
|
.compose-form__warning,
|
|
.modal-root__modal {
|
|
background: lighten($classic-base-color, 12%);
|
|
}
|
|
|
|
.boost-modal__action-bar,
|
|
.confirmation-modal__action-bar,
|
|
.mute-modal__action-bar,
|
|
.block-modal__action-bar {
|
|
background: lighten($classic-base-color, 2%);
|
|
}
|