Currently at http://drupal.org/themes/bluebeach/style.css the foreground colour of the form-text is set, but not the background. This is not good [tm], for people with dark-backgrounds set in theyr clients will be unable to use the forms. (see screenshot for an example)

body, .form-text, .form-password, textarea, th, td (line 20)
{
color: rgb(0, 49, 80);
}

is the offending part. We should either not define the foreground, and leave that to the cleint, or set the background too.

Bèr

CommentFileSizeAuthor
font-background-colour.png8.23 KBBèr Kessels

Comments

bryan kennedy’s picture

Looks like the bluebeach css has been updated. It now reads:

body, .form-text, .form-password, textarea, th, td {
  color: #003150;
}

it should be updated to :

body, .form-text, .form-password, textarea, th, td {
  color: #003150;
  background: #FFF;
}

I beleive this is up to Steven to update.

Bèr Kessels’s picture

This is fixed, indeed.

Anonymous’s picture