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.
98 lines
1.9 KiB
98 lines
1.9 KiB
QLineEdit |
|
{ |
|
background: none; |
|
background-color: @themeMedium; |
|
color: white; |
|
border: 0px; |
|
border-radius: 4px; |
|
} |
|
|
|
QComboBox { |
|
background: none; |
|
background-color: @themeMedium; |
|
color: white; |
|
border-style: none; |
|
border-radius: 4px; |
|
} |
|
|
|
QComboBox:on { |
|
background-color: @themeDark; |
|
border-radius: 4px; |
|
} |
|
|
|
QComboBox:drop-down { |
|
border-style: none; |
|
border-radius: 4px; |
|
} |
|
|
|
/** |
|
Uncomment this after https://github.com/tux3/qTox/pull/1640 |
|
is merged! |
|
QComboBox:down-arrow { |
|
image: url(ui/css/down_arrow.png); |
|
} |
|
**/ |
|
|
|
QListView { |
|
background-color: @themeLight; |
|
border-style: none; |
|
border-radius: 4px; |
|
} |
|
|
|
#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; |
|
}
|
|
|