We're calling on all EU-based Mozillians with iOS or iPadOS devices to help us monitor Apple’s new browser choice screens. Join the effort to hold Big Tech to account!

Cerca nel supporto

Attenzione alle mail truffa. Mozilla non chiederà mai di chiamare o mandare messaggi a un numero di telefono o di inviare dati personali. Segnalare qualsiasi attività sospetta utilizzando l'opzione “Segnala abuso”.

Ulteriori informazioni

Questa discussione è archiviata. Inserire una nuova richiesta se occorre aiuto.

After updating to Version 29.0.1, high contrast no longer works.

  • 1 risposta
  • 13 hanno questo problema
  • 8 visualizzazioni
  • Ultima risposta di Gingerbread Man

more options

I use Windows 7's High Contrast frequently (it is much easier on my eyes). After Firefox updated to Version 29.0.1, the browser no longer displayed web pages in high contrast (white text on black background). Is there a way to fix this? (I am now back to using Version 28, which works correctly)

I use Windows 7's High Contrast frequently (it is much easier on my eyes). After Firefox updated to Version 29.0.1, the browser no longer displayed web pages in high contrast (white text on black background). Is there a way to fix this? (I am now back to using Version 28, which works correctly)

Tutte le risposte (1)

more options

Firefox 28 exposes your system to security vulnerabilities.


You can override website colors under Options → Content → Colors.

I don't recommend it though. That also hides background images, which some sites use to display information that's essential to navigation. There are two methods that are preferable to the above:

Method 1

  1. Install the NoSquint add-on.
  2. Open the Add-ons Manager (Ctrl+Shift+A; Mac: Command+Shift+A), then the Extensions category.
  3. Next to the NoSquint entry, click the Options button.
  4. Click the Colors tab. Check whatever options you're interested and set the colors, but make sure "Disable background images" remains unchecked.

Method 2

  1. Install Stylish and restart Firefox when prompted.
  2. Click the ≡ Menu Button and choose Add-ons.
  3. In the Add-ons Manager, click User Styles on the left.
  4. Click the Write New Style button at the top. Paste the either of the following styles in the text box, give the style a name, then click the Save button.
    • You can then toggle the style on or off by clicking the Stylish icon on the toolbar.

@-moz-document url-prefix("http://"), url-prefix("https://") {
/* Dark background and light text. For more color names, see http://www.w3schools.com/HTML/html_colornames.asp */

* { background-color: rgb(20,20,20) !important; color: whitesmoke !important; }

a:link { color: royalblue !important; }
a:visited { color: blue !important; }
a:hover { color: lightblue !important; }
a:active { color: red !important; }

}

@-moz-document url-prefix("http://"), url-prefix("https://") {

/* Light background and dark text. For more color names, see http://www.w3schools.com/HTML/html_colornames.asp */
* { background-color: whitesmoke !important; color: rgb(20,20,20) !important; }

a:link { color: royalblue !important; }
a:visited { color: blue !important; }
a:hover { color: dodgerblue !important; }
a:active { color: red !important; }
 
}

If you don't want to install an add-on, you can use the userContent.css file instead, but I don't recommend it.

Modificato da Gingerbread Man il