From cc761f754c89e1ffa32b3e13fbf06ae4f956c07a Mon Sep 17 00:00:00 2001 From: Nikita Date: Wed, 25 Jul 2018 18:13:57 -0400 Subject: [PATCH] Color filler for the QSlider (#100) --- qdarkstyle/style.qss | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/qdarkstyle/style.qss b/qdarkstyle/style.qss index 399c38dce..2e8405aeb 100644 --- a/qdarkstyle/style.qss +++ b/qdarkstyle/style.qss @@ -961,6 +961,14 @@ QSlider::handle:horizontal { border-radius: 9px; } +QSlider::sub-page:horizontal { + border: 1px solid #565a5e; + height: 4px; + background: #3daee9; + margin: 0px; + border-radius: 2px; +} + QSlider::groove:vertical { border: 1px solid #565a5e; width: 4px; @@ -978,6 +986,14 @@ QSlider::handle:vertical { border-radius: 9px; } +QSlider::sub-page:vertical { + border: 1px solid #565a5e; + width: 4px; + background: #3daee9; + margin: 0px; + border-radius: 3px; +} + QToolButton { background-color: transparent; border: 1px transparent #76797C;