1
0
Fork 0
forked from gitea/nas

Fix full-dark theme

This commit is contained in:
KMY 2023-08-23 08:57:36 +09:00
parent 089f9465cb
commit 3882f22c5e

View file

@ -1,15 +1,33 @@
input, input[type='text'],
input:not([type]),
textarea { textarea {
background: $ui-base-color !important; background: $ui-base-color !important;
color: $primary-text-color !important; color: $primary-text-color !important;
&.setting-text {
border-color: $darker-text-color;
}
&::placeholder { &::placeholder {
color: lighten($dark-text-color, 36%) !important; color: lighten($dark-text-color, 36%) !important;
} }
} }
.column-content-select__control,
.button.button-secondary {
border-color: $darker-text-color !important;
}
.emoji-mart-category-label { .emoji-mart-category-label {
color: $lighter-text-color !important; color: $primary-text-color !important;
}
.emoji-mart-bar:first-child {
background: lighten($classic-base-color, 36%);
}
.emoji-mart-anchor-selected {
color: $primary-text-color;
} }
.compose-form .compose-form__warning { .compose-form .compose-form__warning {