Add prefix for buffers in topbar

This commit is contained in:
Johan Stenehall 2015-03-25 00:41:31 +01:00
commit bf706d1483
2 changed files with 6 additions and 5 deletions

View file

@ -114,6 +114,7 @@ input[type=text], input[type=password], #sendMessage, .badge {
left: 145px; /* sidebar */
overflow: hidden;
}
#topbar .actions {
margin-left: 5px;
padding-left: 5px;
@ -492,20 +493,20 @@ h2 span, h2 small {
}
}
/* bold hash before channels */
li.buffer.channel a span:last-of-type:before {
li.buffer.channel a span:last-of-type:before, #topbar .title .channel:before {
color: #888;
font-weight: bold;
}
li.buffer.channel_hash a span:last-of-type:before {
li.buffer.channel_hash a span:last-of-type:before, #topbar .title .channel_hash:before {
content: '#';
}
li.buffer.channel_plus a span:last-of-type:before {
li.buffer.channel_plus a span:last-of-type:before, #topbar .title .channel_plus:before {
content: '+';
}
li.buffer.channel_ampersand a span:last-of-type:before {
li.buffer.channel_ampersand a span:last-of-type:before, #topbar .title .channel_ampersand:before {
content: '&';
}