##// END OF EJS Templates
Slight style changes on issue associated changesets list....
Jean-Philippe Lang -
r1098:c3d909e0cc11
parent child
Show More
@@ -1,8 +1,8
1 <ul>
2 <% changesets.each do |changeset| %>
1 <% changesets.each do |changeset| %>
3 <li class="<%= cycle('odd', 'even') %>"><%= link_to("#{l(:label_revision)} #{changeset.revision}",
2 <div class="changeset <%= cycle('odd', 'even') %>">
4 :controller => 'repositories', :action => 'revision', :id => @project, :rev => changeset.revision) %><br />
3 <p><%= link_to("#{l(:label_revision)} #{changeset.revision}",
5 <em><%= changeset.committer %>, <%= format_time(changeset.committed_on) %></em>
4 :controller => 'repositories', :action => 'revision', :id => @project, :rev => changeset.revision) %><br />
6 <%= textilizable(changeset, :comments) %></li>
5 <span class="author"><%= authoring(changeset.committed_on, changeset.committer) %></span></p>
6 <%= textilizable(changeset, :comments) %>
7 </div>
7 <% end %>
8 <% end %>
8 </ul>
@@ -136,9 +136,10 textarea.wiki-edit { width: 99%; }
136 li p {margin-top: 0;}
136 li p {margin-top: 0;}
137 div.issue {background:#ffffdd; padding:6px; margin-bottom:6px;border: 1px solid #d7d7d7;}
137 div.issue {background:#ffffdd; padding:6px; margin-bottom:6px;border: 1px solid #d7d7d7;}
138
138
139 div#issue-changesets {float:right; width:45%; margin-left: 1em; margin-bottom: 1em; background: #fff; padding-left: 1em;}
139 div#issue-changesets {float:right; width:45%; margin-left: 1em; margin-bottom: 1em; background: #fff; padding-left: 1em; font-size: 90%;}
140 div#issue-changesets ul {list-style-position: outside; list-style-type:none; margin: 0; padding: 0;}
140 div#issue-changesets .changeset { padding: 4px;}
141 div#issue-changesets li { padding: 4px; }
141 div#issue-changesets .changeset { border-bottom: 1px solid #ddd; }
142 div#issue-changesets p { margin-top: 0; margin-bottom: 1em;}
142
143
143 .autoscroll {overflow-x: auto; padding:1px; width:100%; margin-bottom: 1.2em;}
144 .autoscroll {overflow-x: auto; padding:1px; width:100%; margin-bottom: 1.2em;}
144 #user_firstname, #user_lastname, #user_mail, #my_account_form select { width: 90%; }
145 #user_firstname, #user_lastname, #user_mail, #my_account_form select { width: 90%; }
General Comments 0
You need to be logged in to leave comments. Login now