From 438ae42a169ba6e3885e64797b95901628519fd6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pau=20Ferrer=20Oca=C3=B1a?= Date: Fri, 13 Dec 2019 11:10:28 +0100 Subject: [PATCH] MOBILE-3213 style: Fix some darkmode styles --- src/app/app.scss | 5 +++++ src/components/rich-text-editor/rich-text-editor.scss | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/src/app/app.scss b/src/app/app.scss index a77cf58e8..6e71d9caf 100644 --- a/src/app/app.scss +++ b/src/app/app.scss @@ -367,6 +367,9 @@ ion-app.app-root { color: $black; border-radius: 5px; background: rgba(255, 255, 255, .5); + @include darkmode() { + background-color: rgba(0, 0, 0, .5); + } text-align: center; width: 32px; @@ -376,6 +379,8 @@ ion-app.app-root { font-size: 24px; ion-icon { font-size: 24px; + + } } diff --git a/src/components/rich-text-editor/rich-text-editor.scss b/src/components/rich-text-editor/rich-text-editor.scss index d4ba94b06..e2dd2ac07 100644 --- a/src/components/rich-text-editor/rich-text-editor.scss +++ b/src/components/rich-text-editor/rich-text-editor.scss @@ -7,7 +7,7 @@ ion-app.app-root core-rich-text-editor { display: flex; flex-direction: column; @include darkmode() { - background-color: $black; + background-color: $gray-darker; } .core-rte-editor, .core-textarea { @@ -17,7 +17,7 @@ ion-app.app-root core-rich-text-editor { resize: none; background-color: $white; @include darkmode() { - background-color: $black; + background-color: $gray-darker; color: $white; } }