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.
66 lines
1.3 KiB
66 lines
1.3 KiB
QLineEdit |
|
{ |
|
background: none; |
|
background-color: @themeMedium; |
|
color: white; |
|
border: 0px; |
|
border-radius: 6px; |
|
} |
|
|
|
#statusPanel |
|
{ |
|
background-color: @themeDark; |
|
} |
|
|
|
#statusPanel > #statusHead |
|
{ |
|
background-color: @themeDark; |
|
} |
|
|
|
#statusPanel > #statusHead > #nameLabel { |
|
background-color: @themeDark; |
|
font: @extraBig; |
|
color: @white; |
|
} |
|
|
|
#statusPanel > #statusHead > #statusLabel { |
|
background-color: @themeDark; |
|
font: @medium; |
|
color: @lightGrey; |
|
} |
|
|
|
#statusPanel > #statusHead > #statusButton |
|
{ |
|
background: none; |
|
background-color: @themeMedium; |
|
border: none; |
|
border-radius: 6px; |
|
width: 20px; |
|
height: 40px; |
|
} |
|
|
|
/*Bugged in Qt, but it's probably better to leave enabled so that users can tell it's clickable*/ |
|
#statusPanel > #statusHead > #statusButton:hover |
|
{ |
|
background-color: @themeLight; |
|
} |
|
|
|
#statusPanel > #statusHead > #statusButton:pressed |
|
{ |
|
background-color: @themeMedium; |
|
} |
|
|
|
#statusPanel > #statusHead > #statusButton:focus { |
|
outline: none; |
|
} |
|
|
|
#statusPanel > #statusHead > #statusButton::menu-indicator {image: none;} |
|
|
|
#statusPanel > #statusHead > #statusButton::menu-indicator:pressed, #statusPanel > #statusHead > #statusButton::menu-indicator:open |
|
{ |
|
image: url(":ui/statusButton/menu_indicator.png"); |
|
subcontrol-origin: padding; |
|
subcontrol-position: bottom center; |
|
position: relative; |
|
bottom: 2px; |
|
}
|
|
|