Fixed-Header-Table/css/defaultTheme.css

91 lines
1.3 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 {
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
table.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-temp-div {
width:100px;
height:50px;
overflow: scroll;
}
div.fht-temp-div div {
width: 100%;
height:100px;
}
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 {
font-family: "Trebuchet MS", Verdana, Arial, sans-serif;
font-size: 1em;
color: #050505;
}
2011-04-04 18:28:15 +04:00
table.fht-table .fht-cell {
overflow: hidden;
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 */
/* size */
padding: 5px;
/* text */
text-align: left;
}
table.fht-table tbody tr td {
/* size */
padding: 5px;
}
/* @end */