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