Fixes display of archived child projects on the admin project list.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@4271 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
128c92779c
commit
2fbf7bbcf1
|
@ -26,7 +26,7 @@
|
||||||
<tbody>
|
<tbody>
|
||||||
<% project_tree(@projects) do |project, level| %>
|
<% project_tree(@projects) do |project, level| %>
|
||||||
<tr class="<%= cycle("odd", "even") %> <%= project.css_classes %> <%= level > 0 ? "idnt idnt-#{level}" : nil %>">
|
<tr class="<%= cycle("odd", "even") %> <%= project.css_classes %> <%= level > 0 ? "idnt idnt-#{level}" : nil %>">
|
||||||
<td class="name"><%= link_to_project(project, {:action => 'settings'}, :title => project.short_description) %></td>
|
<td class="name"><span><%= link_to_project(project, {:action => 'settings'}, :title => project.short_description) %></span></td>
|
||||||
<td align="center"><%= checked_image project.is_public? %></td>
|
<td align="center"><%= checked_image project.is_public? %></td>
|
||||||
<td align="center"><%= format_date(project.created_on) %></td>
|
<td align="center"><%= format_date(project.created_on) %></td>
|
||||||
<td class="buttons">
|
<td class="buttons">
|
||||||
|
|
|
@ -113,7 +113,7 @@ table.list caption { text-align: left; padding: 0.5em 0.5em 0.5em 0; }
|
||||||
|
|
||||||
tr.project td.name a { white-space:nowrap; }
|
tr.project td.name a { white-space:nowrap; }
|
||||||
|
|
||||||
tr.project.idnt td.name a {background: url(../images/bullet_arrow_right.png) no-repeat 0 50%; padding-left: 16px;}
|
tr.project.idnt td.name span {background: url(../images/bullet_arrow_right.png) no-repeat 0 50%; padding-left: 16px;}
|
||||||
tr.project.idnt-1 td.name {padding-left: 0.5em;}
|
tr.project.idnt-1 td.name {padding-left: 0.5em;}
|
||||||
tr.project.idnt-2 td.name {padding-left: 2em;}
|
tr.project.idnt-2 td.name {padding-left: 2em;}
|
||||||
tr.project.idnt-3 td.name {padding-left: 3.5em;}
|
tr.project.idnt-3 td.name {padding-left: 3.5em;}
|
||||||
|
|
Loading…
Reference in New Issue