Fix non-#channels and single-symbol channels (#)

This commit is contained in:
Lorenz Hübschle-Schneider 2014-11-20 12:57:19 +01:00
commit 9b7a778186
4 changed files with 20 additions and 4 deletions

View file

@ -477,10 +477,21 @@ h2 span, h2 small {
/* bold hash before channels */
li.buffer.channel a span:last-of-type:before {
color: #888;
content: "#";
font-weight: bold;
}
li.buffer.channel_hash a span:last-of-type:before {
content: '#';
}
li.buffer.channel_plus a span:last-of-type:before {
content: '+';
}
li.buffer.channel_ampersand a span:last-of-type:before {
content: '&';
}
li.buffer.channel.active a span:last-of-type:before {
color: #444;
}