[minor] color for qstatusbar missing

This commit is contained in:
Marcel Paffrath 2017-09-21 14:26:35 +02:00
parent 370e8a7074
commit b465ba2111
2 changed files with 10 additions and 0 deletions

View File

@ -252,3 +252,8 @@ background-color:rgba(230, 230, 230, 255);
QProgressBar::chunk{
background-color:qlineargradient(spread:reflect, x1:0, y1:0, x2:0.5, y2:0, stop:0 transparent, stop:1 rgba(0, 70, 180, 150));
}
QStatusBar{
background-color: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, stop:0 rgba(235, 235, 235, 255), stop:1 rgba(230, 230, 230, 255));
color: rgba(0, 0, 0, 255);
}

View File

@ -251,3 +251,8 @@ background-color:rgba(60, 60, 70, 255);
QProgressBar::chunk{
background-color:qlineargradient(spread:reflect, x1:0, y1:0, x2:0.5, y2:0, stop:0 transparent, stop:1 rgba(0, 150, 190, 255));
}
QStatusBar{
background-color: qlineargradient(spread:reflect, x1:0, y1:0, x2:0, y2:0.5, stop:0 rgba(70, 70, 80, 255), stop:1 rgba(60, 60, 70, 255));
color: rgba(255, 255, 255, 255);
}