diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2013-04-23 09:32:02 +0000 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2013-04-23 09:32:02 +0000 |
commit | 75fbdc40eb6c46a5a1a5d95a314dad0b3eeda299 (patch) | |
tree | 8a989379524aa16d34eb068402f75f9401179192 /app | |
parent | b5461e0c56fefea1fd307996a1f517899273c920 (diff) | |
download | gitlab-ce-75fbdc40eb6c46a5a1a5d95a314dad0b3eeda299.tar.gz |
Fix labels input overflow for res lower 1280 in project.edit
Diffstat (limited to 'app')
-rw-r--r-- | app/views/projects/_form.html.haml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/projects/_form.html.haml b/app/views/projects/_form.html.haml index eb5fa1755b4..4d635e3dc68 100644 --- a/app/views/projects/_form.html.haml +++ b/app/views/projects/_form.html.haml @@ -63,7 +63,7 @@ .control-group = f.label :label_list, "Labels", class: 'control-label' .controls - = f.text_field :label_list, maxlength: 2000, class: "xxlarge" + = f.text_field :label_list, maxlength: 2000, class: "span5" %p.hint Separate with comma. %fieldset.features |