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)