Fixed-Header-Table/css/defaultTheme.css

87 lines
1.4 KiB
CSS
Raw Normal View History

2011-04-04 18:28:15 +04:00
/*!
* jquery.fixedHeaderTable. The jQuery fixedHeaderTable plugin
*
* Copyright (c) 2009 Mark Malek
* http://fixedheadertable.mmalek.com
*
* Licensed under MIT
* http://www.opensource.org/licenses/mit-license.php
*
* Launch : October 2009
* Version : beta 0.1
* Released: TBA
*/
/* @group Reset */
table.fht-table,
table.fht-table thead,
table.fht-table tfoot,
table.fht-table tbody,
table.fht-table tr,
table.fht-table th,
table.fht-table td,
.fht-table-head table,
.fht-table-head table thead,
.fht-table-head table tr,
.fht-table-head table th {
2011-04-04 18:28:15 +04:00
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
2011-04-04 18:28:15 +04:00
}
table.fht-table,
.fht-table-head 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 {
overflow: hidden;
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
}
table.fht-table,
.fht-table-head table {
font-family: "Trebuchet MS", Verdana, Arial, sans-serif;
font-size: 1em;
color: #050505;
2011-04-04 18:28:15 +04:00
}
table.fht-table th .fht-th {
height: 1px;
2011-04-04 18:28:15 +04:00
}
/* @end */
2011-04-04 18:28:15 +04:00
/* @group Layout */
2011-04-04 18:28:15 +04:00
table.fht-table thead tr th,
table.fht-table tfoot tr td,
.fht-table-head table thead tr th {
/* appearance */
background: #a7b2d8;
/* size */
padding: 5px;
/* text */
text-align: left;
}
table.fht-table tbody tr td {
/* size */
padding: 5px;
}
/* @end */