1
0
mirror of https://github.com/moparisthebest/kaiwa synced 2024-11-26 03:02:25 -05:00

Display paused chat states

This commit is contained in:
Lance Stout 2013-09-09 16:13:42 -07:00
parent 69c4c33b8e
commit eac51df914
2 changed files with 5 additions and 0 deletions

View File

@ -136,6 +136,7 @@ module.exports = HumanModel.define({
} else { } else {
this.topResourceStatus = ''; this.topResourceStatus = '';
this.show = 'offline'; this.show = 'offline';
this.chatState = 'gone';
} }
}, },
fetchTimezone: function () { fetchTimezone: function () {

View File

@ -114,6 +114,10 @@ html, body {
border-right: 4px solid orange; border-right: 4px solid orange;
} }
.contact.paused {
border-right: 4px solid #666;
}
.contact.offline .status { .contact.offline .status {
color: #777; color: #777;
} }