-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.qss
More file actions
78 lines (64 loc) · 1.41 KB
/
style.qss
File metadata and controls
78 lines (64 loc) · 1.41 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
.QPushButton {
border: 1px solid #aaaaaa;
border-radius: 5px;
background-color: #dfdfdf;
padding: 2px 10px;
}
.QPushButton::hover {
background-color: #e9e9e9;
}
.QPushButton:pressed {
background-color: #e2e2e9;
}
.QPushButton#clear_button {
padding: 0px 0px;
background-color: #bbbbbb;
border-bottom-left-radius: 0;
border-top-left-radius: 0;
border-left: none;
}
.QPushButton#clear_button::hover {
background-color: #cccccc;
}
QPushButton#clear_button:pressed {
background-color: #cacacf;
}
.QPushButton#path_button {
border-bottom-left-radius: 0;
border-top-left-radius: 0;
}
.QLineEdit {
font-size: 14px;
border: 1px solid darkgrey;
border-top-left-radius: 5px;
border-bottom-left-radius: 5px;
}
.QLineEdit#download_input {
border-right: none;
}
.QLabel#input_label {
font-size: 12px;
border: 1px solid darkgrey;
border-bottom: none;
border-top-left-radius: 5px;
border-top-right-radius: 5px;
background-color: #e0e0e0;
}
#ProgressWidget {
background-color: lightgrey;
border: 1px solid black;
}
#ProgressWidget > QLabel {
background-color: lightgrey;
}
.QLabel {
border: none;
}
.QProgressBar::chunk {
background-color: qlineargradient(x1: 0, y1: 0, x2: 1, y2: 0, stop: 0.8 #44bb44, stop: 1 #66ee66);
}
.QProgressBar {
text-align: right;
background-color: white;
border: 1px solid grey;
}