From b458c7d4495ad77fa4141a5e6a4b82556dd607f6 Mon Sep 17 00:00:00 2001 From: Scott Nonnenberg Date: Thu, 12 Apr 2018 12:49:01 -0700 Subject: [PATCH] android-dark: Constrain light play icon to with peer image --- stylesheets/android-dark.scss | 4 ++-- ts/components/conversation/Quote.tsx | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/stylesheets/android-dark.scss b/stylesheets/android-dark.scss index 1ff2ad448..3bec579f9 100644 --- a/stylesheets/android-dark.scss +++ b/stylesheets/android-dark.scss @@ -227,7 +227,7 @@ $text-dark_l2: darken($text-dark, 30%); .outgoing .bubble .quote .icon-container .icon { background-color: black; - &.play.white { + &.play.with-image { background-color: $text-dark; } } @@ -239,7 +239,7 @@ $text-dark_l2: darken($text-dark, 30%); .circle-background { background-color: $text-dark; } - .icon.play.white { + .icon.play.with-image { background-color: $text-dark; } } diff --git a/ts/components/conversation/Quote.tsx b/ts/components/conversation/Quote.tsx index 59a997fd4..302aeb12e 100644 --- a/ts/components/conversation/Quote.tsx +++ b/ts/components/conversation/Quote.tsx @@ -54,7 +54,7 @@ function getObjectUrl(thumbnail: Attachment | undefined): string | null { export class Quote extends React.Component { public renderImage(url: string, icon?: string) { const iconElement = icon - ?
+ ?
: null; return (