Wrap icon with edited time

This commit is contained in:
Alfredo Sumaran 2016-02-29 11:01:28 -05:00
parent a0f440efd3
commit c4b9b2cfcf
2 changed files with 2 additions and 2 deletions

View File

@ -22,7 +22,7 @@ ul.notes {
margin-left: 55px;
}
.note_created_ago, .note_edited_ago {
.note_created_ago, .note-updated-at {
white-space: nowrap;
}

View File

@ -28,7 +28,7 @@
%a{name: dom_id(note), href: "##{dom_id(note)}", title: 'Link here'}
= time_ago_with_tooltip(note.created_at, placement: 'bottom', html_class: 'note_created_ago')
- if note.updated_at != note.created_at
%span
%span.note-updated-at
·
= icon('edit', title: 'edited')
= time_ago_with_tooltip(note.updated_at, placement: 'bottom', html_class: 'note_edited_ago')