MOBILE-3213 style: Fix some darkmode styles
parent
63bff7c4f8
commit
438ae42a16
|
@ -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;
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue