From: Dmitriy Zaporozhets Date: Tue, 19 Mar 2013 06:39:26 +0000 (+0200) Subject: fixed form input overflow on 1024px res X-Git-Tag: v5.0.0~37 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=54f40301ff2b3e0c9ef1e9593c634ab8612c12e6;p=wvm%2Fgitlab.git fixed form input overflow on 1024px res --- diff --git a/app/views/projects/_form.html.haml b/app/views/projects/_form.html.haml index 3e82f5260..1267e16c8 100644 --- a/app/views/projects/_form.html.haml +++ b/app/views/projects/_form.html.haml @@ -26,7 +26,7 @@ = f.label :name do Project name is .input - = f.text_field :name, placeholder: "Example Project", class: "xxlarge" + = f.text_field :name, placeholder: "Example Project", class: "span5" - unless @repository.heads.empty? @@ -39,7 +39,7 @@ Project description %span.light (optional) .input - = f.text_area :description, placeholder: "awesome project", class: "xxlarge", rows: 3, maxlength: 250 + = f.text_area :description, placeholder: "awesome project", class: "span5", rows: 3, maxlength: 250 - if can?(current_user, :change_public_mode, @project)