|
@@ -92,7 +92,7 @@
|
92
|
92
|
}
|
93
|
93
|
|
94
|
94
|
.chat-header {
|
95
|
|
- background-color: rgba(42, 58, 75, 0.9);
|
|
95
|
+ background-color: $chatHeaderBackgroundColor;
|
96
|
96
|
height: 70px;
|
97
|
97
|
position: relative;
|
98
|
98
|
width: 100%;
|
|
@@ -120,7 +120,7 @@
|
120
|
120
|
}
|
121
|
121
|
|
122
|
122
|
#chat-input {
|
123
|
|
- border-top: 1px solid #A4B8D1;
|
|
123
|
+ border-top: 1px solid $chatInputSeparatorColor;
|
124
|
124
|
display: flex;
|
125
|
125
|
|
126
|
126
|
* {
|
|
@@ -188,7 +188,7 @@
|
188
|
188
|
}
|
189
|
189
|
|
190
|
190
|
.chatmessage {
|
191
|
|
- background-color: rgba(240, 243, 247, 0.15);
|
|
191
|
+ background-color: $chatRemoteMessageBackgroundColor;
|
192
|
192
|
border-radius: 0px 6px 6px 6px;
|
193
|
193
|
margin-top: 3px;
|
194
|
194
|
color: white;
|
|
@@ -196,7 +196,7 @@
|
196
|
196
|
position: relative;
|
197
|
197
|
|
198
|
198
|
&.localuser {
|
199
|
|
- background-color: rgba(26, 108, 180, 1);
|
|
199
|
+ background-color: $chatLocalMessageBackgroundColor;
|
200
|
200
|
border-radius: 6px 0px 6px 6px;
|
201
|
201
|
}
|
202
|
202
|
|