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 | 26 | = f.label :name do |
27 | 27 | Project name is |
28 | 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 | 32 | - unless @repository.heads.empty? |
... | ... | @@ -39,7 +39,7 @@ |
39 | 39 | Project description |
40 | 40 | %span.light (optional) |
41 | 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 | 45 | - if can?(current_user, :change_public_mode, @project) | ... | ... |