mirror of
https://github.com/TracksApp/tracks.git
synced 2025-12-16 23:30:12 +01:00
divs for the project note adding margin to prevent the note from wrapping around the link icon
12 lines
361 B
Text
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 -%>
|