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

搜尋 Mozilla 技術支援網站

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

了解更多

Dark theme in Linux screws up Firefox 4.0, help with userContent.css file

  • 2 回覆
  • 20 有這個問題
  • 29 次檢視
  • 最近回覆由 Aleksej

more options

OS: Fedora 14 x86_64 / Gnome 2.3x Problem with: Firefox 4.0

Using dark gtk themes changes the background color of common form controls (input boxes, text boxes, radio buttons, etc...) into the same dark color used in the theme, so you end up with dark controls with black text, which makes them unreadable.

While searching I found that there's a way to make Firefox override the system colors, and that is by creating a userContent.cs file.

Here's the userContent.css file:

===============

body {

background-attachment: scroll !important;

}

input {

border: 2px inset white;

background-color: white;

color: black;

-moz-appearance: none !important;

}

textarea {

border: 2px inset white;

background-color: white;

color: black;

-moz-appearance: none !important;

}

select {

border: 2px inset white;

background-color: white;

color: black;

-moz-appearance: none !important;

}

input[type="radio"],

input[type="checkbox"] {

border: 2px inset white ! important;

background-color: white ! important;

color: ThreeDFace ! important;

-moz-appearance: none !important;

}

.*|*::-moz-radio {

background-color: white;

-moz-appearance: none !important;

}

button, input[type="reset"], input[type="button"], input[type="submit"] {

border: 2px outset white;

background-color: #eeeeee;

color: black;

-moz-appearance: none !important;

}

body {

background-color: white;

color: black;

display: block;

margin: 8px;

-moz-appearance: none !important;

}

===============

This css code fixes text boxes, input boxes, etc... but I still have dark radio buttons, dark check boxes, and dark drop down menus, does anyone know what might be causing this problem?


Examples: http://i901.photobucket.com/albums/ac211/0xGFX007/001.png

http://i901.photobucket.com/albums/ac211/0xGFX007/002.png

OS: Fedora 14 x86_64 / Gnome 2.3x Problem with: Firefox 4.0 Using dark gtk themes changes the background color of common form controls (input boxes, text boxes, radio buttons, etc...) into the same dark color used in the theme, so you end up with dark controls with black text, which makes them unreadable. While searching I found that there's a way to make Firefox override the system colors, and that is by creating a userContent.cs file. Here's the userContent.css file: =========================== body { background-attachment: scroll !important; } input { border: 2px inset white; background-color: white; color: black; -moz-appearance: none !important; } textarea { border: 2px inset white; background-color: white; color: black; -moz-appearance: none !important; } select { border: 2px inset white; background-color: white; color: black; -moz-appearance: none !important; } input[type="radio"], input[type="checkbox"] { border: 2px inset white ! important; background-color: white ! important; color: ThreeDFace ! important; -moz-appearance: none !important; } .*|*::-moz-radio { background-color: white; -moz-appearance: none !important; } button, input[type="reset"], input[type="button"], input[type="submit"] { border: 2px outset white; background-color: #eeeeee; color: black; -moz-appearance: none !important; } body { background-color: white; color: black; display: block; margin: 8px; -moz-appearance: none !important; } =========================== This css code fixes text boxes, input boxes, etc... but I still have dark radio buttons, dark check boxes, and dark drop down menus, does anyone know what might be causing this problem? Examples: http://i901.photobucket.com/albums/ac211/0xGFX007/001.png http://i901.photobucket.com/albums/ac211/0xGFX007/002.png

所有回覆 (2)

more options

Try to ask in this mozillaZine forum thread about "Fx4 .css tweaks":

more options

FWIW, an alternative to going back to a light theme for whatever reason: there is a theme with several variations called "Shiki-Colors", in which only half of the stuff is dark.