From 34a2a315b6383cd6500c4c62ff987ec4739d77d1 Mon Sep 17 00:00:00 2001 From: Simon Eisenmann Date: Wed, 12 Mar 2014 17:39:51 +0100 Subject: [PATCH] Use distinct icons for chat message delivery states. --- src/styles/components/_chat.scss | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/styles/components/_chat.scss b/src/styles/components/_chat.scss index a970b588..cb6fe01f 100644 --- a/src/styles/components/_chat.scss +++ b/src/styles/components/_chat.scss @@ -208,11 +208,12 @@ color:#ccc; } .chat .message li.unread:before { +content: '\f0e0'; color: #FE9A2E; } .chat .message li.sending:before { -content: '\f0e5'; +content: '\f0ec'; } .chat .message li.sent:before { @@ -221,14 +222,17 @@ color:#5882FA; } .chat .message li.delivered:before { +content: '\f0e0'; color:#5882FA; } .chat .message li.received:before { +content: '\f06e'; color:#84b819; } .chat .message li.read:before { +content: '\f06e'; color:#ccc; }