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.
42 lines
474 B
42 lines
474 B
QLineEdit |
|
{ |
|
color: @mainText; |
|
background: white; |
|
border: 0px; |
|
} |
|
|
|
#nameLabel |
|
{ |
|
color: @mainText; |
|
font: @mediumBold; |
|
font-size:12px; |
|
} |
|
|
|
#statusLabel |
|
{ |
|
color: @statusActive; |
|
font: @medium; |
|
font-size:12px; |
|
} |
|
|
|
#peersLabel |
|
{ |
|
color: @statusActive; |
|
font: @medium; |
|
font-size:12px; |
|
} |
|
|
|
QLabel[peerType="our"] |
|
{ |
|
color: green; |
|
} |
|
|
|
QLabel[peerType="muted"] |
|
{ |
|
color: darkred; |
|
} |
|
|
|
QLabel[playingAudio="true"] |
|
{ |
|
font-weight: bold; |
|
}
|
|
|