* file list styling

git-svn-id: http://redmine-dmsf.googlecode.com/svn/trunk/redmine_dmsf@171 5e329b0b-a2ee-ea63-e329-299493fc886d
This commit is contained in:
vit.jonas@gmail.com 2011-06-17 13:12:23 +00:00
parent ee009c4986
commit c27ff4008a
2 changed files with 14 additions and 3 deletions

View File

@ -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") %>
<table class="display entries list" id="browser">
<table class="display entries" id="browser">
<thead>
<tr id="root">
<th class="check">

View File

@ -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);
}