搜尋 Mozilla 技術支援網站

防止技術支援詐騙。我們絕對不會要求您撥打電話或發送簡訊,或是提供個人資訊。請用「回報濫用」功能回報可疑的行為。

Learn More

Change Background Color Of Downloads Window To Dark Grey|Black

  • 2 回覆
  • 17 有這個問題
  • 2 次檢視
  • 最近回覆由 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?

所有回覆 (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!