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
|
div.subtrack_table {
overflow:auto;
resize: both;
height:300px;
width:500px;
border:1px solid black"
}
tbody.sortable tr {
cursor: move;
}
table.subtrack-table {
width: 100%;
border-collapse:collapse;
font-size: 10pt;
}
table.subtrack-table th, table.subtrack-table td {
padding: 1px 10px 1px 10px;
}
table.subtrack-table thead th {
border: 1px solid black;
background-color:#ccccff;
}
table.subtrack-table tfoot td {
background-color:#ffccff;
}
table.subtrack-table tr.tbody_header {
font-weight:bold;
text-align:center;
background-color:#dddddd;
}
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 {
background-color: transparent;
}
tr.selected {
background-color: orange;
}
/* Sorting */
th.table-sortable {
cursor:pointer;
background-image:url("../images/buttons/sortable.gif");
background-position:center left;
background-repeat:no-repeat;
padding-left:12px;
}
th.table-sorted-asc {
background-image:url("../images/buttons/sorted_up.gif");
background-position:center left;
background-repeat:no-repeat;
}
th.table-sorted-desc {
background-image:url("../images/buttons/sorted_down.gif");
background-position:center left;
background-repeat:no-repeat;
}
th.table-filtered {
background-image:url("../images/buttons/filter.gif");
background-position:center left;
background-repeat:no-repeat;
}
select.table-autofilter {
font-size:smaller;
}
/* Examples which stray from the default */
table.altstripe tr.alternate2 {
background-color:#ccffff;
}
|