From b5f31a4f3fc6b03d6d25154afc39441dc934b4b5 Mon Sep 17 00:00:00 2001 From: Audric Ackermann Date: Thu, 3 Sep 2020 16:39:44 +1000 Subject: [PATCH] fix quote background and border --- stylesheets/_quote.scss | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/stylesheets/_quote.scss b/stylesheets/_quote.scss index e94deb026..8bdca3d76 100644 --- a/stylesheets/_quote.scss +++ b/stylesheets/_quote.scss @@ -7,12 +7,12 @@ flex-direction: row; align-items: stretch; overflow: hidden; - + border-radius: 4px; border-left-width: 4px; border-left-style: solid; @include themify($themes) { - border-color: themed('accent'); + border-color: themed('accentButton'); } &__primary__type-label { @@ -64,7 +64,16 @@ // This is related to the quote logic inside messages .module-quote { + &--incoming { + @include themify($themes) { + background: themed('sentMessageBackground'); + } + } + &--outgoing { + @include themify($themes) { + background: themed('receivedMessageBackground'); + } .module-quote__primary__author { @include themify($themes) { color: themed('sentMessageText');