diff --git a/file/js/be.bastelstu.WCF.Chat.coffee b/file/js/be.bastelstu.WCF.Chat.coffee index d0d4d89..a38e1dc 100644 --- a/file/js/be.bastelstu.WCF.Chat.coffee +++ b/file/js/be.bastelstu.WCF.Chat.coffee @@ -370,7 +370,7 @@ window.console ?= console.log 'Moving User: "' + user.username + '"' element = element.detach() if user.awayStatus? - element.addClass 'timsChatAway' + element.addClass 'away' element.attr 'title', user.awayStatus else element.removeClass 'timsChatAway' diff --git a/file/style/be.bastelstu.wcf.chat.less b/file/style/be.bastelstu.wcf.chat.less index 8792ef3..5ef28b0 100644 --- a/file/style/be.bastelstu.wcf.chat.less +++ b/file/style/be.bastelstu.wcf.chat.less @@ -186,26 +186,14 @@ } #timsChatUserList { - .timsChatUserMenu { - display: none; - background-color: rgba(0, 0, 0, 0.1); - border-bottom: 1px solid @wcfContentBackgroundColor; - color: rgba(0, 0, 0, 0.4); - - > li { - a { - background-color: rgba(255, 255, 255, 0.22); - .textShadow(@wcfSidebarBackgroundColor + rgba(0, 0, 0, 0.1) + rgba(255, 255, 255, 0.22)) !important; - .borderRadius(5px, 0, 0, 5px); - margin-left: 35px; - padding: 1px 0 1px 15px; - color: @wcfColor; - } + .timsChatUser { + &.away { + opacity: .5; + } + + &.suspended a { + text-decoration: line-through; } - } - - .timsChatAway { - opacity: .5; } } }