From cdfe4d76b1856ef509e9dc3c621b40824db4a8b7 Mon Sep 17 00:00:00 2001 From: Scott Nonnenberg Date: Mon, 7 May 2018 13:08:55 -0700 Subject: [PATCH] Update contacts for android dark theme --- stylesheets/android-dark.scss | 45 +++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) diff --git a/stylesheets/android-dark.scss b/stylesheets/android-dark.scss index d9644e353..5e5f6732f 100644 --- a/stylesheets/android-dark.scss +++ b/stylesheets/android-dark.scss @@ -239,6 +239,51 @@ $text-dark_l2: darken($text-dark, 30%); } } + .embedded-contact { + .first-line { + .image-container { + .default-avatar { + background-color: gray; + color: white; + } + } + + .text-container .contact-name { + color: $blue; + } + } + + .send-message { + color: $blue; + border-top: 1px solid $grey; + border-bottom: 1px solid $grey; + + .bubble-icon { + @include color-svg('../images/chat-bubble.svg', $blue); + } + } + } + + .incoming .embedded-contact { + color: white; + + .text-container .contact-name { + color: white; + } + + .send-message { + color: white; + // Note: would like to use transparency here, but Chromium in Electron doesn't + // render the borders when they are transparent. + border-top: 1px solid $grey_l1_5; + border-bottom: 1px solid $grey_l1_5; + + .bubble-icon { + background-color: white; + } + } + } + .outgoing .quoted-message { background: rgba(255, 255, 255, 0.38);