parser_standard_options.css 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  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. /* @end */
  78. .scroolTable td, .scroolTable th {
  79. /* appearance */
  80. border: 1px solid #778899;
  81. /* size */
  82. padding: 5px;
  83. }
  84. .scroolTable {
  85. /* text */
  86. font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  87. }
  88. .scroolTable tbody tr td {
  89. /* appearance */
  90. background-color: rgb(100%, 100%, 100%);
  91. background-image: -moz-linear-gradient(
  92. top,
  93. rgba(255,255,255,0.4) 0%,
  94. rgba(255,255,255,0.2) 50%,
  95. rgba(255,255,255,0.1) 51%,
  96. rgba(255,255,255,0.0) 100%);
  97. background-image: -webkit-gradient(
  98. linear, left top, left bottom,
  99. color-stop(0%,rgba(255,255,255,0.4)),
  100. color-stop(50%,rgba(255,255,255,0.2)),
  101. color-stop(51%,rgba(255,255,255,0.1)),
  102. color-stop(100%,rgba(255,255,255,0.0)));
  103. /* text */
  104. color: #262c31;
  105. font-size: 11px;
  106. }
  107. .scroolTable tbody tr.odd td {
  108. /* appearance */
  109. background-color: #d6e0ef;
  110. background-image: -moz-linear-gradient(
  111. top,
  112. rgba(255,255,255,0.4) 0%,
  113. rgba(255,255,255,0.2) 50%,
  114. rgba(255,255,255,0.1) 51%,
  115. rgba(255,255,255,0.0) 100%);
  116. background-image: -webkit-gradient(
  117. linear, left top, left bottom,
  118. color-stop(0%,rgba(255,255,255,0.4)),
  119. color-stop(50%,rgba(255,255,255,0.2)),
  120. color-stop(51%,rgba(255,255,255,0.1)),
  121. color-stop(100%,rgba(255,255,255,0.0)));
  122. }
  123. .scroolTable thead tr th,
  124. .scroolTable thead tr td,
  125. .scroolTable tfoot tr th,
  126. .scroolTable tfoot tr td {
  127. /* appearance */
  128. background-color: rgb(25%, 60%, 25%);
  129. background-image: -moz-linear-gradient(
  130. top,
  131. rgba(255,255,255,0.4) 0%,
  132. rgba(255,255,255,0.2) 50%,
  133. rgba(255,255,255,0.1) 51%,
  134. rgba(255,255,255,0.0) 100%);
  135. background-image: -webkit-gradient(
  136. linear, left top, left bottom,
  137. color-stop(0%,rgba(255,255,255,0.4)),
  138. color-stop(50%,rgba(255,255,255,0.2)),
  139. color-stop(51%,rgba(255,255,255,0.1)),
  140. color-stop(100%,rgba(255,255,255,0.0)));
  141. /* text */
  142. color: #121517;
  143. font-size: 12px;
  144. font-weight: bold;
  145. text-shadow: 0 1px 1px #e8ebee;
  146. }