tablesorter/css/green/style.css

77 lines
1.9 KiB
CSS
Raw Normal View History

2011-09-11 17:51:02 +00:00
/* green theme */
2011-06-22 23:19:27 +00:00
table.tablesorter {
2011-09-11 17:51:02 +00:00
font-family: arial;
background-color: #cdcdcd;
margin: 10px 0pt 15px;
2011-06-22 23:19:27 +00:00
font-size: 12px;
2011-09-11 17:51:02 +00:00
width: 100%;
2011-06-22 23:19:27 +00:00
text-align: left;
2011-09-11 17:51:02 +00:00
}
2011-10-15 14:58:44 +00:00
table.tablesorter thead tr th, tr.stickyHeader th, table.tablesorter tfoot tr th {
2011-09-11 17:51:02 +00:00
border-collapse: collapse;
font-size: 12px;
2011-06-22 23:19:27 +00:00
padding: 5px;
}
table.tablesorter td {
2011-09-11 17:51:02 +00:00
color: #3d3d3d;
2011-06-22 23:19:27 +00:00
padding: 5px;
}
2011-10-15 14:58:44 +00:00
table.tablesorter thead tr, table.tablesorter tfoot tr {
2011-09-11 17:51:02 +00:00
background: url(bkgd.png) center center repeat-x;
2011-06-22 23:19:27 +00:00
}
table.tablesorter .header {
2011-09-11 17:51:02 +00:00
background: transparent;
2011-10-15 14:58:44 +00:00
border-right: #cdcdcd 1px solid;
2011-09-11 17:51:02 +00:00
padding: 9px;
2011-06-22 23:19:27 +00:00
height: auto;
2011-09-11 17:51:02 +00:00
cursor: pointer;
}
2012-01-30 16:07:36 +00:00
table.tablesorter .header span:first-child, .stickyHeader .header span:first-child {
2011-09-11 17:51:02 +00:00
background: url(none.png) no-repeat;
padding: 2px 0 2px 25px;
}
2012-01-30 16:07:36 +00:00
table.tablesorter .headerSortUp span:first-child {
2011-09-11 17:51:02 +00:00
background: url(asc.png) no-repeat;
}
2012-01-30 16:07:36 +00:00
table.tablesorter .headerSortDown span:first-child {
2011-09-11 17:51:02 +00:00
background: url(desc.png) no-repeat;
}
/* Zebra Widget - row alternating colors */
table.tablesorter tr.odd td {
background-color: #f0f6f0;
}
table.tablesorter 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: #c0ffc0;
}
table.tablesorter tbody tr.even td.primary {
background-color: #e8ffe8;
}
table.tablesorter tbody td.secondary, table.tablesorter tbody tr.odd td.secondary {
background-color: #d6ffd6;
}
table.tablesorter tbody tr.even td.secondary {
background-color: #e8ffe8;
}
table.tablesorter tbody td.tertiary, table.tablesorter tbody tr.odd td.tertiary {
background-color: #eaffea;
2011-06-22 23:19:27 +00:00
}
2011-09-11 17:51:02 +00:00
table.tablesorter tbody tr.even td.tertiary {
background-color: #f8fff8;
2011-06-22 23:19:27 +00:00
}
2011-09-11 17:51:02 +00:00
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;
background: #fff;
}