Extending QScopedPointer test case
[qt-netbsd.git] / demos / embedded / styledemo / files / khaki.qss
blobb0d4a0fa6fe028176054c4eeee9812680accaeee
2 QWidget#StartScreen, QWidget#MainWidget {
3    border: none;
6 QWidget#StartScreen, .QFrame {
7    background-color: beige;
10 QPushButton, QToolButton {
11     background-color: palegoldenrod;
12     border-width: 2px;
13     border-color: darkkhaki;
14     border-style: solid;
15     border-radius: 5;
16     padding: 3px;
17     /* min-width: 96px; */
18     /* min-height: 48px; */
21 QPushButton:hover, QToolButton:hover {
22    background-color: khaki;
25 QPushButton:pressed, QToolButton:pressed {
26     padding-left: 5px;
27     padding-top: 5px;
28     background-color: #d0d67c;
31 QLabel, QAbstractButton {
32     font: italic "Times New Roman";
35 QFrame, QLabel#title {
36     border-width: 2px;
37     padding: 1px;
38     border-style: solid;
39     border-color: darkkhaki;
40     border-radius: 5px;
43 QFrame:focus {
44     border-width: 3px;
45     padding: 0px;
49 QLabel {
50     border: none;
51     padding: 0;
52     background: none;
55 QLabel#title {
56         font: 32px bold;
59 QSpinBox {
60      padding-left: 24px;
61      padding-right: 24px;
62          border-color: darkkhaki;
63          border-style: solid;
64          border-radius: 5;
65      border-width: 3;
68 QSpinBox::up-button 
70      subcontrol-origin: padding;
71      subcontrol-position: right; /* position at the top right corner */
72      width: 24px;
73      height: 24px;
74      border-width: 3px;
75          border-image: url(:/files/spindownpng) 1;
78 QSpinBox::up-arrow {
79      image: url(:/files/add.png);
80      width: 12px;
81      height: 12px;
82  }
85 QSpinBox::down-button 
87      subcontrol-origin: border;
88      subcontrol-position: left;
89      width: 24px;
90      height: 24px;
91      border-width: 3px;
92          border-image: url(:/files/spindownpng) 1;
95 QSpinBox::down-arrow {
96      image: url(:/files/remove.png);
97      width: 12px;
98      height: 12px;
99  }