defaultTheme.css 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  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. /* position */
  29. /*margin: 0;*/
  30. /* size */
  31. /*padding: 0;*/
  32. /* text */
  33. /*font-size: 100%;
  34. font: inherit;
  35. vertical-align: top;*/
  36. }
  37. .fht-table {
  38. /* appearance */
  39. border-collapse: collapse;
  40. border-spacing: 0;
  41. }
  42. /* @end */
  43. /* @group Content */
  44. .fht-table-wrapper,
  45. .fht-table-wrapper .fht-thead,
  46. .fht-table-wrapper .fht-tfoot,
  47. .fht-table-wrapper .fht-fixed-column .fht-tbody,
  48. .fht-table-wrapper .fht-fixed-body .fht-tbody,
  49. .fht-table-wrapper .fht-tbody {
  50. /* appearance */
  51. overflow: hidden;
  52. /* position */
  53. position: relative;
  54. }
  55. .fht-table-wrapper .fht-fixed-body .fht-tbody,
  56. .fht-table-wrapper .fht-tbody {
  57. /* appearance */
  58. overflow: auto;
  59. }
  60. .fht-table-wrapper .fht-table .fht-cell {
  61. /* appearance */
  62. overflow: hidden;
  63. /* size */
  64. height: 1px;
  65. }
  66. .fht-table-wrapper .fht-fixed-column,
  67. .fht-table-wrapper .fht-fixed-body {
  68. /* position */
  69. top: 0;
  70. left: 0;
  71. position: absolute;
  72. }
  73. .fht-table-wrapper .fht-fixed-column {
  74. /* position */
  75. z-index: 1;
  76. }
  77. .fht-table-wrapper .fht-thead {
  78. display:flex;
  79. }
  80. .fht-table-wrapper .fht-thead .fht-thead-box {
  81. width:14px;
  82. border: 1px solid #eee;
  83. background-color: #F6F6F6;
  84. }
  85. /* @end */