In the main translation overview table, the table cells have <td> elements with class="status". Unfortunately the pixture_reloaded theme styles such elements with a background image of a big, fat "i"-in-a-circle symbol. It makes the table look pretty awful - please see the screenshot.

The fix is easy and is in the attached patch.

Thanks,
Andrew.

Support from Acquia helps fund testing for Drupal Acquia logo

Comments

Andrew Schulman’s picture

I see that the same problem also occurs in the Translation Assignments tables. Here's a revised patch that addresses both cases.

miro_dietiker’s picture

I think we shouldn't fix it that way.
Either add different class or better add more qualification to the pixture selector. ".status" is simply too general.

miro_dietiker’s picture

Status: Needs review » Needs work
Andrew Schulman’s picture

Version: 6.x-2.4 » 7.x-2.x-dev
Status: Needs work » Needs review
FileSize
2.59 KB
2.54 KB

OK, here's a revised pair of patches against current git 6.x-2.x and master, that fixes this problem. The patches just rename the 'status' CSS class to 'translation-status'. This removes the conflict with pixture, and should be specific enough to avoid conflicts with other themes as well.

'status' is, as you say, a pretty general name for a CSS class. A more specific name seems better in order to avoid other conflicts.