1
0
mirror of https://github.com/qTox/qTox.git synced 2024-03-22 14:00:36 +08:00
qTox/ui/chatArea/chatHead.css
tox-user 2fae2a30f7
feat(chat): add UI option to mute group peers
Implements #4596, #4626, #1007

Adds a context menu to every peer label in group chat with an
option to mute chosen peers, which adds them to the blacklist.
Mutes audio of blacklisted group peers.
2018-06-02 18:05:45 +00:00

40 lines
501 B
CSS

QLineEdit {
color: @black;
background: white;
border: 0px;
}
#nameLabel {
color: @black;
font: @mediumBold;
font-size:12px;
}
#statusLabel {
color: @mediumGrey;
font: @medium;
font-size:12px;
}
#peersLabel {
color: @mediumGrey;
font: @medium;
font-size:12px;
}
QLabel[peerType="our"] {
color: green;
}
QLabel[peerType="muted"] {
color: darkred;
}
QLabel[playingAudio="true"] {
font-weight: bold;
}
QMenu:disabled {
color: gray;
}