Channel names are directly selectable and changable in chat

This commit is contained in:
Jeremy Zhang
2017-11-01 06:31:44 +00:00
parent a2b2839a66
commit 0ffaf41874
2 changed files with 47 additions and 5 deletions

View File

@ -350,6 +350,10 @@ a {
color: #82b1ff;
}
#chatcontent a:hover {
text-decoration: underline;
}
#fetching-indicator {
position: absolute;
right: 1vw;
@ -482,6 +486,19 @@ p.mentioned span.chatmessage {
margin-bottom: 3px;
}
.chatmessage .channellink {
border-radius: 5px;
background-color: rgba(0, 0, 0, 0.2);
color: #82b1ff;
cursor: pointer;
}
.chatmessage .channellink:hover {
background-color: rgba(0, 0, 0, 0.5);
color: white;
}
#emoji-picker {
color: black;
position: fixed;