See that some are read and some are unread? Help me fix that up. Post some sample CSS here and I’ll be glad to pick the best one, or integrate some of the ideas.
My goal is to make the distinction between read and unread a bit more obvious, while preserving readability. I’m talking about the background gradient difference between the two, making it a bit more obvious when a story goes from unread to read, etc.
That orange bar (which changes color depending on the Feed’s favicon) is here to stay. Not only does it demo well, but I love how it divides stories. I meant more of the gray story title and better distinguishing between read and unread stories.
#story\_pane .read .NB-feed-story-title {
opacity: .7;
-webkit-mask-image: -webkit-gradient(
linear, right top, left bottom,
from(rgba(0,0,0,0)), to(rgba(0,0,0,1))
);
}
Although I would like this to not apply to the article I’m currently reading. Couldn’t you add a .focus/.reading class in there?
I realise this will cut browser compatibility, I bet that could be solved with some rethinking or maybe some pseudo-elements. Will have to think about it a bit.
This looks good, but the reason I didn’t fade out read stories is that it then becomes hard to read them. I think a fuller color change would work better. It just needs contrast, more contrast than it has now.