2014-07-06 03:30:00 +08:00
|
|
|
QPushButton
|
|
|
|
{
|
2014-07-06 06:03:53 +08:00
|
|
|
background: none;
|
2014-11-16 04:30:20 +08:00
|
|
|
background-color: @themeMediumDark;
|
2014-07-06 03:30:00 +08:00
|
|
|
border: none;
|
|
|
|
border-radius: 6px;
|
2014-07-06 06:41:39 +08:00
|
|
|
width: 20px;
|
|
|
|
height: 40px;
|
2014-07-06 03:30:00 +08:00
|
|
|
}
|
2014-07-06 04:54:27 +08:00
|
|
|
|
2014-07-06 06:03:53 +08:00
|
|
|
QPushButton:default
|
|
|
|
{
|
2014-11-16 04:30:20 +08:00
|
|
|
background-color: @themeMediumDark;
|
2014-07-06 06:03:53 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/*Bugged in Qt, but it's probably better to leave enabled so that users can tell it's clickable*/
|
2014-07-06 04:54:27 +08:00
|
|
|
QPushButton:hover
|
2014-07-06 03:30:00 +08:00
|
|
|
{
|
2014-11-16 04:30:20 +08:00
|
|
|
background-color: @themeMedium;
|
2014-07-06 06:03:53 +08:00
|
|
|
}
|
2014-07-06 03:30:00 +08:00
|
|
|
|
|
|
|
QPushButton:pressed
|
|
|
|
{
|
2014-11-16 04:30:20 +08:00
|
|
|
background-color: @themeMediumDark;
|
2014-07-06 03:30:00 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
QPushButton:focus {
|
|
|
|
outline: none;
|
|
|
|
}
|
2014-07-06 06:03:53 +08:00
|
|
|
|
|
|
|
QPushButton::menu-indicator {image: none;}
|
|
|
|
|
|
|
|
QPushButton::menu-indicator:pressed, QPushButton::menu-indicator:open
|
|
|
|
{
|
2015-02-12 20:18:04 +08:00
|
|
|
image: url(":ui/statusButton/menu_indicator.svg");
|
2014-07-06 06:03:53 +08:00
|
|
|
subcontrol-origin: padding;
|
|
|
|
subcontrol-position: bottom center;
|
|
|
|
position: relative;
|
|
|
|
bottom: 2px;
|
|
|
|
}
|