12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- /*!
- * jquery.fixedHeaderTable. The jQuery fixedHeaderTable plugin
- *
- * Copyright (c) 2011 Mark Malek
- * http://fixedheadertable.com
- *
- * Licensed under MIT
- * http://www.opensource.org/licenses/mit-license.php
- *
- * http://docs.jquery.com/Plugins/Authoring
- * jQuery authoring guidelines
- *
- * Launch : October 2009
- * Version : 1.3
- * Released: May 9th, 2011
- *
- *
- * all CSS sizing (width,height) is done in pixels (px)
- */
- /* @group Reset */
- .fht-table,
- .fht-table thead,
- .fht-table tfoot,
- .fht-table tbody,
- .fht-table tr,
- .fht-table th,
- .fht-table td {
- vertical-align:middle;
- }
- .fht-table {
- }
- .fht-table-wrapper,
- .fht-table-wrapper .fht-thead,
- .fht-table-wrapper .fht-tfoot,
- .fht-table-wrapper .fht-fixed-column .fht-tbody,
- .fht-table-wrapper .fht-fixed-body .fht-tbody,
- .fht-table-wrapper .fht-tbody {
- overflow: hidden;
- position: relative;
- }
- .fht-table-wrapper .fht-fixed-body .fht-tbody,
- .fht-table-wrapper .fht-tbody {
- overflow: auto;
- }
- .fht-table-wrapper .fht-table .fht-cell {
- overflow: hidden;
- height: 1px;
- }
-
- .fht-table-wrapper .fht-fixed-column,
- .fht-table-wrapper .fht-fixed-body {
- top: 0;
- left: 0;
- position: absolute;
- }
- .fht-table-wrapper .fht-fixed-column {
- z-index: 1;
- }
- .fancyTable td, .fancyTable th {
- white-space:nowrap;
- min-width:60px
- }
- .fancyTable tbody tr th {
- background-color: #fff;
- }
- .fancyTable tbody tr td {
- background-color: #fff;
- }
- .fancyTable tbody tr.odd td{
- background: #fff
- }
- .fancyTable tbody tr th{
- font-weight: 600;
- background: #fff
- }
- .fancyTable thead tr th,
- .fancyTable thead tr td,
- .fancyTable tfoot tr th,
- .fancyTable tfoot tr td {
- background: #fff;
- font-weight: bold;
- color:#444;
- }
|