tracks/app/views/notes/_notes_summary.rhtml
tim madden 3180d88fae tweak to note display on project page to stop wrapping around note link icon
divs for the project note
  adding margin to prevent the note from wrapping around the link icon
2012-04-21 11:14:19 -05:00

12 lines
361 B
Text

<% note = notes_summary -%>
<div class="note_wrapper" id="<%= dom_id(note) %>">
<div class="note_link">
<%= link_to(
image_tag("blank.png", :border => 0),
note,
:title => t('notes.show_note_title'),
:class => "link_to_notes icon",
:id => dom_id(note, "link")) %></div>
<div class="note_note"><%= rendered_note(note) %></div>
</div>
<% note = nil -%>