From 2f2bcc755fc48b03e0672e7b7b2be54b6267c763 Mon Sep 17 00:00:00 2001 From: psychobunny Date: Mon, 2 Nov 2015 13:16:29 -0500 Subject: [PATCH] use real :tm: colours for status indicators --- less/style.less | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/less/style.less b/less/style.less index ee9a361..2416175 100644 --- a/less/style.less +++ b/less/style.less @@ -79,19 +79,19 @@ a:hover, .btn-link:hover, .btn-link:active, .btn-link:focus { vertical-align: middle; &.online { - color: #060; + color: @material-success; } &.away { - color: #cc0; + color: @material-warning; } &.dnd { - color: #900; + color: @material-danger; } &.offline { - color: gray; + color: @gray; } }