Highlighting text in the editor makes words disappear?

Permalink
I have a website with white background and dark next.

I made a typography.css file as per instructions and my styles appear to be working in the editor (great!).

However, when I click+drag to highlight text (to say, do something regular like make a link to change some text to an h1, h2...) the highlight colour is either white or my text seems to "disappear" inside of the editor (anything I select becomes invisible)

 
triplei replied on at Permalink Best Answer Reply
triplei
If you are using a browser which understands css3, you should be able to add something like
::selection {
  color:#ff0000;
}


to your typography.css file to change the selection color. You may want to set it to something other than painfully bright red though :)
nicolechung replied on at Permalink Reply
Thanks, this helps a lot!