MOBILE-3213 style: Fix some darkmode styles

main
Pau Ferrer Ocaña 2019-12-13 11:10:28 +01:00
parent 63bff7c4f8
commit 438ae42a16
2 changed files with 7 additions and 2 deletions

View File

@ -367,6 +367,9 @@ ion-app.app-root {
color: $black; color: $black;
border-radius: 5px; border-radius: 5px;
background: rgba(255, 255, 255, .5); background: rgba(255, 255, 255, .5);
@include darkmode() {
background-color: rgba(0, 0, 0, .5);
}
text-align: center; text-align: center;
width: 32px; width: 32px;
@ -376,6 +379,8 @@ ion-app.app-root {
font-size: 24px; font-size: 24px;
ion-icon { ion-icon {
font-size: 24px; font-size: 24px;
} }
} }

View File

@ -7,7 +7,7 @@ ion-app.app-root core-rich-text-editor {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
@include darkmode() { @include darkmode() {
background-color: $black; background-color: $gray-darker;
} }
.core-rte-editor, .core-textarea { .core-rte-editor, .core-textarea {
@ -17,7 +17,7 @@ ion-app.app-root core-rich-text-editor {
resize: none; resize: none;
background-color: $white; background-color: $white;
@include darkmode() { @include darkmode() {
background-color: $black; background-color: $gray-darker;
color: $white; color: $white;
} }
} }