]> source.dussan.org Git - redmine.git/commitdiff
Make issue tabs DOM more consistent (#36429).
authorGo MAEDA <maeda@farend.jp>
Mon, 17 Jan 2022 13:53:35 +0000 (13:53 +0000)
committerGo MAEDA <maeda@farend.jp>
Mon, 17 Jan 2022 13:53:35 +0000 (13:53 +0000)
Patch by Felix Schäfer.

git-svn-id: http://svn.redmine.org/redmine/trunk@21367 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/views/issues/tabs/_changesets.html.erb
app/views/issues/tabs/_history.html.erb
app/views/issues/tabs/_time_entries.html.erb

index f869a5da2503c62c567acc60f5e826a88a7007dc..b06fd4b7e5e3bf574f650a2efeaec8284cc7494e 100644 (file)
@@ -1,6 +1,7 @@
 <% @changesets.each do |changeset| %>
   <div id="changeset-<%= changeset.id %>" class="changeset journal">
-    <h4>
+    <div class="note">
+    <h4 class='note-header'>
       <%= avatar(changeset.user, :size => "24") %>
       <%= authoring changeset.committed_on, changeset.author, :label => :label_added_time_by %>
     </h4>
@@ -19,6 +20,7 @@
     <div class="wiki changeset-comments">
       <%= format_changeset_comments changeset %>
     </div>
+    </div>
   </div>
   <%= call_hook(:view_issues_history_changeset_bottom, { :changeset => changeset }) %>
 <% end %>
index 0769f57254095435dd7dd1a8c83760788016e4d4..4b908acb560ef814d6b2ec1106dfa15c83f2abd3 100644 (file)
@@ -6,7 +6,7 @@
 <% reply_links = issue.notes_addable? -%>
 <% for journal in journals %>
   <div id="change-<%= journal.id %>" class="<%= journal.css_classes %>">
-    <div id="note-<%= journal.indice %>">
+    <div id="note-<%= journal.indice %>" class="note">
     <div class="contextual">
       <span class="journal-actions"><%= render_journal_actions(issue, journal, :reply_links => reply_links) %></span>
       <a href="#note-<%= journal.indice %>" class="journal-link">#<%= journal.indice %></a>
index c34edc0749acb8271c2b37740696ea8eb0167db7..1807475bd45f83ec0f348435033a1409d06f35b2 100644 (file)
@@ -1,7 +1,9 @@
 <% for time_entry in time_entries%>
   <div id="time-entry-<%= time_entry.id %>" class="time_entry journal">
+    <div class="note">
     <% if time_entry.editable_by?(User.current) -%>
       <div class="contextual">
+        <span class="journal-actions">
         <%= link_to l(:button_edit), edit_time_entry_path(time_entry),
                     :title => l(:button_edit),
                     :class => 'icon-only icon-edit' %>
                     :method => :delete,
                     :title => l(:button_delete),
                     :class => 'icon-only icon-del' %>
+        </span>
       </div>
     <% end -%>
-    <h4>
+    <h4 class='note-header'>
       <%= avatar(time_entry.user, :size => "24") %>
       <%= authoring time_entry.created_on, time_entry.user, :label => :label_added_time_by %>
     </h4>
@@ -23,6 +26,7 @@
       </li>
     </ul>
     <p><%= time_entry.comments %></p>
+    </div>
   </div>
   <%= call_hook(:view_issues_history_time_entry_bottom, { :time_entry => time_entry }) %>
 <% end %>
\ No newline at end of file