-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.qss
More file actions
83 lines (69 loc) · 1.22 KB
/
Copy pathstyles.qss
File metadata and controls
83 lines (69 loc) · 1.22 KB
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
QWidget {
background-color: #2E2E2E;
color: white;
font-family: "Arial";
font.pixelSize: 100px;
}
QGroupBox {
border: none;
margin-top: 10px;
padding: 0px;
}
QLabel {
color: #CCCCCC;
}
QPushButton {
background-color: #505050;
color: white;
border: none;
border-radius: 5px;
padding: 0px 0px;
}
QPushButton:hover {
background-color: #606060;
}
QPushButton:pressed {
background-color: #707070;
}
QCheckBox {
spacing: 5px;
color: #CCCCCC;
}
QTableWidget {
background-color: #3E3E3E;
gridline-color: #707070;
color: white;
border: 1px solid #4F4F4F;
}
QTableWidget::item {
border: none;
}
QHeaderView::section {
background-color: #505050;
color: white;
padding: 5px;
border: None;
}
QLineEdit {
background-color: #3E3E3E;
color: white;
border: 1px solid #4F4F4F;
padding: 5px;
}
QMessageBox {
background-color: #2E2E2E;
color: white;
padding: 30px;
}
QMessageBox QPushButton {
background-color: #505050;
color: white;
border-radius: 2px;
padding: 5px 8px;
}
QMessageBox QPushButton:hover {
background-color: #606060;
}
QMessageBox QPushButton:pressed {
background-color: #707070;
}