diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2010-10-22 15:11:04 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2010-10-22 15:11:04 +0000 |
commit | 2fbf7bbcf1af756c4d0de3c7de96194376d33f1d (patch) | |
tree | 1676a1a2bdf25d70bfeefc09305cc681bc96131c | |
parent | 128c92779c72a58ec5b44eac1d9dc2a04de2e252 (diff) | |
download | redmine-2fbf7bbcf1af756c4d0de3c7de96194376d33f1d.tar.gz redmine-2fbf7bbcf1af756c4d0de3c7de96194376d33f1d.zip |
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
-rw-r--r-- | app/views/admin/projects.rhtml | 2 | ||||
-rw-r--r-- | public/stylesheets/application.css | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/app/views/admin/projects.rhtml b/app/views/admin/projects.rhtml index 93f6285f0..e1f079c4f 100644 --- a/app/views/admin/projects.rhtml +++ b/app/views/admin/projects.rhtml @@ -26,7 +26,7 @@ <tbody> <% project_tree(@projects) do |project, level| %> <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"><%= format_date(project.created_on) %></td> <td class="buttons"> diff --git a/public/stylesheets/application.css b/public/stylesheets/application.css index b286ee23c..65ad96492 100644 --- a/public/stylesheets/application.css +++ b/public/stylesheets/application.css @@ -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.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-2 td.name {padding-left: 2em;} tr.project.idnt-3 td.name {padding-left: 3.5em;} |