Cleaned up new chat changes to work in the game hall and on Chrome

This commit is contained in:
Christian 'ketura' McCarty
2022-08-23 17:33:25 -05:00
parent 71fa96a367
commit d7a5177d41
3 changed files with 74 additions and 3 deletions

View File

@@ -297,3 +297,66 @@ body {
padding-top: 2px;
padding-bottom: 2px;
}
.msg-content p a {
color: orange;
}
.chatMessage h1,
.chatMessage h2,
.chatMessage h3,
.chatMessage h4,
.chatMessage h5,
.chatMessage h6 {
display: inline;
margin-top: 0;
margin-bottom: 0;
}
.chatMessage p {
margin-top: 0;
margin-bottom: 0;
}
.chatMessage blockquote {
display: inline-block;
border-left: 5px solid #505050;
margin-left: 5px;
margin-top: 0px;
margin-bottom: 5px;
font-style: italic;
}
.chatMessage blockquote br {
line-height: 0px;
margin: 0px;
content: "";
}
.gameMessage div {
display: inline;
}
.user-mention {
background-color: #FFFF0022;
}
.user-ping {
background-color: #FF000044;
}
.message {
display: flex;
flex-direction: row;
gap: 2px;
align-items: flex-start;
}
.msg-content p {
margin-left: 5px;
margin-top: 0px;
margin-bottom: 7px;
}
.msg-identifier {
}

View File

@@ -314,8 +314,11 @@ tr.played {
overflow: auto;
}
a {
color: orange !important;
#buttonsDiv a,
#motd a,
#bugReport a,
.msg-content p a {
color: orange;
}
.chatMessage h1,
@@ -370,5 +373,5 @@ a {
}
.msg-identifier {
min-width: 200px;
}

View File

@@ -375,6 +375,11 @@ var ChatBoxUI = Class.extend({
msgClass += " user-mention";
}
if(msgClass == "gameMessage")
{
message = "<div class='msg-content'>" + message + "</div>";
}
var messageDiv = $("<div class='message " + msgClass + "'>" + message + "</div>");
this.chatMessagesDiv.append(messageDiv);