mirror of https://github.com/qTox/qTox.git
Browse Source
bodwok (3): fix(ui): updating friends list color at runtime fix(ui): using a separate css file style: placing files in alphabetical orderreviewable/pr6154/r1
4 changed files with 52 additions and 26 deletions
@ -0,0 +1,21 @@ |
|||||||
|
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: @groundExtra; /* Base color */ |
||||||
|
} |
||||||
|
CroppingLabel#nameLabelObj[active="true"] { |
||||||
|
color: @nameActive; /* Color when active */ |
||||||
|
} |
@ -0,0 +1,21 @@ |
|||||||
|
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 */ |
||||||
|
} |
Loading…
Reference in new issue