diff --git a/app/views/dmsf/show.html.erb b/app/views/dmsf/show.html.erb index 7407f3ba..a934be2e 100644 --- a/app/views/dmsf/show.html.erb +++ b/app/views/dmsf/show.html.erb @@ -28,7 +28,7 @@ form_tag({:action => "entries_operation", :id => @project, :folder_id => @folder :class => "dmfs_entries", :id => "entries_form") do %> <%= hidden_field_tag("action") %> -
| diff --git a/assets/stylesheets/dmsf.css b/assets/stylesheets/dmsf.css index fd788c2e..9e684a25 100644 --- a/assets/stylesheets/dmsf.css +++ b/assets/stylesheets/dmsf.css @@ -13,6 +13,7 @@ table.entries { } table.entries td.modified { + min-width: 120px; width: 120px; } @@ -31,14 +32,24 @@ table.entries th.check, table.entries td.check { text-align: left; } +table.entries th.check div.DataTables_sort_wrapper { + padding: 0; +} + table.display th { font-size: 1.2em; } -table.entries th.check div.DataTables_sort_wrapper { - padding: 0; +table.display tbody tr.even { + background-color: #F8F8F8; } +table.display tbody tr.odd { + background-color: #FFFFFF; +} + +table.display tbody tr:hover { background-color:#ffffdd; } + .icon-file.filetype-doc, .icon-file.filetype-docx { background-image: url(../images/filetypes/doc.png); } |
|---|