AnkiWeb should alternate row colors

Is your feature request related to a problem? Please describe.
When trying to find a shared deck with lots of audio, I have to rotate my phone to see the audio column. The problem is, this makes it harder to see which deck has which numbers.

Describe the solution you’d like
A subtle gray color for every other row would improve readability quite a lot.

Describe alternatives you’ve considered
Make the columns rearrangable?

2 Likes

Good idea. I hope dae open-sources the front-end so others can work on suggestions like these.

2 Likes

Me too. But if dae sees this: This requires just a small change. E.g. adding the following css into SharedList.Bobtak-u.css will achieve the desired result:

tr:nth-child(odd) {
  background-color: #f2f2f2;
}

Image

Number 1 with dev console

Number 2 without dev console

2 Likes