echarts-slide.css 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189
  1. table {
  2. max-width: 100%;
  3. background-color: transparent;
  4. border-collapse: collapse;
  5. border-spacing: 0;
  6. }
  7. .table {
  8. width: 100%;
  9. margin-bottom: 20px;
  10. }
  11. .table th,
  12. .table td {
  13. padding: 8px;
  14. line-height: 20px;
  15. text-align: left;
  16. vertical-align: top;
  17. border-top: 1px solid #fff;
  18. }
  19. .table th {
  20. font-weight: bold;
  21. }
  22. .table thead th {
  23. vertical-align: bottom;
  24. }
  25. .table caption + thead tr:first-child th,
  26. .table caption + thead tr:first-child td,
  27. .table colgroup + thead tr:first-child th,
  28. .table colgroup + thead tr:first-child td,
  29. .table thead:first-child tr:first-child th,
  30. .table thead:first-child tr:first-child td {
  31. border-top: 0;
  32. }
  33. .table tbody + tbody {
  34. border-top: 2px solid #fff;
  35. }
  36. .table .table {
  37. background-color: #666;
  38. }
  39. .table-condensed th,
  40. .table-condensed td {
  41. padding: 4px 5px;
  42. }
  43. .table-bordered {
  44. border: 1px solid #fff !important;
  45. border-collapse: separate;
  46. *border-collapse: collapse;
  47. border-left: 0;
  48. -webkit-border-radius: 4px;
  49. -moz-border-radius: 4px;
  50. border-radius: 4px;
  51. }
  52. .table-bordered th,
  53. .table-bordered td {
  54. border-left: 1px solid #fff;
  55. }
  56. .table-bordered caption + thead tr:first-child th,
  57. .table-bordered caption + tbody tr:first-child th,
  58. .table-bordered caption + tbody tr:first-child td,
  59. .table-bordered colgroup + thead tr:first-child th,
  60. .table-bordered colgroup + tbody tr:first-child th,
  61. .table-bordered colgroup + tbody tr:first-child td,
  62. .table-bordered thead:first-child tr:first-child th,
  63. .table-bordered tbody:first-child tr:first-child th,
  64. .table-bordered tbody:first-child tr:first-child td {
  65. border-top: 0;
  66. }
  67. .table-bordered thead:first-child tr:first-child > th:first-child,
  68. .table-bordered tbody:first-child tr:first-child > td:first-child,
  69. .table-bordered tbody:first-child tr:first-child > th:first-child {
  70. -webkit-border-top-left-radius: 4px;
  71. border-top-left-radius: 4px;
  72. -moz-border-radius-topleft: 4px;
  73. }
  74. .table-bordered thead:first-child tr:first-child > th:last-child,
  75. .table-bordered tbody:first-child tr:first-child > td:last-child,
  76. .table-bordered tbody:first-child tr:first-child > th:last-child {
  77. -webkit-border-top-right-radius: 4px;
  78. border-top-right-radius: 4px;
  79. -moz-border-radius-topright: 4px;
  80. }
  81. .table-bordered thead:last-child tr:last-child > th:first-child,
  82. .table-bordered tbody:last-child tr:last-child > td:first-child,
  83. .table-bordered tbody:last-child tr:last-child > th:first-child,
  84. .table-bordered tfoot:last-child tr:last-child > td:first-child,
  85. .table-bordered tfoot:last-child tr:last-child > th:first-child {
  86. -webkit-border-bottom-left-radius: 4px;
  87. border-bottom-left-radius: 4px;
  88. -moz-border-radius-bottomleft: 4px;
  89. }
  90. .table-bordered thead:last-child tr:last-child > th:last-child,
  91. .table-bordered tbody:last-child tr:last-child > td:last-child,
  92. .table-bordered tbody:last-child tr:last-child > th:last-child,
  93. .table-bordered tfoot:last-child tr:last-child > td:last-child,
  94. .table-bordered tfoot:last-child tr:last-child > th:last-child {
  95. -webkit-border-bottom-right-radius: 4px;
  96. border-bottom-right-radius: 4px;
  97. -moz-border-radius-bottomright: 4px;
  98. }
  99. .table-bordered tfoot + tbody:last-child tr:last-child td:first-child {
  100. -webkit-border-bottom-left-radius: 0;
  101. border-bottom-left-radius: 0;
  102. -moz-border-radius-bottomleft: 0;
  103. }
  104. .table-bordered tfoot + tbody:last-child tr:last-child td:last-child {
  105. -webkit-border-bottom-right-radius: 0;
  106. border-bottom-right-radius: 0;
  107. -moz-border-radius-bottomright: 0;
  108. }
  109. .table-bordered caption + thead tr:first-child th:first-child,
  110. .table-bordered caption + tbody tr:first-child td:first-child,
  111. .table-bordered colgroup + thead tr:first-child th:first-child,
  112. .table-bordered colgroup + tbody tr:first-child td:first-child {
  113. -webkit-border-top-left-radius: 4px;
  114. border-top-left-radius: 4px;
  115. -moz-border-radius-topleft: 4px;
  116. }
  117. .table-bordered caption + thead tr:first-child th:last-child,
  118. .table-bordered caption + tbody tr:first-child td:last-child,
  119. .table-bordered colgroup + thead tr:first-child th:last-child,
  120. .table-bordered colgroup + tbody tr:first-child td:last-child {
  121. -webkit-border-top-right-radius: 4px;
  122. border-top-right-radius: 4px;
  123. -moz-border-radius-topright: 4px;
  124. }
  125. .table-striped tbody > tr:nth-child(odd) > td,
  126. .table-striped tbody > tr:nth-child(odd) > th {
  127. background-color: #666;
  128. }
  129. .table-hover tbody tr:hover > td,
  130. .table-hover tbody tr:hover > th {
  131. background-color: #333;
  132. }
  133. .table tbody tr.success > td, .table tbody tr td.success {
  134. background-color: #dff0d8;
  135. color: #666;
  136. }
  137. .table tbody tr.error > td, .table tbody tr td.error {
  138. background-color: #f2dede;
  139. color: #666;
  140. }
  141. .table tbody tr.warning > td,.table tbody tr td.warning {
  142. background-color: #fcf8e3;
  143. color: #666;
  144. }
  145. .table tbody tr.info > td, .table tbody tr td.info {
  146. background-color: #d9edf7;
  147. color: #666;
  148. }
  149. .table-hover tbody tr.success:hover > td {
  150. background-color: #d0e9c6;
  151. }
  152. .table-hover tbody tr.error:hover > td {
  153. background-color: #ebcccc;
  154. }
  155. .table-hover tbody tr.warning:hover > td {
  156. background-color: #faf2cc;
  157. }
  158. .table-hover tbody tr.info:hover > td {
  159. background-color: #c4e3f3;
  160. }