為了改善您的使用體驗,本網站正在進行維護,部分功能暫時無法使用。若本站的文件無法解決您的問題,想要向社群發問的話,請到 Twitter 上的 @FirefoxSupport 或 Reddit 上的 /r/firefox 發問,我們的社群成員將很快會回覆您的疑問。

搜尋 Mozilla 技術支援網站

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

了解更多

userChrome.css - Changeing the color of the download-button

  • 3 回覆
  • 4 有這個問題
  • 1 次檢視
  • 最近回覆由 Napos

more options

Hi,

I am trying to use the userChrome.css file to change the color of the download button.

During the normal state I can do that with:

  1. downloads-button {
  color: #E86110 !important; 

}

But I can't seem to find what to specify when I want to change the color of the download button, when it indicates that something are done downloading. I dont know how to change it from the current blue color.

If someone know how to change the color of each different states that the download button have, I would appreciate the help.

Hi, I am trying to use the userChrome.css file to change the color of the download button. During the normal state I can do that with: #downloads-button { color: #E86110 !important; } But I can't seem to find what to specify when I want to change the color of the download button, when it indicates that something are done downloading. I dont know how to change it from the current blue color. If someone know how to change the color of each different states that the download button have, I would appreciate the help.

被選擇的解決方法

Looks like this code is used currently:

  • chrome://browser/skin/browser.css

You can try to override the current fill color and make sure to add the !important flag.

  • fill: #xxxxxx !important;
#downloads-button[attention="success"] > #downloads-indicator-anchor > #downloads-indicator-icon,
#downloads-button[attention="success"] > #downloads-indicator-anchor > #downloads-indicator-progress-outer {
  -moz-context-properties: fill, fill-opacity;
  fill: var(--toolbarbutton-icon-fill-attention);
  fill-opacity: 1;
}
從原來的回覆中察看解決方案 👍 1

所有回覆 (3)

more options

Not sure, you will have to browse through it. Or even pinch some code out. https://github.com/Aris-t2/CustomCSSforFx/issues/2

more options

選擇的解決方法

Looks like this code is used currently:

  • chrome://browser/skin/browser.css

You can try to override the current fill color and make sure to add the !important flag.

  • fill: #xxxxxx !important;
#downloads-button[attention="success"] > #downloads-indicator-anchor > #downloads-indicator-icon,
#downloads-button[attention="success"] > #downloads-indicator-anchor > #downloads-indicator-progress-outer {
  -moz-context-properties: fill, fill-opacity;
  fill: var(--toolbarbutton-icon-fill-attention);
  fill-opacity: 1;
}
more options

Thanks for your help and directions, I will try and see if I can come up with something.


Edit:

After some trying, I was finally able to get pretty much what I wanted, tanks to the help I got and direction :)

I will share the code, if someone else want to do the same in the future. The current colors are just for prototyping, and should be changed :)

I have currently not updated the colors for when an error occurs during the downloading, but it should be possible to do using the links provided by the other messages.

There might be some unnecessary parts, but it works, so I will keep it.

#downloads-button[attention="success"] #downloads-indicator-icon {
  display: visible !important;
}

/* During a download, force display of progress bar */
#downloads-button[attention="success"] #downloads-indicator-progress-area 
{
  display: -moz-box !important;
  visibility: visible !important;
}

/* After something have successfully completed downloading, set the color of the download icon*/
#downloads-button[attention="success"] > #downloads-indicator-anchor > #downloads-indicator-icon,
#downloads-button[attention="success"] > #downloads-indicator-anchor > #downloads-indicator-progress-outer
{
  fill: #D200FF !important;
}

/* Sets the color of the animated arrow that appears when a download is starting*/
#downloads-button[notification="start"] > #downloads-indicator-anchor > #downloads-indicator-icon,
#downloads-notification-anchor[notification="start"] > #downloads-indicator-notification {
   fill: #557508 !important;
}

/*Set the color of the download icon as something is downloading*/
#downloads-button[progress] > #downloads-indicator-anchor > #downloads-indicator-icon,
#downloads-button[progress] > #downloads-indicator-anchor > #downloads-indicator-progress-outer {
  fill: #557508 !important;
}

/* Set the color for the progress bar as something is downloading */
#downloads-button > #downloads-indicator-anchor > #downloads-indicator-progress-outer > #downloads-indicator-progress-inner {
  fill: yellow !important;
}

/* The default color of the download button */
#downloads-button,
#downloads-button[indicator="true"]:not([attention="success"]) #downloads-indicator-icon
{
  display: -moz-box !important;
  visibility: visible !important;
  fill: #E86110 !important;
}

由 Napos 於 修改