Adjust colors for quote in composition area

This commit is contained in:
Josh Perez 2020-04-08 11:52:33 -07:00 committed by GitHub
parent 741a0860f7
commit 50a18aebf1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 19 additions and 4 deletions

View file

@ -234,7 +234,7 @@
border-left-style: none;
@include ios-dark-theme {
background-color: $ultramarine-brand-dark;
border-left-color: $color-black;
border-left-color: $color-ios-blue-tint;
}
@include ios-theme {
background-color: $color-ios-blue-tint;

View file

@ -1636,6 +1636,21 @@ $timer-icons: '55', '50', '45', '40', '35', '30', '25', '20', '15', '10', '05',
}
}
.module-composition-area__row {
.module-quote--outgoing {
border-left-style: solid;
@include ios-dark-theme {
background-color: $ultramarine-brand-dark;
border-left-color: $color-ios-blue-tint;
}
@include ios-theme {
background-color: $color-ios-blue-tint;
border-left-color: $ultramarine-ui-light;
}
}
}
@each $color, $value in $conversation-colors {
.module-quote--outgoing-#{$color} {
border-left-color: $value;
@ -1669,11 +1684,11 @@ $timer-icons: '55', '50', '45', '40', '35', '30', '25', '20', '15', '10', '05',
// Note: both of these override all of the specific color classes below
@include ios-theme {
background-color: $color-ios-blue-tint;
border-left-color: $color-white;
border-left-color: $ultramarine-ui-light;
}
@include ios-dark-theme {
background-color: $ultramarine-ui-dark;
border-left-color: $color-black;
background-color: $ultramarine-brand-dark;
border-left-color: $color-ios-blue-tint;
}
}
@each $color, $value in $conversation-colors-tint {