Commit 0b0e0225adfc83ed951118b3c3e82167add9fd03
1 parent
2ed5211d
Exists in
master
and in
4 other branches
css fixes
Showing
3 changed files
with
3 additions
and
6 deletions
Show diff stats
app/assets/stylesheets/projects.css.scss
... | ... | @@ -686,7 +686,6 @@ table.highlighttable pre{ |
686 | 686 | width:200px; |
687 | 687 | } |
688 | 688 | |
689 | - | |
690 | 689 | body.project-page #notes-list .note {padding: 10px; border-bottom: 1px solid #eee; overflow: hidden; display: block;} |
691 | 690 | body.project-page #notes-list .note {padding: 10px; border-bottom: 1px solid #eee; overflow: hidden; display: block;} |
692 | 691 | body.project-page #notes-list .note img{float: left; margin-right: 10px;} | ... | ... |
app/views/issues/show.html.haml
app/views/notes/_show.html.haml
... | ... | @@ -2,7 +2,9 @@ |
2 | 2 | = image_tag gravatar_icon(note.author.email), :class => "left", :width => 40, :style => "padding-right:5px;" |
3 | 3 | %div.note-author |
4 | 4 | %strong= note.author_name |
5 | - = time_ago_in_words(note.updated_at) | |
5 | + %cite | |
6 | + = time_ago_in_words(note.updated_at) | |
7 | + ago | |
6 | 8 | - if(note.author_id == current_user.id) || can?(current_user, :admin_note, @project) |
7 | 9 | = link_to 'Remove', [@project, note], :confirm => 'Are you sure?', :method => :delete, :remote => true, :class => "lbutton delete-note right negative" |
8 | 10 | ... | ... |