Page 1 of 1
Dark theme: Black on Black - the text isn't visible
Posted: Wed May 08, 2019 10:36 am
by m.Th.
Steps:
1. Apply the Dark theme.
2. Write a text to search in Quick Search box here: (in the red oval)

- XnView Quick Search.jpg (12.07 KiB) Viewed 1713 times
Expected: The text should be white (visible)
Actual: The text is black on the near black background of the theme. You can see it if you magnify the image and change Gamma to some extreme values (eg. 4.3).
Re: Dark theme: Black on Black - the text isn't visible
Posted: Thu May 23, 2019 9:12 am
by xnview
in your theme, edit
SearchLineEdit {
background-color: transparent;
border: 1px solid black;
padding: 0px;
color: white;
}
i'll change it
Re: Dark theme: Black on Black - the text isn't visible
Posted: Fri Sep 20, 2019 3:03 pm
by m.Th.
Hi Pierre,
Ping............
Not fixed in 0.94b1
Re: Dark theme: Black on Black - the text isn't visible
Posted: Mon Sep 23, 2019 1:47 pm
by xnview
yes will be changed for final release
Re: Dark theme: Black on Black - the text isn't visible
Posted: Mon Sep 30, 2019 8:12 am
by m.Th.
Still present in 0.94b2
Re: Dark theme: Black on Black - the text isn't visible
Posted: Mon Sep 30, 2019 9:52 am
by xnview
m.Th. wrote: Mon Sep 30, 2019 8:12 am
Still present in 0.94b2
in .css, do you have that
Code: Select all
SearchLineEdit {
background-color: transparent;
border: 1px solid black;
padding: 0px;
color: white;
}
Re: Dark theme: Black on Black - the text isn't visible
Posted: Fri Oct 04, 2019 9:28 am
by m.Th.
xnview wrote: Mon Sep 30, 2019 9:52 am
m.Th. wrote: Mon Sep 30, 2019 8:12 am
Still present in 0.94b2
in .css, do you have that
Code: Select all
SearchLineEdit {
background-color: transparent;
border: 1px solid black;
padding: 0px;
color: white;
}
Ok, I debugged and I think that I found it:
If I go in UI subfolder and I open the style_sheet.qss, then it is as you describe it.
But if I go to View \ Theme \ Dark Theme - in the editor which appears, in the style_sheet.qss tab appears just:
Code: Select all
SearchLineEdit{
background-color: transparent;
border: 1px solid black;
padding: 0px;
}
SearchLineEdit>QLineEdit{
background-color: rgb(160, 160, 160);
}
The color:white is missing.