A few tweaks for the android-dark theme
This commit is contained in:
parent
087dd0f758
commit
bdaebc24ae
2 changed files with 21 additions and 1 deletions
|
@ -225,6 +225,26 @@ $text-dark_l2: darken($text-dark, 30%);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.outgoing .bubble .quote .icon-container .icon {
|
||||||
|
background-color: black;
|
||||||
|
&.play.white {
|
||||||
|
background-color: $text-dark;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.incoming .bubble .quote {
|
||||||
|
border-left-color: $text-dark;
|
||||||
|
background-color: rgba(0, 0, 0, 0.6);
|
||||||
|
|
||||||
|
.icon-container {
|
||||||
|
.circle-background {
|
||||||
|
background-color: $text-dark;
|
||||||
|
}
|
||||||
|
.icon.play.white {
|
||||||
|
background-color: $text-dark;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
button.clock {
|
button.clock {
|
||||||
@include header-icon-white('../images/clock.svg');
|
@include header-icon-white('../images/clock.svg');
|
||||||
}
|
}
|
||||||
|
|
|
@ -54,7 +54,7 @@ function getObjectUrl(thumbnail: Attachment | undefined): string | null {
|
||||||
export class Quote extends React.Component<Props, {}> {
|
export class Quote extends React.Component<Props, {}> {
|
||||||
public renderImage(url: string, icon?: string) {
|
public renderImage(url: string, icon?: string) {
|
||||||
const iconElement = icon
|
const iconElement = icon
|
||||||
? <div className={classnames('icon', icon)} />
|
? <div className={classnames('icon', 'white', icon)} />
|
||||||
: null;
|
: null;
|
||||||
|
|
||||||
return (
|
return (
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue