-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.qss
85 lines (85 loc) · 1.42 KB
/
style.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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
* {
font-family: MingLiU;
}
QTabWidget{
background-color: #fff;
padding: 10px;
}
QTabWidget::tab-bar {
left: 10px;
}
QTabWidget::pane {
border: none;
}
QTabBar::tab {
padding: 12px;
background-color: #fff;
border-top-left-radius: 3px;
border-top-right-radius: 3px;
color: #000;
}
QTabBar::tab:selected {
border: 1px solid #ddd;
border-bottom: none;
}
QTabBar::tab:hover {
background-color: #eaeaea;
}
QTabBar::tab:!selected {
border-bottom: 1px solid #ddd;
}
QPushButton {
padding: 10px;
background-color: #0067F4;
color: #fff;
border: none;
outline: none;
}
QPushButton:hover{
background-color: #2289F6;
}
QLineEdit, QTextEdit {
font-family: STXihei;
font-size: 14px;
padding: 6px;
outline: none;
background-color: #fff;
}
QLabel {
font-family: STXihei;
font-size: 18px;
}
QComboBox {
font-family: STXihei;
font-size: 14px;
padding: 6px;
outline: none;
min-width: 10px;
border: 1px solid #222;
background-color: #fff;
}
QComboBox::drop-down {
outline: none;
border: 1px solid #fff;
}
QComboBox::down-arrow {
border: 1px solid #fff;
border-image: url(./images/down.jpg);
}
QComboBox QAbstractItemView {
}
QComboBox QAbstractItemView::item {
font-family: STXihei;
font-size: 14px;
padding: 6px;
outline: none;
min-width: 10px;
background-color: #fff;
color: #000;
}
QComboBox QAbstractItemView::item:hover {
background-color: #E9ECEF;
}
QComboBox QAbstractItemView::item:selected {
background-color: #E9ECEF;
}