-<ul>
<% changesets.each do |changeset| %>
- <li class="<%= cycle('odd', 'even') %>"><%= link_to("#{l(:label_revision)} #{changeset.revision}",
- :controller => 'repositories', :action => 'revision', :id => @project, :rev => changeset.revision) %><br />
- <em><%= changeset.committer %>, <%= format_time(changeset.committed_on) %></em>
- <%= textilizable(changeset, :comments) %></li>
+ <div class="changeset <%= cycle('odd', 'even') %>">
+ <p><%= link_to("#{l(:label_revision)} #{changeset.revision}",
+ :controller => 'repositories', :action => 'revision', :id => @project, :rev => changeset.revision) %><br />
+ <span class="author"><%= authoring(changeset.committed_on, changeset.committer) %></span></p>
+ <%= textilizable(changeset, :comments) %>
+ </div>
<% end %>
-</ul>
li p {margin-top: 0;}
div.issue {background:#ffffdd; padding:6px; margin-bottom:6px;border: 1px solid #d7d7d7;}
-div#issue-changesets {float:right; width:45%; margin-left: 1em; margin-bottom: 1em; background: #fff; padding-left: 1em;}
-div#issue-changesets ul {list-style-position: outside; list-style-type:none; margin: 0; padding: 0;}
-div#issue-changesets li { padding: 4px; }
+div#issue-changesets {float:right; width:45%; margin-left: 1em; margin-bottom: 1em; background: #fff; padding-left: 1em; font-size: 90%;}
+div#issue-changesets .changeset { padding: 4px;}
+div#issue-changesets .changeset { border-bottom: 1px solid #ddd; }
+div#issue-changesets p { margin-top: 0; margin-bottom: 1em;}
.autoscroll {overflow-x: auto; padding:1px; width:100%; margin-bottom: 1.2em;}
#user_firstname, #user_lastname, #user_mail, #my_account_form select { width: 90%; }