From c4b9b2cfcfae5f7ce4e4c0fd41caf012812f58b1 Mon Sep 17 00:00:00 2001 From: Alfredo Sumaran Date: Mon, 29 Feb 2016 11:01:28 -0500 Subject: Wrap icon with edited time --- app/assets/stylesheets/pages/notes.scss | 2 +- app/views/projects/notes/_note.html.haml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/assets/stylesheets/pages/notes.scss b/app/assets/stylesheets/pages/notes.scss index ae9189811c7..6cb6adb480c 100644 --- a/app/assets/stylesheets/pages/notes.scss +++ b/app/assets/stylesheets/pages/notes.scss @@ -22,7 +22,7 @@ ul.notes { margin-left: 55px; } - .note_created_ago, .note_edited_ago { + .note_created_ago, .note-updated-at { white-space: nowrap; } diff --git a/app/views/projects/notes/_note.html.haml b/app/views/projects/notes/_note.html.haml index e858c412836..52972576aff 100644 --- a/app/views/projects/notes/_note.html.haml +++ b/app/views/projects/notes/_note.html.haml @@ -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') -- cgit v1.2.3