1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
| /*--------------- QPushButton ---------------*/
QPushButton#autofocus, QPushButton#OK {
color : black;
font : bold;
border: 1px solid #4A4A4A;
border-radius: 3px;
background-color: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, stop:0 rgba(254, 254, 254, 255), stop:1 rgba(169, 169, 169, 255));
font-size : 12px;
}
QPushButton#autofocus:pressed{
font : bold;
border: 1px solid #4A4A4A;
border-radius: 3px;
background-color: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, stop:0 rgba(57, 57, 57, 255), stop:0.3 rgba(175, 175, 175, 255), stop:1 rgba(103, 103, 103, 255));
font-size : 12px;
} |