1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-03-23 22:50:09 +03:00

feature #2746: Add sorting icons for data tables

This commit is contained in:
Daniel Molina 2014-03-17 10:44:54 +01:00
parent 81a4c993da
commit 6ff8bf4cce
2 changed files with 7 additions and 7 deletions

File diff suppressed because one or more lines are too long

View File

@ -99,7 +99,7 @@ table {
th {
font-weight: normal !important;
font-size: 16px !important;
background: #fff !important;
background-color: #fff !important;
border-bottom: 1px solid #efefef !important;;
color: #333 !important;
}
@ -563,12 +563,12 @@ table.dataTable thead .sorting_desc_disabled {
*cursor: hand;
}
table.dataTable thead .sorting { background: url('images/sort_both.png') no-repeat center right; }
table.dataTable thead .sorting_asc { background: url('images/sort_asc.png') no-repeat center right; }
table.dataTable thead .sorting_desc { background: url('images/sort_desc.png') no-repeat center right; }
table.dataTable thead .sorting { background: url('../images/sort_both.png') no-repeat center right; }
table.dataTable thead .sorting_asc { background: url('../images/sort_asc.png') no-repeat center right; }
table.dataTable thead .sorting_desc { background: url('../images/sort_desc.png') no-repeat center right; }
table.dataTable thead .sorting_asc_disabled { background: url('images/sort_asc_disabled.png') no-repeat center right; }
table.dataTable thead .sorting_desc_disabled { background: url('images/sort_desc_disabled.png') no-repeat center right; }
table.dataTable thead .sorting_asc_disabled { background: url('../images/sort_asc_disabled.png') no-repeat center right; }
table.dataTable thead .sorting_desc_disabled { background: url('../images/sort_desc_disabled.png') no-repeat center right; }
table.dataTable th:active {
outline: none;