Commit 65e4ad31476978e7f1c5cef41eb5a21e6068cbb2

Authored by Valery Sizov
1 parent 3230577c

fixed design new issue form

app/assets/stylesheets/projects.css.scss
... ... @@ -212,3 +212,7 @@ input.git_clone_url {
212 212 #issue_assignee_id {
213 213 width:300px;
214 214 }
  215 +
  216 +#new_issue_dialog textarea{
  217 + height: 100px;
  218 +}
... ...
app/views/issues/_form.html.haml
... ... @@ -23,7 +23,7 @@
23 23  
24 24 .clearfix
25 25 = f.label :title
26   - .input= f.text_area :title, :maxlength => 255, :class => "xlarge"
  26 + .input= f.text_area :title, :maxlength => 255, :class => "xxlarge"
27 27 .actions
28 28 = f.submit 'Save', :class => "primary btn"
29 29  
... ...