fixedheadertable.css 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. /*!
  2. * jquery.fixedHeaderTable. The jQuery fixedHeaderTable plugin
  3. *
  4. * Copyright (c) 2011 Mark Malek
  5. * http://fixedheadertable.com
  6. *
  7. * Licensed under MIT
  8. * http://www.opensource.org/licenses/mit-license.php
  9. *
  10. * http://docs.jquery.com/Plugins/Authoring
  11. * jQuery authoring guidelines
  12. *
  13. * Launch : October 2009
  14. * Version : 1.3
  15. * Released: May 9th, 2011
  16. *
  17. *
  18. * all CSS sizing (width,height) is done in pixels (px)
  19. */
  20. /* @group Reset */
  21. .fht-table,
  22. .fht-table thead,
  23. .fht-table tfoot,
  24. .fht-table tbody,
  25. .fht-table tr,
  26. .fht-table th,
  27. .fht-table td {
  28. vertical-align:middle;
  29. }
  30. .fht-table {
  31. }
  32. .fht-table-wrapper,
  33. .fht-table-wrapper .fht-thead,
  34. .fht-table-wrapper .fht-tfoot,
  35. .fht-table-wrapper .fht-fixed-column .fht-tbody,
  36. .fht-table-wrapper .fht-fixed-body .fht-tbody,
  37. .fht-table-wrapper .fht-tbody {
  38. overflow: hidden;
  39. position: relative;
  40. }
  41. .fht-table-wrapper .fht-fixed-body .fht-tbody,
  42. .fht-table-wrapper .fht-tbody {
  43. overflow: auto;
  44. }
  45. .fht-table-wrapper .fht-table .fht-cell {
  46. overflow: hidden;
  47. height: 1px;
  48. }
  49. .fht-table-wrapper .fht-fixed-column,
  50. .fht-table-wrapper .fht-fixed-body {
  51. top: 0;
  52. left: 0;
  53. position: absolute;
  54. }
  55. .fht-table-wrapper .fht-fixed-column {
  56. z-index: 1;
  57. }
  58. .fancyTable td, .fancyTable th {
  59. white-space:nowrap;
  60. min-width:60px
  61. }
  62. .fancyTable tbody tr th {
  63. background-color: #fff;
  64. }
  65. .fancyTable tbody tr td {
  66. background-color: #fff;
  67. }
  68. .fancyTable tbody tr.odd td{
  69. background: #fff
  70. }
  71. .fancyTable tbody tr th{
  72. font-weight: 600;
  73. background: #fff
  74. }
  75. .fancyTable thead tr th,
  76. .fancyTable thead tr td,
  77. .fancyTable tfoot tr th,
  78. .fancyTable tfoot tr td {
  79. background: #fff;
  80. font-weight: bold;
  81. color:#444;
  82. }