Commit 54f40301 authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets

fixed form input overflow on 1024px res

parent 306ea84e
...@@ -26,7 +26,7 @@ ...@@ -26,7 +26,7 @@
= f.label :name do = f.label :name do
Project name is Project name is
.input .input
= f.text_field :name, placeholder: "Example Project", class: "xxlarge" = f.text_field :name, placeholder: "Example Project", class: "span5"
- unless @repository.heads.empty? - unless @repository.heads.empty?
...@@ -39,7 +39,7 @@ ...@@ -39,7 +39,7 @@
Project description Project description
%span.light (optional) %span.light (optional)
.input .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) - if can?(current_user, :change_public_mode, @project)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment