From 269f799d6b58a6ad70918ff325e57f86bf2fa012 Mon Sep 17 00:00:00 2001 From: Audric Ackermann Date: Mon, 24 Aug 2020 14:57:55 +1000 Subject: [PATCH] themify userDetailsDialog --- stylesheets/_global.scss | 3 ++- stylesheets/_index.scss | 1 + stylesheets/_session.scss | 13 ++++++++++--- 3 files changed, 13 insertions(+), 4 deletions(-) diff --git a/stylesheets/_global.scss b/stylesheets/_global.scss index 34b505156..cc760b179 100644 --- a/stylesheets/_global.scss +++ b/stylesheets/_global.scss @@ -1,3 +1,5 @@ +@import 'themes.scss'; + * { box-sizing: border-box; } @@ -13,7 +15,6 @@ body { margin: 0; font-family: $roboto; font-size: 14px; - color: $color-light-90; } // scrollbars diff --git a/stylesheets/_index.scss b/stylesheets/_index.scss index b046b2ef5..eaee3cdf2 100644 --- a/stylesheets/_index.scss +++ b/stylesheets/_index.scss @@ -50,6 +50,7 @@ .avatar-center-inner { display: flex; + padding-top: 30px; } .upload-btn-background { diff --git a/stylesheets/_session.scss b/stylesheets/_session.scss index ffedd8a70..1822faa56 100644 --- a/stylesheets/_session.scss +++ b/stylesheets/_session.scss @@ -575,7 +575,10 @@ label { box-sizing: border-box; max-height: 70vh; max-width: 70vw; - background-color: $session-shade-4; + @include themify($themes) { + background-color: themed('modalBackground'); + color: themed('textColor'); + } border: 1px solid $session-shade-8; overflow: hidden; display: flex; @@ -935,7 +938,9 @@ label { padding: 0px $session-margin-lg; font-family: $session-font-default; font-weight: 100; - color: rgba($session-color-white, 0.8); + @include themify($themes) { + color: themed('textColor'); + } font-size: $session-font-md; padding: 0px $session-margin-sm; } @@ -956,7 +961,9 @@ label { border-radius: 5px; text-align: center; font-size: $session-font-md; - background-color: $session-shade-5 !important; + @include themify($themes) { + background: themed('searchBarBackground'); + } } &-uneditable {