tablesorter/css/blue/style.css

87 lines
2.3 KiB
CSS
Raw Normal View History

2011-06-22 23:19:27 +00:00
/* Blue Theme */
table.tablesorter {
2011-07-17 15:01:18 +00:00
font-family: arial;
2011-09-11 17:51:02 +00:00
background-color: #cdcdcd;
2011-07-17 15:01:18 +00:00
margin: 10px 0pt 15px;
2011-06-22 23:19:27 +00:00
font-size: 8pt;
width: 100%;
text-align: left;
}
2012-03-07 18:06:35 +00:00
table.tablesorter thead tr.tablesorter-stickyHeader {
2011-10-15 14:58:44 +00:00
background: #ccc;
}
2012-03-07 18:06:35 +00:00
table.tablesorter thead tr th, tr.tablesorter-stickyHeader th, table.tablesorter tfoot tr th {
2011-09-11 17:51:02 +00:00
background-color: #e6eeee;
2011-07-17 15:01:18 +00:00
border-collapse: collapse;
2011-06-22 23:19:27 +00:00
font-size: 8pt;
padding: 4px 20px 4px 4px;
2011-06-22 23:19:27 +00:00
}
2012-03-07 18:06:35 +00:00
table.tablesorter thead tr .header, tr.tablesorter-stickyHeader .header {
2011-06-22 23:19:27 +00:00
background-image: url(black-bg.gif);
background-repeat: no-repeat;
background-position: center right;
2011-10-15 14:58:44 +00:00
border: 1px solid #fff;
2011-06-22 23:19:27 +00:00
cursor: pointer;
}
table.tablesorter tbody td {
2011-09-11 17:51:02 +00:00
color: #3d3d3d;
2011-06-22 23:19:27 +00:00
padding: 4px;
2011-09-11 17:51:02 +00:00
background-color: #fff;
2011-06-22 23:19:27 +00:00
vertical-align: top;
}
table.tablesorter thead tr .headerSortUp {
background-image: url(black-asc.gif);
}
table.tablesorter thead tr .headerSortDown {
background-image: url(black-desc.gif);
}
table.tablesorter thead tr .headerSortDown, table.tablesorter thead tr .headerSortUp {
2011-07-17 15:01:18 +00:00
background-color: #8dbdd8;
2011-09-11 17:51:02 +00:00
}
/* Zebra Widget - row alternating colors */
table.tablesorter tbody tr.odd td {
background-color: #f0f0ff;
}
table.tablesorter tbody tr.even td {
background-color: #fff;
}
/* Column Widget - column sort colors */
table.tablesorter tbody td.primary, table.tablesorter tbody tr.odd td.primary {
background-color: #c0c0ff;
}
table.tablesorter tbody tr.even td.primary {
background-color: #e8e8ff;
}
table.tablesorter tbody td.secondary, table.tablesorter tbody tr.odd td.secondary {
background-color: #d6d6ff;
}
table.tablesorter tbody tr.even td.secondary {
background-color: #e8e8ff;
}
table.tablesorter tbody td.tertiary, table.tablesorter tbody tr.odd td.tertiary {
background-color: #e5e5ff;
}
table.tablesorter tbody tr.even td.tertiary {
background-color: #f8f8ff;
}
2011-09-13 22:55:31 +00:00
/* filter widget */
2012-03-07 18:06:35 +00:00
table.tablesorter thead tr.tablesorter-filter input.tablesorter-filter {
width: 95%;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
2011-09-13 22:55:31 +00:00
}
2012-03-07 18:06:35 +00:00
table.tablesorter thead tr.tablesorter-filter, table.tablesorter thead tr.tablesorter-filter td {
2011-09-13 22:55:31 +00:00
text-align: center;
background: #fff;
2012-03-07 18:06:35 +00:00
}
/* optional disabled input styling */
table.tablesorter thead tr.tablesorter-filter input.tablesorter-filter.disabled {
opacity: 0.5;
filter: alpha(opacity=50);
2011-09-13 22:55:31 +00:00
}