improved ws, chat component

This commit is contained in:
2018-11-22 13:01:26 +01:00
parent fb5c6cf688
commit fcee9f38c3
18 changed files with 3025 additions and 96 deletions

View File

@@ -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;
}