-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.qss
More file actions
87 lines (74 loc) · 2.02 KB
/
Copy pathstyle.qss
File metadata and controls
87 lines (74 loc) · 2.02 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
84
85
86
87
QWidget {
font-family: Arial, sans-serif;
font-size: 11px; /* Further reduced font size */
background-color: #2b2b2b;
color: #f0f0f0;
}
QLabel#sliderTitleLabel {
color: #f0f0f0;
font-weight: 900; /* Make slider title labels much bolder */
}
QLineEdit {
border: 1px solid #555;
border-radius: 4px;
padding: 1px; /* Further reduced padding */
background-color: #3b3b3b;
color: #f0f0f0;
}
QSlider::groove:horizontal {
border: 1px solid palette(highlight); /* Use OS accent color */
background: palette(highlight); /* Use OS accent color */
height: 4px; /* Increase height */
border-radius: 2px;
}
QSlider::handle:horizontal {
background: #f0f0f0; /* Light color for contrast */
border: 1px solid #888;
width: 16px; /* Increase width */
height: 16px; /* Increase height */
border-radius: 8px; /* Make it circular */
margin: -6px 0; /* Center the handle vertically */
}
QPushButton {
background-color: #444;
color: white;
border: none;
border-radius: 4px;
padding: 4px 8px; /* Further reduced padding */
font-weight: bold; /* Make button labels bold */
}
QPushButton:hover {
background-color: #555;
}
QPushButton::icon {
width: 12px; /* Further reduced icon size */
height: 12px; /* Further reduced icon size */
}
QPushButton::icon:active {
width: 12px; /* Further reduced icon size */
height: 12px; /* Further reduced icon size */
}
QCheckBox {
padding: 1px; /* Further reduced padding */
color: #f0f0f0;
}
QGraphicsView {
border: 1px solid #555;
background-color: #3b3b3b;
}
QGroupBox {
border: 1px solid #555;
border-radius: 4px;
margin-top: 3px; /* Further reduced margin */
}
QGroupBox::title {
subcontrol-origin: margin;
subcontrol-position: top left;
padding: 0 2px;
}
QVBoxLayout > QHBoxLayout {
border: 1px solid #555; /* Add border around each slider */
border-radius: 4px;
padding: 1px; /* Further reduced padding */
margin-bottom: 2px; /* Further reduced margin */
}