DarkSleeky/css/tablesorter.css

116 lines
2.5 KiB
CSS

/* jQuery Table Sorter */
table.tblSorter {
font-family:Verdana, Arial;
background-color: #262626;
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: #7289DA;
border: 1px solid #121212;
font-size: 8pt;
padding: 4px;
color:#fff ;
}
table.tblSorter tfoot tr th {
background-color: #2a2a2a;
}
table.tblSorter thead tr .tablesorter-header {
background-image: url('../images/bg.svg');
background-repeat: no-repeat;
background-position: center right;
cursor: pointer;
padding-right:10px;
}
table.tblSorter thead tr .sorter-false {
background-image: none;
cursor:default;
}
table.tblSorter tbody td {
color: #fff;
padding: 4px;
background-color: #2a2a2a;
vertical-align: top;
}
table.tblSorter tbody td.ip {
max-width: 9em;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
table.tblSorter tbody tr.normal-row td {
background: #121212;
}
table.tblSorter tbody tr.alt-row td {
}
table.tblSorter tbody tr.normal-row:hover td {
background-color:#2a2a2a;
}
table.tblSorter tbody tr.alt-row:hover td {
background-color:#2a2a2a;
}
table.tblSorter thead tr .tablesorter-headerDesc {
background-image: url('../images/desc.svg');
background-repeat: no-repeat;
background-position: center right;
}
table.tblSorter thead tr .tablesorter-headerAsc {
background-image: url('../images/asc.svg');
background-repeat: no-repeat;
background-position: center right;
}
table.tblSorter thead tr .tablesorter-headerAsc, table.tblSorter thead tr .tablesorter-headerDesc {
background-color: #4E5D94;
}
table.tblSorter thead tr th span {
margin-right:10px;
}
table.tblSorter tfoot tr {
background-color: #7289DA;
}
#filter_form{
float:left;
text-align: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 #262626;
margin:0px 2px;
padding:2px 1px;
background:#121212;
text-align:center;
min-width:15px;
display:inline-block;
color:#fff ;
}
.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 #7289DA;
background:#7289DA;
text-decoration:none;
}