xyl0n / iris

A simple, flat and bold Gtk theme.
GNU General Public License v3.0
277 stars 27 forks source link

Fix white background on selected text in Firefox. #106

Closed jahed closed 9 years ago

jahed commented 9 years ago

This made it hard to see what was selected on pages with white backgrounds (i.e. most of them).

Now it'll use the theme orange for the background color and an off-white text/foreground color.

jahed commented 9 years ago

Going to close this. Will need to debug more on other GTK2 apps.

xyl0n commented 9 years ago

Hi, The easiest way to "fix" this would be to create a userContent.css file that goes inside the .mozilla/firefox/[random numbers and letters].default/chrome directory. You would have to put something like the following inside:

::-moz-selection { color: white !important; /Colour of text/ background: red !important; /Highlighting colour/ }

We could distribute this along with a firefox theme in future iris versions.