bcotton / centos / centos.org

Forked from centos/centos.org 4 years ago
Clone

Blame static/assets/jquery.tidy.table.css

e8ec7a
/*
e8ec7a
 *  Tidy Table
e8ec7a
 *  Generate a sortable HTML table from JSON
e8ec7a
 *
e8ec7a
 *  Copyright 2012-2013, Marc S. Brooks (http://mbrooks.info)
e8ec7a
 *  Licensed under the MIT license:
e8ec7a
 *  http://www.opensource.org/licenses/mit-license.php
e8ec7a
 *
e8ec7a
 *  Dependencies:
e8ec7a
 *    jquery.js
e8ec7a
 */
e8ec7a
e8ec7a
table.tidy_table {
e8ec7a
	background-color: rgba(0,0,0, 0.2);
e8ec7a
	border-collapse: collapse;
e8ec7a
/*	border: 1px solid rgba(0,0,0,0.2); */
e8ec7a
	cursor: pointer;
e8ec7a
	white-space: nowrap;
e8ec7a
}
e8ec7a
e8ec7a
table.tidy_table thead {
e8ec7a
	border: none;
e8ec7a
}
e8ec7a
e8ec7a
table.tidy_table tr.check_on {
e8ec7a
	background-color: rgba(255,255,255,0.5);
e8ec7a
}
e8ec7a
e8ec7a
table.tidy_table tr.check_off {
e8ec7a
	background-color: rgba(0,0,0,0.4);
e8ec7a
}
e8ec7a
e8ec7a
table.tidy_table th {
e8ec7a
	background-color: rgba(0,0,0,0.6);
e8ec7a
}
e8ec7a
e8ec7a
table.tidy_table th.sort_asc {
e8ec7a
	background: rgba(0,0,0,0.8) url( /images/arrow_asc.gif ) no-repeat right center;
e8ec7a
}
e8ec7a
e8ec7a
table.tidy_table th.sort_desc {
e8ec7a
	background: rgba(0,0,0,0.8) url( /images/arrow_desc.gif ) no-repeat right center;
e8ec7a
}
e8ec7a
e8ec7a
table.tidy_table th,
e8ec7a
table.tidy_table td {
e8ec7a
	padding: 6px 20px 6px 20px;
e8ec7a
}
e8ec7a
e8ec7a
table.tidy_table td {
e8ec7a
	border-right: none;
e8ec7a
	padding: 7px 20px 7px 20px;
e8ec7a
}
e8ec7a
e8ec7a
table.tidy_table th:nth-child(1),
e8ec7a
table.tidy_table td:nth-child(1) {
e8ec7a
	width: 10px;
e8ec7a
}
e8ec7a
e8ec7a
table.tidy_table td:nth-child(1) {
e8ec7a
/*	border-right: 1px solid rgba(0,0,; */
e8ec7a
}
e8ec7a
e8ec7a
table.tidy_table input[type=checkbox],
e8ec7a
table.tidy_table input[type=checkbox] {
e8ec7a
	display: block;
e8ec7a
	margin: 0px auto 0px auto;
e8ec7a
}
e8ec7a
e8ec7a
table.tidy_table td:nth-last-child(1) {
e8ec7a
/* 	border-right: none; */
e8ec7a
}
e8ec7a
e8ec7a
table.tidy_table td {
e8ec7a
/*	border-top: 1px solid rgba(0,0,0,0.2);  */
e8ec7a
}