I'm using the 6.x-2.x-dev, and for some reason the output display is really off. It outputs a table that displays the folders and files in alternating rows of light and dark backgrounds. However, the rows in the "middle" column, displaying the file and folder names, only has a solid white background - not contrasting rows. Is there a way to fix this? I'm attaching a picture so you can see what I'm talking about.
| Comment | File | Size | Author |
|---|---|---|---|
| Screenshot.png | 7.29 KB | maindrain |
Comments
Comment #1
maindrain commentedI fixed it. Apparently it was a theme issue missing a css definition for tables. I was using the twilight theme. If anyone has the same issue modify the css table definitions to this:
tr.odd td.active, tr.odd td {
background-color: #152130;
}
tr.even td.active, tr.even td {
background-color: #2b354d;
}
Comment #2
Yoran commentedComment #3
knnniggett commentedI know this topic is old, but could someone post specific steps on how to make the css table definition modifications mentioned in this thread?
Seems I've been having the same issue on my Drupal site when using the twilight theme.