mirror of
https://github.com/meineerde/redmine.git
synced 2025-12-19 23:11:12 +00:00
Use fixed layout and move status to its own column.
git-svn-id: http://svn.redmine.org/redmine/trunk@15929 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
604ce984eb
commit
6ef3ecc030
@ -1,23 +1,23 @@
|
|||||||
<% if issues && issues.any? %>
|
<% if issues && issues.any? %>
|
||||||
<%= form_tag({}) do %>
|
<%= form_tag({}) do %>
|
||||||
<table class="list issues">
|
<table class="list list-simple issues">
|
||||||
<thead><tr>
|
<thead><tr>
|
||||||
<th>#</th>
|
<th class="id">#</th>
|
||||||
<th><%=l(:field_project)%></th>
|
<th class="project"><%=l(:field_project)%></th>
|
||||||
<th><%=l(:field_tracker)%></th>
|
<th class="status"><%=l(:field_status)%></th>
|
||||||
<th><%=l(:field_subject)%></th>
|
<th class="subject"><%=l(:field_subject)%></th>
|
||||||
</tr></thead>
|
</tr></thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
<% for issue in issues %>
|
<% for issue in issues %>
|
||||||
<tr id="issue-<%= h(issue.id) %>" class="hascontextmenu <%= cycle('odd', 'even') %> <%= issue.css_classes %>">
|
<tr id="issue-<%= h(issue.id) %>" class="hascontextmenu <%= cycle('odd', 'even') %> <%= issue.css_classes %>">
|
||||||
<td class="id">
|
<td class="id">
|
||||||
<%= check_box_tag("ids[]", issue.id, false, :style => 'display:none;', :id => nil) %>
|
<%= check_box_tag("ids[]", issue.id, false, :style => 'display:none;', :id => nil) %>
|
||||||
<%= link_to(issue.id, issue_path(issue)) %>
|
<%= link_to("#{issue.tracker} ##{issue.id}", issue_path(issue)) %>
|
||||||
</td>
|
</td>
|
||||||
<td class="project"><%= link_to_project(issue.project) %></td>
|
<td class="project"><%= link_to_project(issue.project) %></td>
|
||||||
<td class="tracker"><%= issue.tracker %></td>
|
<td class="status"><%= issue.status %></td>
|
||||||
<td class="subject">
|
<td class="subject">
|
||||||
<%= link_to(issue.subject.truncate(60), issue_path(issue)) %> (<%= issue.status %>)
|
<span><%= link_to(issue.subject, issue_path(issue)) %></span>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<% end %>
|
<% end %>
|
||||||
|
|||||||
@ -295,6 +295,11 @@ table.boards td.last-message {text-align:left;font-size:80%;}
|
|||||||
|
|
||||||
div.table-list.boards .table-list-cell.name {width: 30%;}
|
div.table-list.boards .table-list-cell.name {width: 30%;}
|
||||||
|
|
||||||
|
#content table.list-simple {table-layout:fixed;}
|
||||||
|
#content table.list-simple td {white-space:nowrap; overflow:hidden; text-overflow: ellipsis; text-align:left;}
|
||||||
|
#content table.list-simple th.id, #content table.list-simple th.project {width:18%;}
|
||||||
|
#content table.list-simple th.status {width:14%;}
|
||||||
|
|
||||||
table.messages td.last_message {text-align:left;}
|
table.messages td.last_message {text-align:left;}
|
||||||
|
|
||||||
#query_form_content {font-size:90%;}
|
#query_form_content {font-size:90%;}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user