Fixed words without spaces
This commit is contained in:
parent
b75e7010b8
commit
0308b3c931
@ -194,6 +194,9 @@
|
|||||||
.message {
|
.message {
|
||||||
font-size: 13px;
|
font-size: 13px;
|
||||||
line-height: 1.4;
|
line-height: 1.4;
|
||||||
|
min-height: min-content;
|
||||||
|
padding: 4px 0;
|
||||||
|
display: block;
|
||||||
}
|
}
|
||||||
|
|
||||||
.msg-time {
|
.msg-time {
|
||||||
@ -214,10 +217,12 @@
|
|||||||
|
|
||||||
.message.system .msg-text {
|
.message.system .msg-text {
|
||||||
color: #888;
|
color: #888;
|
||||||
word-break: break-word;
|
word-break: break-all;
|
||||||
overflow-wrap: anywhere;
|
overflow-wrap: anywhere;
|
||||||
|
display: inline-block;
|
||||||
font-style: italic;
|
font-style: italic;
|
||||||
white-space: pre-wrap;
|
white-space: pre-wrap;
|
||||||
|
max-width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.chat-input-area {
|
.chat-input-area {
|
||||||
@ -414,3 +419,29 @@
|
|||||||
color: #ff3e3e;
|
color: #ff3e3e;
|
||||||
text-shadow: 0 0 8px rgba(255, 62, 62, 0.4);
|
text-shadow: 0 0 8px rgba(255, 62, 62, 0.4);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.message {
|
||||||
|
font-size: 13px;
|
||||||
|
line-height: 1.4;
|
||||||
|
min-height: min-content;
|
||||||
|
padding: 4px 0;
|
||||||
|
display: block;
|
||||||
|
word-wrap: break-word;
|
||||||
|
}
|
||||||
|
|
||||||
|
.msg-text {
|
||||||
|
color: #fff;
|
||||||
|
word-break: break-all;
|
||||||
|
overflow-wrap: anywhere;
|
||||||
|
white-space: pre-wrap;
|
||||||
|
display: inline;
|
||||||
|
}
|
||||||
|
|
||||||
|
.message.system .msg-author {
|
||||||
|
color: #ff3e3e;
|
||||||
|
}
|
||||||
|
|
||||||
|
.message.system .msg-text {
|
||||||
|
color: #888;
|
||||||
|
font-style: italic;
|
||||||
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user