62 lines
1.2 KiB
Plaintext
62 lines
1.2 KiB
Plaintext
|
|
/* ================================================ *
|
|
|
|
* ================================================ */
|
|
|
|
|
|
|
|
|
|
|
|
QFrame {
|
|
background-color: #FFFFFF;
|
|
}
|
|
|
|
QPushButton {
|
|
background-color: #FFFFFF;
|
|
border-width: 2px;
|
|
border-color: darkkhaki;
|
|
border-style: solid;
|
|
border-radius: 5;
|
|
padding: 3px;
|
|
font: 15px "Arial";
|
|
}
|
|
|
|
QPushButton:pressed[CheckState="0"] {
|
|
background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
|
|
stop: 0 #dadbde, stop: 0.5 #FFAA00, stop: 1 #dadbde);
|
|
}
|
|
|
|
QPushButton:pressed[CheckState="1"] {
|
|
background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
|
|
stop: 0 #dadbde, stop: 0.5 #00FF00, stop: 1 #dadbde);
|
|
}
|
|
|
|
QPushButton:pressed[CheckState="2"] {
|
|
background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
|
|
stop: 0 #dadbde, stop: 0.5 #FF5500, stop: 1 #dadbde);
|
|
}
|
|
|
|
|
|
|
|
QPushButton:flat {
|
|
border: none;
|
|
}
|
|
|
|
QPushButton:default {
|
|
border-color: navy;
|
|
}
|
|
|
|
QPushButton[CheckState="0"] {
|
|
background-color: #FFAA00;
|
|
}
|
|
|
|
QPushButton[CheckState="1"] {
|
|
background-color: #00FF00;
|
|
}
|
|
|
|
QPushButton[CheckState="2"] {
|
|
background-color: #FF5500;
|
|
}
|
|
|
|
|