4d4ce7a7be04a05564592d4b185c55a02feb943115858433a9bd03e3b0e7833637b0ea41e3db23f6ba24767bd985c9096a40bbdd76c62a2ff93b1dd4045af1 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  1. /*!
  2. * Below is an unaltered fragment from Twitter Bootstrap
  3. */
  4. /*!
  5. * Bootstrap v2.2.1
  6. *
  7. * Copyright 2012 Twitter, Inc
  8. * Licensed under the Apache License v2.0
  9. * http://www.apache.org/licenses/LICENSE-2.0
  10. *
  11. * Designed and built with all the love in the world @twitter by @mdo and @fat.
  12. */
  13. table {
  14. max-width: 100%;
  15. background-color: transparent;
  16. border-collapse: collapse;
  17. border-spacing: 0;
  18. }
  19. .table {
  20. width: 100%;
  21. margin-bottom: 20px;
  22. }
  23. .table th,
  24. .table td {
  25. padding: 8px;
  26. line-height: 20px;
  27. text-align: left;
  28. vertical-align: top;
  29. border-top: 1px solid #dddddd;
  30. }
  31. .table th {
  32. font-weight: bold;
  33. }
  34. .table thead th {
  35. vertical-align: bottom;
  36. }
  37. .table caption + thead tr:first-child th,
  38. .table caption + thead tr:first-child td,
  39. .table colgroup + thead tr:first-child th,
  40. .table colgroup + thead tr:first-child td,
  41. .table thead:first-child tr:first-child th,
  42. .table thead:first-child tr:first-child td {
  43. border-top: 0;
  44. }
  45. .table tbody + tbody {
  46. border-top: 2px solid #dddddd;
  47. }
  48. .table-condensed th,
  49. .table-condensed td {
  50. padding: 4px 5px;
  51. }
  52. .table-bordered {
  53. border: 1px solid #dddddd;
  54. border-collapse: separate;
  55. *border-collapse: collapse;
  56. border-left: 0;
  57. -webkit-border-radius: 4px;
  58. -moz-border-radius: 4px;
  59. border-radius: 4px;
  60. }
  61. .table-bordered th,
  62. .table-bordered td {
  63. border-left: 1px solid #dddddd;
  64. }
  65. .table-bordered caption + thead tr:first-child th,
  66. .table-bordered caption + tbody tr:first-child th,
  67. .table-bordered caption + tbody tr:first-child td,
  68. .table-bordered colgroup + thead tr:first-child th,
  69. .table-bordered colgroup + tbody tr:first-child th,
  70. .table-bordered colgroup + tbody tr:first-child td,
  71. .table-bordered thead:first-child tr:first-child th,
  72. .table-bordered tbody:first-child tr:first-child th,
  73. .table-bordered tbody:first-child tr:first-child td {
  74. border-top: 0;
  75. }
  76. .table-bordered thead:first-child tr:first-child th:first-child,
  77. .table-bordered tbody:first-child tr:first-child td:first-child {
  78. -webkit-border-top-left-radius: 4px;
  79. border-top-left-radius: 4px;
  80. -moz-border-radius-topleft: 4px;
  81. }
  82. .table-bordered thead:first-child tr:first-child th:last-child,
  83. .table-bordered tbody:first-child tr:first-child td:last-child {
  84. -webkit-border-top-right-radius: 4px;
  85. border-top-right-radius: 4px;
  86. -moz-border-radius-topright: 4px;
  87. }
  88. .table-bordered thead:last-child tr:last-child th:first-child,
  89. .table-bordered tbody:last-child tr:last-child td:first-child,
  90. .table-bordered tfoot:last-child tr:last-child td:first-child {
  91. -webkit-border-radius: 0 0 0 4px;
  92. -moz-border-radius: 0 0 0 4px;
  93. border-radius: 0 0 0 4px;
  94. -webkit-border-bottom-left-radius: 4px;
  95. border-bottom-left-radius: 4px;
  96. -moz-border-radius-bottomleft: 4px;
  97. }
  98. .table-bordered thead:last-child tr:last-child th:last-child,
  99. .table-bordered tbody:last-child tr:last-child td:last-child,
  100. .table-bordered tfoot:last-child tr:last-child td:last-child {
  101. -webkit-border-bottom-right-radius: 4px;
  102. border-bottom-right-radius: 4px;
  103. -moz-border-radius-bottomright: 4px;
  104. }
  105. .table-bordered caption + thead tr:first-child th:first-child,
  106. .table-bordered caption + tbody tr:first-child td:first-child,
  107. .table-bordered colgroup + thead tr:first-child th:first-child,
  108. .table-bordered colgroup + tbody tr:first-child td:first-child {
  109. -webkit-border-top-left-radius: 4px;
  110. border-top-left-radius: 4px;
  111. -moz-border-radius-topleft: 4px;
  112. }
  113. .table-bordered caption + thead tr:first-child th:last-child,
  114. .table-bordered caption + tbody tr:first-child td:last-child,
  115. .table-bordered colgroup + thead tr:first-child th:last-child,
  116. .table-bordered colgroup + tbody tr:first-child td:last-child {
  117. -webkit-border-top-right-radius: 4px;
  118. border-top-right-radius: 4px;
  119. -moz-border-radius-topright: 4px;
  120. }
  121. .table-striped tbody tr:nth-child(odd) td,
  122. .table-striped tbody tr:nth-child(odd) th {
  123. background-color: #f9f9f9;
  124. }
  125. .table-hover tbody tr:hover td,
  126. .table-hover tbody tr:hover th {
  127. background-color: #f5f5f5;
  128. }