Commit 54f40301ff2b3e0c9ef1e9593c634ab8612c12e6
1 parent
306ea84e
Exists in
master
and in
4 other branches
fixed form input overflow on 1024px res
Showing
1 changed file
with
2 additions
and
2 deletions
Show diff stats
app/views/projects/_form.html.haml
@@ -26,7 +26,7 @@ | @@ -26,7 +26,7 @@ | ||
26 | = f.label :name do | 26 | = f.label :name do |
27 | Project name is | 27 | Project name is |
28 | .input | 28 | .input |
29 | - = f.text_field :name, placeholder: "Example Project", class: "xxlarge" | 29 | + = f.text_field :name, placeholder: "Example Project", class: "span5" |
30 | 30 | ||
31 | 31 | ||
32 | - unless @repository.heads.empty? | 32 | - unless @repository.heads.empty? |
@@ -39,7 +39,7 @@ | @@ -39,7 +39,7 @@ | ||
39 | Project description | 39 | Project description |
40 | %span.light (optional) | 40 | %span.light (optional) |
41 | .input | 41 | .input |
42 | - = f.text_area :description, placeholder: "awesome project", class: "xxlarge", rows: 3, maxlength: 250 | 42 | + = f.text_area :description, placeholder: "awesome project", class: "span5", rows: 3, maxlength: 250 |
43 | 43 | ||
44 | 44 | ||
45 | - if can?(current_user, :change_public_mode, @project) | 45 | - if can?(current_user, :change_public_mode, @project) |