fix dark theme with text in tinyeditor

This commit is contained in:
meaz 2022-05-25 23:09:22 +02:00
parent da7e792465
commit e1a12208f5
Signed by: meaz
GPG Key ID: CD7A47B2F1ED43B4
4 changed files with 12 additions and 2 deletions

View File

@ -55,6 +55,12 @@ html.dark-mode {
background-color: @color-dark-background;
}
// Change text color in TinyEditor in Dark mode
.mce-content-body {
color: #A5A4A4;
}
#logo {
// FIXME: is there a better way to make the logo darker?
// `mix-blend-mode: soft-light` makes it slightly too dark

View File

@ -93,3 +93,7 @@
.rcmail-inline-buttons {
margin: 0;
}
& when (@dark-mode-enabled = true) {
@import "dark";
}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long