experiment

This commit is contained in:
HF 2022-08-14 11:37:02 +02:00
parent 9ac475c25e
commit 7c0d6d075e
3 changed files with 4 additions and 8 deletions

View File

@ -82,9 +82,7 @@ function ChatMessage({
{': '}
</React.Fragment>
)}
<span>
<MarkdownParagraph refEmbed={refEmbed} pArray={pArray} />
</span>
<MarkdownParagraph refEmbed={refEmbed} pArray={pArray} />
</span>
<span className="chatts">
{getDateTimeString(ts)}

View File

@ -779,7 +779,7 @@ export function addToChatInputMessage(windowId, msg, focus = true) {
inputMessage += msg;
dispatch(setWindowArgs(windowId, {
inputMessage: msg,
inputMessage,
}));
if (focus) {

View File

@ -691,6 +691,7 @@ tr:nth-child(even) {
display: inline-block;
max-width: 95px;
overflow: hidden;
vertical-align: bottom;
}
.mention, .ping {
text-overflow: ellipsis;
@ -698,6 +699,7 @@ tr:nth-child(even) {
display: inline-block;
max-width: 85px;
overflow: hidden;
vertical-align: bottom;
}
.chatts {
color: #83839f;
@ -721,10 +723,6 @@ tr:nth-child(even) {
overflow-y: clip;
overflow-x: hidden;
}
.msg span {
display: inline-block;
vertical-align: middle;
}
.msg.info {
color: #cc0000;
}