reduce shadow of avatar upload

This commit is contained in:
Audric Ackermann 2020-09-02 15:08:35 +10:00
parent f1cf93efad
commit 3d146348ac
No known key found for this signature in database
GPG Key ID: 999F434D76324AD4
3 changed files with 5 additions and 2 deletions

View File

@ -206,7 +206,9 @@
position: relative;
.module-avatar {
box-shadow: 0 0 23px 0 rgba($session-color-black, 0.78);
@include themify($themes) {
box-shadow: 0px 0px 13px 0.5px themed('sessionShadowColor');
}
}
.qr-view-button {

View File

@ -922,7 +922,6 @@ label {
height: 80px;
border-radius: 100%;
background-color: rgba($session-color-black, 0.72);
box-shadow: 0px 0px 3px 0.5px rgba(0, 0, 0, 0.75);
opacity: 0;
transition: $session-transition-duration;

View File

@ -34,6 +34,7 @@ $themes: (
receivedMessageText: $black,
sentMessageText: $black,
sessionShadow: 0 0 4px 0 rgba($black, 0.37),
sessionShadowColor: rgba($black, 0.37),
// left pane
conversationList: $white,
conversationItemHasUnread: #fcfcfc,
@ -83,6 +84,7 @@ $themes: (
receivedMessageText: $white,
sentMessageText: $white,
sessionShadow: 0 0 4px 0 rgba($white, 0.2),
sessionShadowColor: rgba($white, 0.2),
// left pane
conversationList: #1b1b1b,
conversationItemHasUnread: #2c2c2c,