jasonbrooks / centos / centos.org

Forked from centos/centos.org 4 years ago
Clone

Blame assets/jquery.tidy.table.css

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