Slight style changes on issue associated changesets list.
git-svn-id: http://redmine.rubyforge.org/svn/trunk@1112 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
1ecef3a95a
commit
c3d909e0cc
|
@ -1,8 +1,8 @@
|
||||||
<ul>
|
|
||||||
<% changesets.each do |changeset| %>
|
<% changesets.each do |changeset| %>
|
||||||
<li class="<%= cycle('odd', 'even') %>"><%= link_to("#{l(:label_revision)} #{changeset.revision}",
|
<div class="changeset <%= cycle('odd', 'even') %>">
|
||||||
|
<p><%= link_to("#{l(:label_revision)} #{changeset.revision}",
|
||||||
:controller => 'repositories', :action => 'revision', :id => @project, :rev => changeset.revision) %><br />
|
:controller => 'repositories', :action => 'revision', :id => @project, :rev => changeset.revision) %><br />
|
||||||
<em><%= changeset.committer %>, <%= format_time(changeset.committed_on) %></em>
|
<span class="author"><%= authoring(changeset.committed_on, changeset.committer) %></span></p>
|
||||||
<%= textilizable(changeset, :comments) %></li>
|
<%= textilizable(changeset, :comments) %>
|
||||||
|
</div>
|
||||||
<% end %>
|
<% end %>
|
||||||
</ul>
|
|
||||||
|
|
|
@ -136,9 +136,10 @@ textarea.wiki-edit { width: 99%; }
|
||||||
li p {margin-top: 0;}
|
li p {margin-top: 0;}
|
||||||
div.issue {background:#ffffdd; padding:6px; margin-bottom:6px;border: 1px solid #d7d7d7;}
|
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 {float:right; width:45%; margin-left: 1em; margin-bottom: 1em; background: #fff; padding-left: 1em; font-size: 90%;}
|
||||||
div#issue-changesets ul {list-style-position: outside; list-style-type:none; margin: 0; padding: 0;}
|
div#issue-changesets .changeset { padding: 4px;}
|
||||||
div#issue-changesets li { 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;}
|
.autoscroll {overflow-x: auto; padding:1px; width:100%; margin-bottom: 1.2em;}
|
||||||
#user_firstname, #user_lastname, #user_mail, #my_account_form select { width: 90%; }
|
#user_firstname, #user_lastname, #user_mail, #my_account_form select { width: 90%; }
|
||||||
|
|
Loading…
Reference in New Issue