diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2017-03-14 18:19:26 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2017-03-14 18:19:26 +0000 |
commit | a0db91e2ab4b6d5cbe608d54a88b529c5e92ea69 (patch) | |
tree | a011f3e60270af739c15e7db3df0d2347faa94db | |
parent | 8c7898bb5db0d29cd418eac3c6e27191cf3571ed (diff) | |
download | redmine-a0db91e2ab4b6d5cbe608d54a88b529c5e92ea69.tar.gz redmine-a0db91e2ab4b6d5cbe608d54a88b529c5e92ea69.zip |
Removes issues/list_simple partial, no longer used.
git-svn-id: http://svn.redmine.org/redmine/trunk@16401 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r-- | app/views/issues/_list_simple.html.erb | 29 | ||||
-rw-r--r-- | public/stylesheets/application.css | 5 |
2 files changed, 0 insertions, 34 deletions
diff --git a/app/views/issues/_list_simple.html.erb b/app/views/issues/_list_simple.html.erb deleted file mode 100644 index 1e23b161b..000000000 --- a/app/views/issues/_list_simple.html.erb +++ /dev/null @@ -1,29 +0,0 @@ -<% if issues && issues.any? %> -<%= form_tag({}, :data => {:cm_url => issues_context_menu_path}) do %> - <table class="list list-simple issues"> - <thead><tr> - <th class="id">#</th> - <th class="project"><%=l(:field_project)%></th> - <th class="status"><%=l(:field_status)%></th> - <th class="subject"><%=l(:field_subject)%></th> - </tr></thead> - <tbody> - <% for issue in issues %> - <tr id="issue-<%= h(issue.id) %>" class="hascontextmenu <%= issue.css_classes %>"> - <td class="id"> - <%= check_box_tag("ids[]", issue.id, false, :style => 'display:none;', :id => nil) %> - <%= link_to("#{issue.tracker} ##{issue.id}", issue_path(issue)) %> - </td> - <td class="project"><%= link_to_project(issue.project) %></td> - <td class="status"><%= issue.status %></td> - <td class="subject"> - <span><%= link_to(issue.subject, issue_path(issue)) %></span> - </td> - </tr> - <% end %> - </tbody> - </table> -<% end %> -<% else %> - <p class="nodata"><%= l(:label_no_data) %></p> -<% end %> diff --git a/public/stylesheets/application.css b/public/stylesheets/application.css index 1b0206d7c..99a034a2f 100644 --- a/public/stylesheets/application.css +++ b/public/stylesheets/application.css @@ -361,11 +361,6 @@ table.boards td.last-message {text-align:left;font-size:80%;} 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;} #query_form_content {font-size:90%;} |