tablesorter/css/ui/style.css

44 lines
1013 B
CSS
Raw Normal View History

2011-07-27 06:14:20 +00:00
/* jQuery UI Theme */
table.tablesorter {
font-family: arial;
margin: 10px 0pt 15px;
font-size: 8pt;
width: 100%;
text-align: left;
2011-09-14 14:20:15 +00:00
padding: 5px;
2011-07-27 06:14:20 +00:00
}
table.tablesorter thead tr th, table.tablesorter tfoot tr th {
border-collapse: collapse;
font-size: 8pt;
padding: 4px;
}
table.tablesorter thead tr .header {
background-repeat: no-repeat;
background-position: center right;
cursor: pointer;
}
table.tablesorter tbody td {
padding: 4px;
vertical-align: top;
}
2011-09-14 14:20:15 +00:00
table.tablesorter .header .ui-icon {
2011-07-27 06:14:20 +00:00
display: block;
float: right;
2011-09-13 22:55:31 +00:00
}
2011-09-14 14:20:15 +00:00
/* This allows you to use ui-state-default as the zebra stripe color */
table.tablesorter tr.ui-state-default {
background-image: url();
}
/* UI hover and active states make the font normal and the table resizes, this fixes it */
table.tablesorter th.header {
font-weight: bold !important;
}
2011-09-13 22:55:31 +00:00
/* filter widget */
table.tablesorter thead input.filter {
width: 90%;
}
table.tablesorter thead tr.filters, table.tablesorter thead tr.filters td {
text-align: center;
2011-07-27 06:14:20 +00:00
}