From eac51df9144a235d811a090c0c31de4818f660c9 Mon Sep 17 00:00:00 2001 From: Lance Stout Date: Mon, 9 Sep 2013 16:13:42 -0700 Subject: [PATCH] Display paused chat states --- clientapp/models/contact.js | 1 + public/style.css | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/clientapp/models/contact.js b/clientapp/models/contact.js index 23b1d17..99f9154 100644 --- a/clientapp/models/contact.js +++ b/clientapp/models/contact.js @@ -136,6 +136,7 @@ module.exports = HumanModel.define({ } else { this.topResourceStatus = ''; this.show = 'offline'; + this.chatState = 'gone'; } }, fetchTimezone: function () { diff --git a/public/style.css b/public/style.css index 7cf5fb4..a65b344 100644 --- a/public/style.css +++ b/public/style.css @@ -114,6 +114,10 @@ html, body { border-right: 4px solid orange; } +.contact.paused { + border-right: 4px solid #666; +} + .contact.offline .status { color: #777; }