From 59b5c748465b6390af01bc4bfd3f52b6bc6a3e71 Mon Sep 17 00:00:00 2001 From: Auric Vente Date: Fri, 19 Jul 2024 21:26:22 -0600 Subject: [PATCH] Mods --- cromulant/config.py | 2 +- cromulant/window.py | 10 ++++++++++ 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/cromulant/config.py b/cromulant/config.py index 4634141..392f56b 100644 --- a/cromulant/config.py +++ b/cromulant/config.py @@ -49,7 +49,7 @@ class Config: message_box_button_text_color: str = "white" message_box_button_hover_background_color: str = "rgb(66, 66, 66)" message_box_button_hover_text_color: str = "white" - scrollbar_handle_color: str = "rgb(66, 66, 66)" + scrollbar_handle_color: str = "rgb(69, 69, 69)" @staticmethod def prepare() -> None: diff --git a/cromulant/window.py b/cromulant/window.py index 885f1ac..85b2f69 100644 --- a/cromulant/window.py +++ b/cromulant/window.py @@ -189,6 +189,16 @@ class Window: background: {Config.scrollbar_handle_color}; min-height: 20px; }} + + QScrollBar::add-line:vertical {{ + border: none; + background: none; + }} + + QScrollBar::sub-line:vertical {{ + border: none; + background: none; + }} """ Window.scroll_area.setStyleSheet(style)