Merge pull request #3465 from alfonso-salces/MOBILE-4081

MOBILE-4081 theme: Fix background mode in rich text editor
main
Pau Ferrer Ocaña 2022-11-23 15:23:43 +01:00 committed by GitHub
commit 24e81ee92f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 2 deletions

View File

@ -4,11 +4,10 @@
--toobar-background: var(--white);
--button-color: var(--ion-text-color);
--button-active-color: var(--gray-300);
--background: var(--ion-item-background);
--background: var(--rte-editor-background);
}
:host-context(html.dark) {
--background: var(--medium);
--color: var(--white);
--button-color: var(--gray-200);
--button-active-color: var(--gray-500);

View File

@ -402,4 +402,6 @@ html {
} @else {
--core-mainpage-sitename-display: inline;
}
--rte-editor-background: var(--core-input-background);
}