From ebfc86f1cf72a67481befd87bb45f9e5549b2f2b Mon Sep 17 00:00:00 2001 From: Eudaimon Date: Sat, 23 Apr 2022 11:30:40 +0200 Subject: [PATCH] Added some qt resources --- source/common/gtk4_removed.scss | 50 ++++++++++++++++++++++++++++++++- 1 file changed, 49 insertions(+), 1 deletion(-) diff --git a/source/common/gtk4_removed.scss b/source/common/gtk4_removed.scss index cefd45a..eed9299 100644 --- a/source/common/gtk4_removed.scss +++ b/source/common/gtk4_removed.scss @@ -464,4 +464,52 @@ cursor-handle { } } } - + +//inside scale .color +&.fine-tune { + &.horizontal { + &:dir(ltr), &:dir(rtl) { // specificity bump + padding: 0 0 12px 0; + + > trough { + padding-bottom: 7px; + background-position: 0 -6px; + } + + > trough > slider { + margin-bottom: -15px; + margin-top: 6px; + } + } + } + + &.vertical { + &:dir(ltr) { + padding: 0 0 0 12px; + + > trough { + padding-left: 7px; + background-position: 6px 0; + } + + > trough > slider { + margin-left: -15px; + margin-right: 6px; + } + } + + &:dir(rtl) { + padding: 0 12px 0 0; + + > trough { + padding-right: 7px; + background-position: -6px 0; + } + + > trough > slider { + margin-right: -15px; + margin-left: 6px; + } + } + } + }