mirror of
https://github.com/qTox/qTox.git
synced 2024-03-22 14:00:36 +08:00
2fae2a30f7
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.
40 lines
501 B
CSS
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;
|
|
}
|