fixed form input overflow on 1024px res

5-0-stable
Dmitriy Zaporozhets 2013-03-19 08:39:26 +02:00
parent 306ea84e85
commit 54f40301ff
1 changed files with 2 additions and 2 deletions

View File

@ -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)