Page 1 of 1
Browser UI colour options
Posted: Thu Sep 09, 2021 9:47 am
by jancijanci
Hi everyone, with the help of many posts I managed to adjust the UI colors except one final area, which I cant find a setting for in the settings.
I marked it in a green outline in the attached picture.
Can anyone please advise where the setting for that area is?
Thank you very much.
Re: Browser UI colour options
Posted: Thu Sep 09, 2021 12:30 pm
by XnTriq
Welcome to the forum, jancijanci (-:
jancijanci wrote: Thu Sep 09, 2021 9:47 amCan anyone please advise where the setting for that area is?
This might be what you're looking for:
XnTriq wrote: Wed Oct 08, 2014 2:15 amCode: Select all
MyThumbListView {
background-color: rgb(143, 143, 143);
}
Re: Browser UI colour options
Posted: Thu Sep 09, 2021 1:59 pm
by jancijanci
Thank you! It was the QListView background just under your suggestion
Code: Select all
QListView{
background-color: rgb(58, 58, 58);
}
Re: Browser UI colour options
Posted: Thu Sep 09, 2021 8:30 pm
by XnTriq
jancijanci wrote: Thu Sep 09, 2021 1:59 pmThank you! It was the QListView background just under your suggestion
Oh, I see. I was assuming that your intention was to change only the background color of the thumbnail pane.
As you probably know,
QListView is used for styling the thumbnail pane as well as the panels in
Tools →
Settings…,
Create →
Multi-page file… etc.
Code: Select all
QListView {
background-color: aqua;
}
MyThumbListView {
background-color: yellow;
}