mirror of
https://github.com/kremalicious/krtmn.git
synced 2024-12-22 17:23:33 +01:00
92 lines
1.9 KiB
CSS
92 lines
1.9 KiB
CSS
|
/* jQuery Table Sorter */
|
||
|
table.tblSorter {
|
||
|
font-family:Verdana, Arial;
|
||
|
background-color: #CDCDCD;
|
||
|
margin:10px 0px 0px;
|
||
|
font-size: 8pt;
|
||
|
width: 100%;
|
||
|
text-align: left;
|
||
|
}
|
||
|
table.tblSorter thead tr th, table.tblSorter tfoot tr th, table.tblSorter th.header {
|
||
|
background-color: #C7E7FF;
|
||
|
border: 1px solid #FFF;
|
||
|
font-size: 8pt;
|
||
|
padding: 4px;
|
||
|
}
|
||
|
table.tblSorter tfoot tr th {
|
||
|
background-color: #E3F3FF;
|
||
|
}
|
||
|
table.tblSorter thead tr .header {
|
||
|
background-image: url('../images/bg.gif');
|
||
|
background-repeat: no-repeat;
|
||
|
background-position: center right;
|
||
|
cursor: pointer;
|
||
|
padding-right:10px;
|
||
|
}
|
||
|
table.tblSorter tbody tr:hover td {
|
||
|
background-color:#F3FAFD;
|
||
|
}
|
||
|
table.tblSorter tbody td {
|
||
|
color: #3D3D3D;
|
||
|
padding: 4px;
|
||
|
background-color: #FFF;
|
||
|
vertical-align: top;
|
||
|
}
|
||
|
table.tblSorter tbody tr.even td {
|
||
|
|
||
|
}
|
||
|
table.tblSorter tbody tr.odd td {
|
||
|
|
||
|
}
|
||
|
table.tblSorter thead tr .headerSortUp {
|
||
|
background-image: url('../images/desc.gif');
|
||
|
}
|
||
|
table.tblSorter thead tr .headerSortDown {
|
||
|
background-image: url('../images/asc.gif');
|
||
|
}
|
||
|
table.tblSorter thead tr .headerSortDown, table.tblSorter thead tr .headerSortUp {
|
||
|
background-color: #88c0eb;
|
||
|
}
|
||
|
table.tblSorter tfoot tr {
|
||
|
background-color: #BCD9E8;
|
||
|
}
|
||
|
#filter_form{
|
||
|
float:left;
|
||
|
max-width:69%;
|
||
|
}
|
||
|
#filter_buttons{
|
||
|
float:right;
|
||
|
}
|
||
|
#pagination{
|
||
|
text-align:right;
|
||
|
float:right;
|
||
|
width:30%;
|
||
|
}
|
||
|
.navigation .nav_total{
|
||
|
display:block;
|
||
|
margin-bottom:10px;
|
||
|
}
|
||
|
.navigation .nav_link a, .navigation .nav_current {
|
||
|
border:1px solid #CDCDCD;
|
||
|
margin:0px 2px;
|
||
|
padding:2px 1px;
|
||
|
background:#fff;
|
||
|
text-align:center;
|
||
|
min-width:15px;
|
||
|
display:inline-block;
|
||
|
}
|
||
|
.navigation .nav_current {
|
||
|
border:0px;
|
||
|
background:none;
|
||
|
}
|
||
|
.navigation .nav_first a, .navigation .nav_last a {
|
||
|
padding:2px 2px;
|
||
|
}
|
||
|
.navigation .nav_prev:before, .navigation .nav_next:after {
|
||
|
content:"...";
|
||
|
}
|
||
|
.navigation .nav_link a:hover {
|
||
|
border:1px solid #BCD9E8;
|
||
|
background:#BCD9E8;
|
||
|
text-decoration:none;
|
||
|
}
|