Fixed-Header-Table/css/defaultTheme.css

55 lines
768 B
CSS
Raw Normal View History

2011-04-04 18:28:15 +04:00
/*!
* jquery.fixedHeaderTable. The jQuery fixedHeaderTable plugin
*
* Copyright (c) 2011 Mark Malek
* http://fixedheadertable.com
2011-04-04 18:28:15 +04:00
*
* Licensed under MIT
* http://www.opensource.org/licenses/mit-license.php
*
* Launch : October 2009
* Version : 1.2
2011-04-04 18:28:15 +04:00
* Released: TBA
*/
/* @group Reset */
.fht-table,
.fht-table thead,
.fht-table tfoot,
.fht-table tbody,
.fht-table tr,
.fht-table th,
.fht-table td {
2011-04-04 18:28:15 +04:00
margin: 0;
padding: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
2011-04-04 18:28:15 +04:00
.fht-table {
border-collapse: collapse;
border-spacing: 0;
}
2011-04-04 18:28:15 +04:00
/* @end */
2011-04-04 18:28:15 +04:00
/* @group Content */
2011-04-04 18:28:15 +04:00
div.fht-table-wrapper {
}
2011-04-04 18:28:15 +04:00
div.fht-tbody {
overflow-y: auto;
overflow-x: hidden;
}
2011-04-04 18:28:15 +04:00
.fht-table .fht-cell {
overflow: hidden;
height: 1px;
}
2011-04-04 18:28:15 +04:00
/* @end */