This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var CLASS_CHAT_CONTAINER = 'chat-list__list-container'; | |
var CLASS_CHAT_MESSAGE = 'chat-line__message'; | |
var CLASS_MESSAGE_READ = 'chat-message-marked-as-read'; | |
var styles = document.createElement('style'); | |
styles.innerText = ` | |
.chat-list__list-container .chat-line__message.${CLASS_MESSAGE_READ} { | |
opacity: 0.5; |
OlderNewer