MOBILE-4081 theme: Fix background mode in rich text editor

main
Alfonso Salces 2022-11-23 14:30:34 +01:00
parent a61fab5f70
commit 81b2015853
2 changed files with 3 additions and 2 deletions

View File

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

View File

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