themify userDetailsDialog

pull/1315/head
Audric Ackermann 5 years ago
parent ea808bf41b
commit 269f799d6b
No known key found for this signature in database
GPG Key ID: 999F434D76324AD4

@ -1,3 +1,5 @@
@import 'themes.scss';
* { * {
box-sizing: border-box; box-sizing: border-box;
} }
@ -13,7 +15,6 @@ body {
margin: 0; margin: 0;
font-family: $roboto; font-family: $roboto;
font-size: 14px; font-size: 14px;
color: $color-light-90;
} }
// scrollbars // scrollbars

@ -50,6 +50,7 @@
.avatar-center-inner { .avatar-center-inner {
display: flex; display: flex;
padding-top: 30px;
} }
.upload-btn-background { .upload-btn-background {

@ -575,7 +575,10 @@ label {
box-sizing: border-box; box-sizing: border-box;
max-height: 70vh; max-height: 70vh;
max-width: 70vw; max-width: 70vw;
background-color: $session-shade-4; @include themify($themes) {
background-color: themed('modalBackground');
color: themed('textColor');
}
border: 1px solid $session-shade-8; border: 1px solid $session-shade-8;
overflow: hidden; overflow: hidden;
display: flex; display: flex;
@ -935,7 +938,9 @@ label {
padding: 0px $session-margin-lg; padding: 0px $session-margin-lg;
font-family: $session-font-default; font-family: $session-font-default;
font-weight: 100; font-weight: 100;
color: rgba($session-color-white, 0.8); @include themify($themes) {
color: themed('textColor');
}
font-size: $session-font-md; font-size: $session-font-md;
padding: 0px $session-margin-sm; padding: 0px $session-margin-sm;
} }
@ -956,7 +961,9 @@ label {
border-radius: 5px; border-radius: 5px;
text-align: center; text-align: center;
font-size: $session-font-md; font-size: $session-font-md;
background-color: $session-shade-5 !important; @include themify($themes) {
background: themed('searchBarBackground');
}
} }
&-uneditable { &-uneditable {

Loading…
Cancel
Save