-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsytle.qss
72 lines (69 loc) · 1.28 KB
/
sytle.qss
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
QDialog{
background: #e7e7e7;
}
QPushButton {
background: white;
border: 1px solid black;
border-radius: 4px;
}
QPushButton:pressed {
background-color: blue;
}
QComboBox {
font: 20px;
}
QLabel {
font-size: 20px;
}
QGroupBox[objectName="groupBox"] > QPushButton:checked {
background: blue;
color: white;
}
QGroupBox#groupBox > QPushButton:!checked {
background: white;
color: black;
}
QGroupBox#groupBox_4 > QPushButton:checked {
background: blue;
color: white;
}
QGroupBox#groupBox_4 > QPushButton:!checked {
background: white;
color: black;
}
QGroupBox {
border: 2px solid gray;
margin-top: 2ex;
font: 20px;
}
QGroupBox:title {
subcontrol-origin: margin;
subcontrol-position: top left;
left: 10px;
margin-left: 0px;
padding: 0 1px;
}
QGroupBox#groupBox_29 > QLineEdit {
font: 20px;
}
QTabWidget::pane {
border-top: 2px solid black;
}
QWidget#tab,QWidget#tab_2 {
}
QTabWidget::tab-bar {
alignment: left;
left: 80px;
top:5px;
}
QTabBar::tab{
width: 100px;
height: 30px;
font-size: 14px;
}
QPushButton#btn_serwo:!checked, QPushButton#btn_switch:!checked {
border-image:url(:/close.png);
}
QPushButton#btn_serwo:checked, QPushButton#btn_switch:checked {
background: yellow;
}