Hello,

The size of the textfield "Pick a project for -chosen lang- translation: " in the welcome page is 60 (default drupal textfield size) which goes beyond its wrapper, can you reduce it to 30:

file welcome.inc line 123 add "'#size' => 30," :

  $form['project'] = array(
    '#title' => $projects_title,
    '#size' => 30,
    '#description' => t('Alternatively you can <a href="@explore">explore projects</a>.', array('@explore' => url('translate/projects')))
  );

Regards

CommentFileSizeAuthor
#3 l10n_community.css_.patch345 bytesahwebd

Comments

ahwebd’s picture

Or a better solution:
add this to file "l10n_community.css"

#l10n-community-pick-go #edit-project {
width: 75%
}

ahwebd’s picture

ahwebd’s picture

StatusFileSize
new345 bytes

patch:

droplet’s picture

Category: feature » task
Status: Active » Closed (duplicate)