Browser UI colour options

Ask for help and post your question on how to use XnView MP.

Moderators: XnTriq, helmut, xnview

Post Reply
jancijanci
Posts: 3
Joined: Thu Sep 09, 2021 8:20 am

Browser UI colour options

Post 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.
color.jpg
User avatar
XnTriq
Moderator & Librarian
Posts: 6336
Joined: Sun Sep 25, 2005 3:00 am
Location: Ref Desk

Re: Browser UI colour options

Post 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 am

Code: Select all

MyThumbListView {
background-color: rgb(143, 143, 143);
}
jancijanci
Posts: 3
Joined: Thu Sep 09, 2021 8:20 am

Re: Browser UI colour options

Post by jancijanci »

Thank you! It was the QListView background just under your suggestion

Code: Select all

QListView{
    background-color: rgb(58, 58, 58);
}   
    
User avatar
XnTriq
Moderator & Librarian
Posts: 6336
Joined: Sun Sep 25, 2005 3:00 am
Location: Ref Desk

Re: Browser UI colour options

Post 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 ToolsSettings…, CreateMulti-page file… etc.

Code: Select all

QListView {
background-color: aqua;
}
MyThumbListView {
background-color: yellow;
}
Post Reply