From 54f40301ff2b3e0c9ef1e9593c634ab8612c12e6 Mon Sep 17 00:00:00 2001 From: Dmitriy Zaporozhets Date: Tue, 19 Mar 2013 08:39:26 +0200 Subject: [PATCH] fixed form input overflow on 1024px res --- app/views/projects/_form.html.haml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/views/projects/_form.html.haml b/app/views/projects/_form.html.haml index 3e82f526..1267e16c 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)