This commit is contained in:
Auric Vente 2024-07-19 21:26:22 -06:00
parent 45588cbe2a
commit 59b5c74846
2 changed files with 11 additions and 1 deletions

View File

@ -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:

View File

@ -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)