@@ -26,8 +26,8 | |||||
26 | </tr></thead> |
|
26 | </tr></thead> | |
27 | <tbody> |
|
27 | <tbody> | |
28 | <% project_tree(@projects) do |project, level| %> |
|
28 | <% project_tree(@projects) do |project, level| %> | |
29 | <tr class="<%= cycle("odd", "even") %> <%= css_project_classes(project) %>"> |
|
29 | <tr class="<%= cycle("odd", "even") %> <%= css_project_classes(project) %> <%= level > 0 ? "idnt idnt-#{level}" : nil %>"> | |
30 |
<td class="name" |
|
30 | <td class="name"><%= project.active? ? link_to(h(project.name), :controller => 'projects', :action => 'settings', :id => project) : h(project.name) %></td> | |
31 | <td><%= textilizable project.short_description, :project => project %></td> |
|
31 | <td><%= textilizable project.short_description, :project => project %></td> | |
32 | <td align="center"><%= checked_image project.is_public? %></td> |
|
32 | <td align="center"><%= checked_image project.is_public? %></td> | |
33 | <td align="center"><%= format_date(project.created_on) %></td> |
|
33 | <td align="center"><%= format_date(project.created_on) %></td> |
@@ -110,8 +110,18 table.list td.buttons { width: 15%; white-space:nowrap; text-align: right; } | |||||
110 | table.list td.buttons a { padding-right: 0.6em; } |
|
110 | table.list td.buttons a { padding-right: 0.6em; } | |
111 | table.list caption { text-align: left; padding: 0.5em 0.5em 0.5em 0; } |
|
111 | table.list caption { text-align: left; padding: 0.5em 0.5em 0.5em 0; } | |
112 |
|
112 | |||
113 |
tr.project td.name a { |
|
113 | tr.project td.name a { white-space:nowrap; } | |
114 | tr.project.parent td.name a { background: url('../images/bullet_toggle_minus.png') no-repeat; } |
|
114 | ||
|
115 | tr.project.idnt td.name a {background: url(../images/bullet_arrow_right.png) no-repeat 0 50%; padding-left: 16px;} | |||
|
116 | tr.project.idnt-1 td.name {padding-left: 0.5em;} | |||
|
117 | tr.project.idnt-2 td.name {padding-left: 2em;} | |||
|
118 | tr.project.idnt-3 td.name {padding-left: 3.5em;} | |||
|
119 | tr.project.idnt-4 td.name {padding-left: 5em;} | |||
|
120 | tr.project.idnt-5 td.name {padding-left: 6.5em;} | |||
|
121 | tr.project.idnt-6 td.name {padding-left: 8em;} | |||
|
122 | tr.project.idnt-7 td.name {padding-left: 9.5em;} | |||
|
123 | tr.project.idnt-8 td.name {padding-left: 11em;} | |||
|
124 | tr.project.idnt-9 td.name {padding-left: 12.5em;} | |||
115 |
|
125 | |||
116 | tr.issue { text-align: center; white-space: nowrap; } |
|
126 | tr.issue { text-align: center; white-space: nowrap; } | |
117 | tr.issue td.subject, tr.issue td.category, td.assigned_to { white-space: normal; } |
|
127 | tr.issue td.subject, tr.issue td.category, td.assigned_to { white-space: normal; } |
General Comments 0
You need to be logged in to leave comments.
Login now