buffer: separate unread and notification

cordova
Lorenz Hübschle-Schneider 9 years ago
parent cbc158af4c
commit 6359e726ce
  1. 2
      css/glowingbear.css
  2. 3
      index.html

@ -221,7 +221,7 @@ input[type=text], input[type=password], #sendMessage {
display: none;
}
#sidebar .buffer.unread .badge {
#sidebar .buffer.unread .badge, #sidebar .buffer.notification .badge {
display: inline-block;
border-radius: 0;
margin-right: -10px;

@ -272,7 +272,8 @@ $ openssl req -nodes -newkey rsa:4096 -keyout relay.pem -x509 -days 365 -out rel
</form>
</li>
<li class="buffer" ng-class="{'active': buffer.active,
'unread': (buffer.notification || buffer.unread),
'unread': buffer.unread,
'notification': buffer.notification,
'highlight': search && search_highlight_key === key,
'indent': buffer.indent,
'channel': buffer.type === 'channel',

Loading…
Cancel
Save