Where did you install Firefox from? Help Mozilla uncover 3rd party websites that offer problematic Firefox installation by taking part in our campaign. There will be swag, and you'll be featured in our blog if you manage to report at least 10 valid reports!

Tìm kiếm hỗ trợ

Tránh các lừa đảo về hỗ trợ. Chúng tôi sẽ không bao giờ yêu cầu bạn gọi hoặc nhắn tin đến số điện thoại hoặc chia sẻ thông tin cá nhân. Vui lòng báo cáo hoạt động đáng ngờ bằng cách sử dụng tùy chọn "Báo cáo lạm dụng".

Learn More

Find Bar background color FF 115 esr

  • 7 trả lời
  • 0 gặp vấn đề này
  • 2 lượt xem
  • Trả lời mới nhất được viết bởi disqus4190

more options

How do I change the background color of the Ctrl+F "Find bar" in FF 115 esr? The up/down search arrows are the same color as the background.

How do I change the background color of the Ctrl+F "Find bar" in FF 115 esr? The up/down search arrows are the same color as the background.

Tất cả các câu trả lời (7)

more options

Try switching to a different theme.

Does it still happen in Troubleshoot Mode?

more options

If you are using CSS code in userChrome.css then this code might be broken.

More info about userChrome.css/userContent.css in case you are not familiar:

more options

zeroknight said

Try switching to a different theme. Does it still happen in Troubleshoot Mode?

Changing themes doesn't help, but it does not happen in Troubleshoot Mode, just have to find the problem. Thanks for the help and God bless.

Được chỉnh sửa bởi disqus4190 vào

more options

cor-el said

If you are using CSS code in userChrome.css then this code might be broken. More info about userChrome.css/userContent.css in case you are not familiar:

I am using userChrome.css and will do some research.

This in fact is the problem:

.toolbarbutton-icon {
   fill: white !important;
   background: transparent !important;

}

What I need is how to change the background color of the "Find Bar", adding it here only changes the background of the icons (up/down arrows and toolbar icons) and I need for the toolbar icons to be white.

Được chỉnh sửa bởi disqus4190 vào

more options

.toolbarbutton-icon {

   fill: white !important;
   background: transparent !important;

}

This is the problem, I need to change the background color of "Find Bar" because I need the toolbar icons to be white.

more options

Rules for the Find bar should be placed in the findbar container

findbar {
background: rgb(xx,xx,xx) !important;
}


more options

cor-el said

Rules for the Find bar should be placed in the findbar container
findbar {
background: rgb(xx,xx,xx) !important;
}


That works, God bless and have a great day.