bootstrap-table.css 3.3 KB

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