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

Change Background Color Of Downloads Window To Dark Grey|Black

  • 2 trả lời
  • 17 gặp vấn đề này
  • 4 lượt xem
  • Trả lời mới nhất được viết bởi Ace.Frahm

more options

The background of the downloads window is BLINDINGLY white.

I want to turn it dark grey or black. Is there some CSS or theme I write to control what it looks like? An add-in maybe?

The background of the downloads window is BLINDINGLY white. I want to turn it dark grey or black. Is there some CSS or theme I write to control what it looks like? An add-in maybe?

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

more options

Add code to userChrome.css below the @namespace line.
You can choose your preferred background color (background-color: #rrggbb) and text color (color: #rrggbb).

@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */
#downloadView {background-color: #888 !important;}


See also:

more options

Thank you, that was just what I needed to know!