If you place a block in the footer and hover over it then the block editing link shows as white text on a white background, which is unreadable.

I suppose the right place to fix this would be in block-editing.css, as it shouldn't set only a background colour.

CommentFileSizeAuthor
zen-block_edit_color.patch366 bytesjohn morahan

Comments

johnalbin’s picture

Title: Block editing link in footer is white on white » Block editing link in Zen Classic footer is white on white
Priority: Minor » Normal
Status: Needs review » Fixed

The problem is only in Zen Classic, so the fix should go in that stylesheet.

Add this to your zen-classic.css file:

  #footer *
  {
    color: #FFFFFF;
  }

  #footer .block
  {
    text-align: left;
  }
 
  #footer div.block div.edit
  {
    background-color: #2763A5;
  }

Committed fix to DRUPAL-5 and HEAD.

Anonymous’s picture

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.