Fix for Dark Fusion theme
Moderators: helmut, XnTriq, xnview
Fix for Dark Fusion theme
Please make the scrollbar in the dark theme more "noticeable". You can, for example, make the background brighter or the slider itself. When there are many files in a folder, it is almost impossible to see it.
Re: Fix for Dark Fusion theme
I think this is designed to look like this.If it were brighter it might be too eye-catching. The color is very subtle and the slightest misstep could destroy the harmony.
Re: Fix for Dark Fusion theme
Unfortunately, it is practically invisible. I have to turn the mouse wheel and look for at least some movement in order to understand where he is.seabirdr wrote: Fri May 28, 2021 3:16 pm I think this is designed to look like this.If it were brighter it might be too eye-catching. The color is very subtle and the slightest misstep could destroy the harmony.
Re: Fix for Dark Fusion theme
As a workaround, you could add the following lines to View → Theme → Dark theme → style_sheet_win.qss:MARK2580 wrote: Thu May 27, 2021 2:32 amPlease make the scrollbar in the dark theme more "noticeable".
Code: Select all
QScrollBar::handle {
background-color: rgb(128, 128, 128);
}
QScrollBar::handle:hover {
background-color: rgb(153, 153, 153);
}
QScrollBar::handle:pressed {
background-color: rgb(204, 204, 204);
}
Re: Fix for Dark Fusion theme
This is a bad workaround. "dark theme" is terrible, I like Fusion better.XnTriq wrote: Sat May 29, 2021 7:00 pmAs a workaround, you could add the following lines to View → Theme → Dark theme → style_sheet_win.qss:MARK2580 wrote: Thu May 27, 2021 2:32 amPlease make the scrollbar in the dark theme more "noticeable".
Code: Select all
QScrollBar::handle { background-color: rgb(128, 128, 128); } QScrollBar::handle:hover { background-color: rgb(153, 153, 153); } QScrollBar::handle:pressed { background-color: rgb(204, 204, 204); }
Re: Fix for Dark Fusion theme
Changes to style_sheet_win.qss are applied to all themes including Fusion dark (restart required).MARK2580 wrote: Sun May 30, 2021 1:45 amThis is a bad workaround. "dark theme" is terrible, I like Fusion better.
Here's an even brighter version:
Code: Select all
QScrollBar::handle {
background-color: rgb(153, 153, 153);
border-color: rgb(102, 102, 102);
}
QScrollBar::handle:hover {
background-color: rgb(170, 170, 170);
border-color: rgb(119, 119, 119);
}
QScrollBar::handle:pressed {
background-color: rgb(187, 187, 187);
border-color: rgb(136, 136, 136);
}
Code: Select all
QScrollBar::handle {
background-color: #999;
border-color: #666;
}
QScrollBar::handle:hover {
background-color: #aaa;
border-color: #777;
}
QScrollBar::handle:pressed {
background-color: #bbb;
border-color: #888;
}
Re: Fix for Dark Fusion theme
For me, changes only occur in the "dark" theme, when I select Fusion everything returns as it was. Yes, I restarted the program more than once.