What is the CSS I need to override the background of the search selection button?
Firefox updated to 151.0 last yesterday and now the background of the search selection box has changed color to white from its earlier setting. I have tried a bunch of things but cannot find the CSS needed to restore it to what it was (it was overridden with an image). The image below shows the new, white, version, and what I am trying to do is restore it so that it is overridden with the same background image as the rest of the header. What is the rule needed to override the background of this new box (the box with the colorful "G" and downward caret)?
被選擇的解決方法
Finally found it.
.searchmode-switcher
{
--button-background-color: none !important;
}
從原來的回覆中察看解決方案
👍 0
所有回覆 (1)
選擇的解決方法
Finally found it.
.searchmode-switcher
{
--button-background-color: none !important;
}