Commit 38e32780 authored by Phil Hughes's avatar Phil Hughes

Hides current user icon on mobile

parent 3c2b0e75
......@@ -20,6 +20,12 @@ ul.notes {
.timeline-content {
margin-left: 55px;
&.timeline-content-form {
@media (max-width: $screen-sm-max) {
margin-left: 0;
}
}
}
.note-created-ago, .note-updated-at {
......
%ul#notes-list.notes.main-notes-list.timeline
= render "projects/notes/notes"
%li.timeline-entry
.timeline-icon
.timeline-icon.hidden-xs.hidden-sm
- if can? current_user, :create_note, @project
%a.author_link{ href: user_path(current_user) }
= image_tag avatar_icon(current_user), alt: current_user.to_reference, class: 'avatar s40'
.timeline-content
.timeline-content.timeline-content-form
.js-main-target-form
- if can? current_user, :create_note, @project
= render "projects/notes/form", view: diff_view
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment