bootstrap-table.css 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188
  1. .table {
  2. margin-bottom: 0 !important;
  3. border-bottom: 1px solid #dddddd;
  4. border-collapse: collapse !important;
  5. border-radius: 1px;
  6. }
  7. .fixed-table-container {
  8. position: relative;
  9. clear: both;
  10. border: 1px solid #dddddd;
  11. border-radius: 4px;
  12. -webkit-border-radius: 4px;
  13. -moz-border-radius: 4px;
  14. }
  15. .fixed-table-header {
  16. height: 37px;
  17. overflow: hidden;
  18. border-bottom: 1px solid #dddddd;
  19. border-radius: 4px 4px 0 0;
  20. -webkit-border-radius: 4px 4px 0 0;
  21. -moz-border-radius: 4px 4px 0 0;
  22. }
  23. .fixed-table-body {
  24. overflow-x: hidden;
  25. overflow-y: auto;
  26. height: 100%;
  27. }
  28. .fixed-table-container table {
  29. width: 100%;
  30. overflow-x: hidden;
  31. overflow-y: auto;
  32. }
  33. .fixed-table-container thead th {
  34. height: 0;
  35. padding: 0;
  36. margin: 0;
  37. border-left: 1px solid #dddddd;
  38. }
  39. .fixed-table-container thead th:first-child {
  40. border-left: none;
  41. border-top-left-radius: 4px;
  42. -webkit-border-top-left-radius: 4px;
  43. -moz-border-radius-topleft: 4px;
  44. }
  45. .fixed-table-container thead th .th-inner {
  46. padding: 8px;
  47. line-height: 24px;
  48. vertical-align: top;
  49. overflow: hidden;
  50. text-overflow: ellipsis;
  51. white-space: nowrap;
  52. }
  53. .fixed-table-container tbody td {
  54. border-left: 1px solid #dddddd;
  55. }
  56. .fixed-table-container tbody tr:first-child td {
  57. border-top: none;
  58. }
  59. .fixed-table-container tbody td:first-child {
  60. border-left: none;
  61. }
  62. .fixed-table-container tbody .selected td {
  63. background-color: #d9edf7;
  64. }
  65. .fixed-table-container .bs-checkbox {
  66. text-align: center;
  67. }
  68. .fixed-table-container .bs-checkbox .th-inner {
  69. padding: 8px 0;
  70. }
  71. .fixed-table-container input[type="radio"],
  72. .fixed-table-container input[type="checkbox"] {
  73. margin: 0 auto !important;
  74. }
  75. .fixed-table-container .no-records-found {
  76. text-align: center;
  77. }
  78. .fixed-table-pagination .pagination,
  79. .fixed-table-pagination .pagination-detail {
  80. margin-top: 10px;
  81. margin-bottom: 10px;
  82. }
  83. .fixed-table-pagination .pagination a {
  84. padding: 6px 12px;
  85. line-height: 1.428571429;
  86. }
  87. .fixed-table-pagination .pagination-info {
  88. line-height: 34px;
  89. margin-right: 5px;
  90. }
  91. .fixed-table-pagination .btn-group {
  92. position: relative;
  93. display: inline-block;
  94. vertical-align: middle;
  95. }
  96. .fixed-table-pagination .dropup .dropdown-menu {
  97. margin-bottom: 0;
  98. }
  99. .fixed-table-pagination .page-list {
  100. display: inline-block;
  101. }
  102. .fixed-table-toolbar .columns {
  103. margin-left: 5px;
  104. }
  105. .fixed-table-toolbar .columns label {
  106. display: block;
  107. padding: 3px 20px;
  108. clear: both;
  109. font-weight: normal;
  110. line-height: 1.428571429;
  111. }
  112. .fixed-table-toolbar .bars,
  113. .fixed-table-toolbar .search,
  114. .fixed-table-toolbar .columns {
  115. position: relative;
  116. margin-top: 10px;
  117. margin-bottom: 10px;
  118. line-height: 34px;
  119. }
  120. .fixed-table-pagination li.disabled a {
  121. pointer-events: none;
  122. cursor: default;
  123. }
  124. .fixed-table-loading {
  125. display: none;
  126. position: absolute;
  127. top: 38px;
  128. right: 0;
  129. bottom: 0;
  130. left: 0;
  131. z-index: 10000;
  132. background-color: #fff;
  133. text-align: center;
  134. }
  135. .fixed-table-body .card-view .title {
  136. font-weight: bold;
  137. display: inline-block;
  138. min-width: 30%;
  139. text-align: left !important;
  140. }
  141. /* support bootstrap 2 */
  142. .fixed-table-body thead th .th-inner {
  143. box-sizing: border-box;
  144. }
  145. .table th, .table td {
  146. vertical-align: middle;
  147. box-sizing: border-box;
  148. }
  149. .fixed-table-toolbar .dropdown-menu {
  150. text-align: left;
  151. }
  152. /* support bootstrap 3 */
  153. .table thead>tr>th {
  154. padding: 0;
  155. margin: 0;
  156. }