martinkadlec0 / Smart-RSS

RSS extension for Opera 15+
http://blog.martinkadlec.eu/post/501-smart-rss-final-v10
MIT License
43 stars 35 forks source link

Improve white text rendering on OSX #10

Closed albertogasparin closed 10 years ago

albertogasparin commented 10 years ago

I would like to ask you if you could add a little "fix" for titles rendering on OSX. Basically, white text is currently rendered bolder on OSX due to Core Libraries implementation. This means the text is less readable. In order to prevent this, you should add another property in the .selected CSS (I think it is the only case where you have white text on dark background):

.selected {
  [...]
  -webkit-font-smoothing: antialiased;
}

Check the difference here: http://jameskoster.co.uk/work/using-webkit-font-smoothing-antialiased-check-your-buttons/

Thanks

martinkadlec0 commented 10 years ago

Thx, I just pushed a new commit with a fix :)