Qt: Fix qt scrollbar

This commit is contained in:
Daniel Ruiz de Alegría 2022-01-10 14:08:49 +01:00
parent 8722f0cbac
commit 0a531a9290
No known key found for this signature in database
GPG Key ID: 59667A77E8BFCB6C

View File

@ -5,12 +5,12 @@ QScrollBar:horizontal { max-height: 8px; }
QScrollBar::handle {
padding: 0;
margin: 2px;
border-radius: 99px;
margin: 1px;
border-radius: 3px;
border: 0;
background: rgba(127, 127, 127, .5);
min-height: 10px;
min-width: 10px;
min-height: 20px;
min-width: 20px;
}
QScrollBar::handle:hover { background: rgba(127, 127, 127, 1); }
QScrollBar::handle:pressed { background: palette(highlight); }