Skip to content

Instantly share code, notes, and snippets.

@AmyCupcake
Last active January 12, 2020 11:12
Show Gist options
  • Save AmyCupcake/5bb19c60f64f03c01482a3ff3fa9ec74 to your computer and use it in GitHub Desktop.
Save AmyCupcake/5bb19c60f64f03c01482a3ff3fa9ec74 to your computer and use it in GitHub Desktop.
/*fix timestamp width in monospace themes*/
#chat.show-seconds .time, #chat.show-seconds .chat-view[data-type="channel"] .msg.highlight .time {
width: auto;
}
/*hide message sender name if it comes from the same person as the last one*/
.msg.previous-source .from {
visibility: hidden;
}
/*hide debug messages, this should only be added to your extra css if your server admin insists on seeing debug messages*/
#chat .msg[data-type=raw] {
display: none;
}
/* reverse of above */
/*
#chat .msg[data-type=raw] {
display: flex;
}
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment