Are you using stock Docker compose setup?

Yes, latest update (v21.03-1870fe172)


Describe the problem you’re having:

Selected rss-feed or node css-color is same as background in night* themes: text is not visible. Happened during the latest update, was fine before.

Include steps to reproduce the problem:

Select a node with night-theme enabled: node-text is gone.

There’s an error in line 563 of the night.css file (and also in the light.css file at the same point)

The line currently reads

body.ttrss_main #feeds-holder #feedTree .dijitTreeNode .dijitTreeRow.dijitTreeRowSelected {

It should read

body.ttrss_main #feeds-holder #feedTree .dijitTreeNode .dijitTreeRow. dijitTreeRowSelected {

(In other words, there’s a space missing.)

I don’t use Docker so, for me at least, it’s an easy fix to add the space back in. Since you’re using a Docker image, I suspect you’ll need to wait for the next Git update (unless someone with more knowledge than me can suggest how to edit a file within a container) .

not really, here’s an actual fix though: https://git.tt-rss.org/fox/tt-rss/commit/f81a57938668f25b3118a36e7865dfcdc34439c7

thanks for reporting