separate fw variation for chat

This commit is contained in:
2018-11-23 09:46:41 +01:00
parent 6f1afc1bc1
commit 62186af303
8 changed files with 130 additions and 17 deletions

View File

@@ -31,7 +31,7 @@
.sui label {
color: #b3b2b2;
}
.sui button, .sui input[type=file] {
.sui button {
background: #097479;
color: #eeeeee;
font-size: 0.9em;
@@ -306,3 +306,24 @@ form .form-row input[type="checkbox"] {
.sui select option {
background: #333333;
}
.Chat .message-container {
max-height: 200px;
overflow: auto;
}
.Chat .message-container .messages {
list-style-type: none;
}
.Chat .message-container .messages .user-label {
color: lightblue;
}
.Chat .message-container .messages .user-label:before {
color: #097479;
content: '<';
}
.Chat .message-container .messages .user-label:after {
color: #097479;
content: '>';
}
.Chat .message-container .messages .message-text {
font-weight: normal;
}