1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92
|
div.subtrack_table {
overflow:auto;
width: auto;
}
tbody.sortable tr {
cursor: move;
}
table.subtrack-table {
border: 1px solid black;
font-size: 10pt;
}
table.subtrack-table thead th {
background-color:lightgoldenrodyellow;
}
table.subtrack-table tfoot td {
background-color:khaki;
}
table.subtrack-table tr.tbody_header {
font-weight:bold;
text-align:center;
background-color:khaki;
}
table.subtrack-table tbody {
border: 1px solid black;
}
table.subtrack-table tbody tr:hover {
background:lightsteelblue;
}
table.subtrack-table tbody th {
border: 1px solid black;
}
table.subtrack-table tbody td {
border: 1px solid black;
}
table.subtrack-table a.pagelink {
padding-left:5px;
padding-right:5px;
margin:0px 5px 0px 5px;
}
table.subtrack-table a.currentpage {
background-color:yellow;
}
/* Striping */
tr.alternate {
background-color:#ffffcc;
}
tr.unselected {
color: gray;
}
tr.selected {
color: black;
}
.dragging {
background-color: orange;
}
/* Sorting */
th.table-sortable {
cursor:pointer;
background-image:url("../images/buttons/sortable.gif");
background-repeat:no-repeat;
padding-left:12px;
}
th.table-sorted-asc {
background-image:url("../images/buttons/sorted_up.gif");
background-repeat:no-repeat;
}
th.table-sorted-desc {
background-image:url("../images/buttons/sorted_down.gif");
background-repeat:no-repeat;
}
th.table-filtered {
background-image:url("../images/buttons/filter.gif");
background-repeat:no-repeat;
}
select.table-autofilter {
font-size:smaller;
}
/* Examples which stray from the default */
table.altstripe tr.alternate2 {
background-color:#ccffff;
}
|