tr.revision-current {
  background-color: #ffffcc !important; /* Highlight current version. "!important" overrides odd/even. */
  /* font-size: 115%; /* */
}

This CSS color makes text unreadable on light-on-dark websites. Furthermore, the !important declaration makes it impossible to overwrite this change in the theme stylesheet.

Options:
- remove colour all together
- remove !important decalration, and leave it up to the site admin to fix it in the theme stylesheet.
- add "color: #000;" to make the text readable. Either add another !important dec. to the color, or remove it from the background-color.

Comments

nancydru’s picture

Status: Active » Fixed

You are correct, it should have been commented before committing like the other examples. It was there for testing on my site.

nancydru’s picture

Status: Fixed » Closed (fixed)

Included in 6.x-1.0-rc2 and 5.x-1.2.

naught101’s picture

Thank you :)