]> source.dussan.org Git - redmine.git/commitdiff
Slight style changes on issue associated changesets list.
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Sun, 3 Feb 2008 15:15:52 +0000 (15:15 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Sun, 3 Feb 2008 15:15:52 +0000 (15:15 +0000)
git-svn-id: http://redmine.rubyforge.org/svn/trunk@1112 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/views/issues/_changesets.rhtml
public/stylesheets/application.css

index 1a4c1a5bd26e6cacaa26fefc2782882cd3875703..caa983cbf84d5efbfef14bbf3d5c65a901c16632 100644 (file)
@@ -1,8 +1,8 @@
-<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>
index eb4e855b43b232fd64413ff501b8bdc540eb4e11..1090d8c8749083e10837fa6950cf24fb78aa390f 100644 (file)
@@ -136,9 +136,10 @@ textarea.wiki-edit { width: 99%; }
 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%; }