Commit 4aad057f23a7d517d090ea3f54a48c693bf1b804

Authored by gitlabhq
1 parent 4e55cc67

issues style fixed

app/assets/stylesheets/issues.css.scss
... ... @@ -44,4 +44,7 @@
44 44 }
45 45 }
46 46 .issue:hover .action-links { display:block; }
47   -
  47 +.issue-show-holder {
  48 + width:100%;
  49 + .data p { font-size:16px }
  50 +}
... ...
app/views/issues/show.html.haml
... ... @@ -8,7 +8,7 @@
8 8 %span.tag.today Open
9 9  
10 10 .data
11   - %h4= @issue.title
  11 + %p= @issue.title
12 12  
13 13 - if @issue.author == @issue.assignee
14 14 = image_tag gravatar_icon(@issue.assignee_email), :width => 20, :style => "padding:0 5px;"
... ...