mirror of https://github.com/qTox/qTox.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
501 B
39 lines
501 B
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; |
|
}
|
|
|