CSS selector for "search in tab" #1686
-
Hi, in the past I have been using original GoldenDict with a qt-style.css to theme the program like Solarized Light. Unfortunately I am not able to style "search in tab" (see image), which remains white. Can someone please provide me a CSS selector to style it? Kind regards, Jörg |
Beta Was this translation helpful? Give feedback.
Answered by
shenlebantongying
Jul 13, 2024
Replies: 1 comment 1 reply
-
The class of the search panel is Sadly, it appears that Qt stylesheet doesn't work with derived classes, some changes are needed to directly modify it. This can be considered as a bug. However, changing the background of the entire app still works. QWidget {
background-color: #fdf6e3;
} |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
jra66
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The class of the search panel is
SearchPanel
.Sadly, it appears that Qt stylesheet doesn't work with derived classes, some changes are needed to directly modify it. This can be considered as a bug.
However, changing the background of the entire app still works.