QProgressBar styles

This commit is contained in:
BarsTiger
2022-12-25 12:02:39 +02:00
parent 90ea60a3ac
commit 762fc89c5a

View File

@@ -284,6 +284,20 @@ QSlider::handle:horizontal:hover {
QSlider::handle:horizontal:pressed { QSlider::handle:horizontal:pressed {
background-color: rgba(191, 191, 191, 0); background-color: rgba(191, 191, 191, 0);
} }
QProgressBar {
text-align: center;
color: white;
border-width: 1px;
border-radius: 10px;
border-color: rgba(58, 58, 58, 0.5);
border-style: inset;
background-color: rgba(32, 32, 32, 0.5);
}
QProgressBar::chunk {
background-color: rgba(132, 132, 132, 0.5);
border-radius: 5px;
}
""" """
menupage_b = """ menupage_b = """
@@ -618,6 +632,20 @@ QSlider::handle:horizontal:hover {
QSlider::handle:horizontal:pressed { QSlider::handle:horizontal:pressed {
background-color: #bfbfbf; background-color: #bfbfbf;
} }
QProgressBar {
text-align: center;
color: white;
border-width: 1px;
border-radius: 10px;
border-color: #3a3a3a;
border-style: inset;
background-color: #202020;
}
QProgressBar::chunk {
background-color: #848484;
border-radius: 5px;
}
""" """
menupage_g = """ menupage_g = """