mirror of
https://github.com/qTox/qTox.git
synced 2024-03-22 14:00:36 +08:00
22 lines
627 B
CSS
22 lines
627 B
CSS
GenericChatroomWidget {
|
|
background-color: @themeMedium; /* Base background color */
|
|
}
|
|
GenericChatroomWidget:hover {
|
|
background-color: @themeLight; /* On mouse over */
|
|
}
|
|
GenericChatroomWidget[active="true"] {
|
|
background-color: @groundBase; /* When active */
|
|
}
|
|
CroppingLabel#statusMessageLabelObj {
|
|
color: @groundExtra; /* Base color */
|
|
}
|
|
CroppingLabel#statusMessageLabelObj[active="true"] {
|
|
color: @statusActive; /* Color when active */
|
|
}
|
|
CroppingLabel#nameLabelObj {
|
|
color: @groundBase; /* Base color */
|
|
}
|
|
CroppingLabel#nameLabelObj[active="true"] {
|
|
color: @nameActive; /* Color when active */
|
|
}
|