03-31-2018 04:51 PM
The coloring for the feedback stars makes them incredibly hard to see on my screen. It would be much easier to see if the color gray used was a bit darker. I've attached a picture for reference. I use Google Chrome.
03-31-2018 07:10 PM
Agreed, at 1st I thought they stopped using them. I am guessing that less and less bother to leave feedback overall since the change (at least it seems that way to me based on sold and feedback recvd)
04-08-2018 11:47 AM
Highly doubtful eBay will be fixing that for you as they have pretty much disowned DSRs.
You can fix it yourself via manipulation with very simple CSS in Firefox browser with Stylish addon (or in Firefox using the usercontent.css file method).
The following style snippet makes the unmarked feedback stars a darker gray:
@-moz-document url-prefix('https://www.ebay.com/fdbk/leave_feedback') { .starrating input[type="radio"]:checked ~ input + label:before {color: #999;} }
If the #999 is changed to #AAF the color is a light blue, and so on - colors are hexadecimal RGB colors. (the original value eBay uses for the faint gray stars is #DDD)
I *think* the same style can be plugged into the Stylish addon in Chrome also.
Once Stylish is installed and a basic ruleset called something like "ebay fixups" (or whatever) is created, it is trivial to just paste snippets like that into the ruleset, and smack down another annoyance.
There is no "easier button" method I'm aware of.