Browse Source

Use distinct icons for chat message delivery states.

pull/4/head
Simon Eisenmann 12 years ago
parent
commit
34a2a315b6
  1. 6
      src/styles/components/_chat.scss

6
src/styles/components/_chat.scss

@ -208,11 +208,12 @@ color:#ccc;
} }
.chat .message li.unread:before { .chat .message li.unread:before {
content: '\f0e0';
color: #FE9A2E; color: #FE9A2E;
} }
.chat .message li.sending:before { .chat .message li.sending:before {
content: '\f0e5'; content: '\f0ec';
} }
.chat .message li.sent:before { .chat .message li.sent:before {
@ -221,14 +222,17 @@ color:#5882FA;
} }
.chat .message li.delivered:before { .chat .message li.delivered:before {
content: '\f0e0';
color:#5882FA; color:#5882FA;
} }
.chat .message li.received:before { .chat .message li.received:before {
content: '\f06e';
color:#84b819; color:#84b819;
} }
.chat .message li.read:before { .chat .message li.read:before {
content: '\f06e';
color:#ccc; color:#ccc;
} }

Loading…
Cancel
Save