tablesorter/css/blue/style.css

93 lines
2.1 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;
2012-03-22 14:58:43 +00:00
margin: 10px 0 15px;
font-size: 11px;
2011-06-22 23:19:27 +00:00
width: 100%;
text-align: left;
2012-03-22 14:58:43 +00:00
border-spacing: 0;
2011-06-22 23:19:27 +00:00
}
2012-03-27 01:49:48 +00:00
table.tablesorter,
table.tablesorter th,
table.tablesorter td {
2012-03-22 14:58:43 +00:00
border: #cdcdcd 1px solid;
2011-10-15 14:58:44 +00:00
}
2012-03-22 14:58:43 +00:00
2012-03-27 19:45:51 +00:00
table.tablesorter th {
2011-09-11 17:51:02 +00:00
background-color: #e6eeee;
2011-07-17 15:01:18 +00:00
border-collapse: collapse;
2012-03-22 14:58:43 +00:00
font-size: 12px;
padding: 4px 20px 4px 4px;
2011-06-22 23:19:27 +00:00
}
2012-03-27 19:45:51 +00:00
table.tablesorter .header,
table.tablesorter .tablesorter-header {
2011-06-22 23:19:27 +00:00
background-image: url(black-bg.gif);
background-repeat: no-repeat;
background-position: center right;
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;
}
2012-03-27 19:45:51 +00:00
table.tablesorter th.headerSortUp,
table.tablesorter th.tablesorter-headerSortUp {
2012-03-22 14:58:43 +00:00
background-color: #8dbdd8;
2011-06-22 23:19:27 +00:00
background-image: url(black-asc.gif);
}
2012-03-27 19:45:51 +00:00
table.tablesorter th.headerSortDown,
table.tablesorter th.tablesorter-headerSortDown {
2011-07-17 15:01:18 +00:00
background-color: #8dbdd8;
2012-03-22 14:58:43 +00:00
background-image: url(black-desc.gif);
2011-09-11 17:51:02 +00:00
}
/* Zebra Widget - row alternating colors */
2012-03-27 19:45:51 +00:00
table.tablesorter tr.odd td {
2011-09-11 17:51:02 +00:00
background-color: #f0f0ff;
}
2012-03-27 19:45:51 +00:00
table.tablesorter tr.even td {
2011-09-11 17:51:02 +00:00
background-color: #fff;
}
/* Column Widget - column sort colors */
2012-03-27 19:45:51 +00:00
table.tablesorter td.primary, table.tablesorter tr.odd td.primary {
2011-09-11 17:51:02 +00:00
background-color: #c0c0ff;
}
2012-03-27 19:45:51 +00:00
table.tablesorter tr.even td.primary {
2011-09-11 17:51:02 +00:00
background-color: #e8e8ff;
}
2012-03-27 19:45:51 +00:00
table.tablesorter td.secondary, table.tablesorter tr.odd td.secondary {
2011-09-11 17:51:02 +00:00
background-color: #d6d6ff;
}
2012-03-27 19:45:51 +00:00
table.tablesorter tr.even td.secondary {
2011-09-11 17:51:02 +00:00
background-color: #e8e8ff;
}
2012-03-27 19:45:51 +00:00
table.tablesorter td.tertiary, table.tablesorter tr.odd td.tertiary {
2011-09-11 17:51:02 +00:00
background-color: #e5e5ff;
}
2012-03-27 19:45:51 +00:00
table.tablesorter tr.even td.tertiary {
2011-09-11 17:51:02 +00:00
background-color: #f8f8ff;
}
2011-09-13 22:55:31 +00:00
/* filter widget */
2012-03-27 19:45:51 +00:00
table.tablesorter input.tablesorter-filter {
2012-03-07 18:06:35 +00:00
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-27 19:45:51 +00:00
table.tablesorter tr.tablesorter-filter,
table.tablesorter 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 */
2012-03-27 19:45:51 +00:00
table.tablesorter input.tablesorter-filter.disabled {
2012-03-07 18:06:35 +00:00
opacity: 0.5;
filter: alpha(opacity=50);
2011-09-13 22:55:31 +00:00
}