Commit 75fbdc40eb6c46a5a1a5d95a314dad0b3eeda299

Authored by Dmitriy Zaporozhets
1 parent b5461e0c

Fix labels input overflow for res lower 1280 in project.edit

Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
app/views/projects/_form.html.haml
... ... @@ -63,7 +63,7 @@
63 63 .control-group
64 64 = f.label :label_list, "Labels", class: 'control-label'
65 65 .controls
66   - = f.text_field :label_list, maxlength: 2000, class: "xxlarge"
  66 + = f.text_field :label_list, maxlength: 2000, class: "span5"
67 67 %p.hint Separate with comma.
68 68  
69 69 %fieldset.features
... ...