Qt: make some scrollbars thicker.

How are we supposed to grab them if they are so tiny?
This commit is contained in:
Megamouse 2021-03-17 00:39:25 +01:00
parent 8fcebebae3
commit 6cc5428d5e
3 changed files with 6 additions and 6 deletions

View File

@ -159,12 +159,12 @@ QCheckBox::indicator:disabled {
/* Scrollbars */
QScrollBar {
width: 5px;
width: 10px;
background: #23262d;
}
QTableView QScrollBar {
width: 3px;
width: 10px;
height: 3px;
}

View File

@ -189,11 +189,11 @@ QSlider#sizeSlider::handle:hover {
/* Scrollbars */
QScrollBar {
width: 5px;
width: 10px;
}
QTableView QScrollBar {
width: 3px;
width: 10px;
height: 3px;
}

View File

@ -193,7 +193,7 @@ QSlider#sizeSlider::handle:hover {
/* Scrollbars */
QScrollBar {
width: 5px;
width: 10px;
}
QScrollArea {
@ -201,7 +201,7 @@ QScrollArea {
}
QTableView QScrollBar {
width: 3px;
width: 10px;
height: 3px;
}