bootstrap-table.css 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228
  1. @charset "UTF-8";
  2. /**
  3. * @author zhixin wen <wenzhixin2010@gmail.com>
  4. * version: 1.13.5
  5. * https://github.com/wenzhixin/bootstrap-table/
  6. */
  7. .bootstrap-table .fixed-table-toolbar:after {
  8. content: "";
  9. display: block;
  10. clear: both;
  11. }
  12. .bootstrap-table .fixed-table-toolbar .bs-bars,
  13. .bootstrap-table .fixed-table-toolbar .search,
  14. .bootstrap-table .fixed-table-toolbar .columns {
  15. position: relative;
  16. margin-top: 10px;
  17. margin-bottom: 10px;
  18. }
  19. .bootstrap-table .fixed-table-toolbar .columns .btn-group > .btn-group {
  20. display: inline-block;
  21. margin-left: -1px !important;
  22. }
  23. .bootstrap-table .fixed-table-toolbar .columns .btn-group > .btn-group:first-child > .btn {
  24. border-top-left-radius: 4px;
  25. border-bottom-left-radius: 4px;
  26. }
  27. .bootstrap-table .fixed-table-toolbar .columns .btn-group > .btn-group:last-child > .btn {
  28. border-top-right-radius: 4px;
  29. border-bottom-right-radius: 4px;
  30. }
  31. .bootstrap-table .fixed-table-toolbar .columns .btn-group > .btn-group > .btn {
  32. border-radius: 0;
  33. }
  34. .bootstrap-table .fixed-table-toolbar .columns .dropdown-menu {
  35. text-align: left;
  36. max-height: 300px;
  37. overflow: auto;
  38. }
  39. .bootstrap-table .fixed-table-toolbar .columns label {
  40. display: block;
  41. padding: 3px 20px;
  42. clear: both;
  43. font-weight: normal;
  44. line-height: 1.428571429;
  45. }
  46. .bootstrap-table .fixed-table-toolbar .columns-left {
  47. margin-right: 5px;
  48. }
  49. .bootstrap-table .fixed-table-toolbar .columns-right {
  50. margin-left: 5px;
  51. }
  52. .bootstrap-table .fixed-table-toolbar .pull-right .dropdown-menu {
  53. right: 0;
  54. left: auto;
  55. }
  56. .bootstrap-table .fixed-table-container {
  57. position: relative;
  58. clear: both;
  59. }
  60. .bootstrap-table .fixed-table-container.fixed-height:not(.has-footer) {
  61. border-bottom: 1px solid #dee2e6;
  62. }
  63. .bootstrap-table .fixed-table-container.fixed-height .fixed-table-border {
  64. border-left: 1px solid #dee2e6;
  65. border-right: 1px solid #dee2e6;
  66. }
  67. .bootstrap-table .fixed-table-container.fixed-height .table thead th {
  68. border-bottom: 1px solid #dee2e6;
  69. }
  70. .bootstrap-table .fixed-table-container.fixed-height .table-dark thead th {
  71. border-bottom: 1px solid #32383e;
  72. }
  73. .bootstrap-table .fixed-table-container .fixed-table-header {
  74. overflow: hidden;
  75. }
  76. .bootstrap-table .fixed-table-container .fixed-table-body {
  77. overflow-x: auto;
  78. overflow-y: auto;
  79. height: 100%;
  80. }
  81. .bootstrap-table .fixed-table-container .fixed-table-body .fixed-table-loading {
  82. display: none;
  83. position: absolute;
  84. top: 42px;
  85. right: 0;
  86. bottom: 0;
  87. left: 0;
  88. z-index: 99;
  89. background-color: #fff;
  90. text-align: center;
  91. }
  92. .bootstrap-table .fixed-table-container .table {
  93. width: 100%;
  94. margin-bottom: 0 !important;
  95. }
  96. .bootstrap-table .fixed-table-container .table th,
  97. .bootstrap-table .fixed-table-container .table td {
  98. vertical-align: middle;
  99. box-sizing: border-box;
  100. }
  101. .bootstrap-table .fixed-table-container .table thead th {
  102. vertical-align: bottom;
  103. padding: 0;
  104. margin: 0;
  105. }
  106. .bootstrap-table .fixed-table-container .table thead th:focus {
  107. outline: 0 solid transparent;
  108. }
  109. .bootstrap-table .fixed-table-container .table thead th.detail {
  110. width: 30px;
  111. }
  112. .bootstrap-table .fixed-table-container .table thead th .th-inner {
  113. padding: 0.75rem;
  114. vertical-align: bottom;
  115. overflow: hidden;
  116. text-overflow: ellipsis;
  117. white-space: nowrap;
  118. }
  119. .bootstrap-table .fixed-table-container .table thead th .sortable {
  120. cursor: pointer;
  121. background-position: right;
  122. background-repeat: no-repeat;
  123. padding-right: 30px;
  124. }
  125. .bootstrap-table .fixed-table-container .table thead th .both {
  126. background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABMAAAATCAQAAADYWf5HAAAAkElEQVQoz7X QMQ5AQBCF4dWQSJxC5wwax1Cq1e7BAdxD5SL+Tq/QCM1oNiJidwox0355mXnG/DrEtIQ6azioNZQxI0ykPhTQIwhCR+BmBYtlK7kLJYwWCcJA9M4qdrZrd8pPjZWPtOqdRQy320YSV17OatFC4euts6z39GYMKRPCTKY9UnPQ6P+GtMRfGtPnBCiqhAeJPmkqAAAAAElFTkSuQmCC");
  127. }
  128. .bootstrap-table .fixed-table-container .table thead th .asc {
  129. background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABMAAAATCAYAAAByUDbMAAAAZ0lEQVQ4y2NgGLKgquEuFxBPAGI2ahhWCsS/gDibUoO0gPgxEP8H4ttArEyuQYxAPBdqEAxPBImTY5gjEL9DM+wTENuQahAvEO9DMwiGdwAxOymGJQLxTyD+jgWDxCMZRsEoGAVoAADeemwtPcZI2wAAAABJRU5ErkJggg==");
  130. }
  131. .bootstrap-table .fixed-table-container .table thead th .desc {
  132. background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABMAAAATCAYAAAByUDbMAAAAZUlEQVQ4y2NgGAWjYBSggaqGu5FA/BOIv2PBIPFEUgxjB+IdQPwfC94HxLykus4GiD+hGfQOiB3J8SojEE9EM2wuSJzcsFMG4ttQgx4DsRalkZENxL+AuJQaMcsGxBOAmGvopk8AVz1sLZgg0bsAAAAASUVORK5CYII= ");
  133. }
  134. .bootstrap-table .fixed-table-container .table tbody tr.selected td {
  135. background-color: rgba(0, 0, 0, 0.075);
  136. }
  137. .bootstrap-table .fixed-table-container .table tbody tr.no-records-found {
  138. text-align: center;
  139. }
  140. .bootstrap-table .fixed-table-container .table tbody tr .card-view .title {
  141. font-weight: bold;
  142. display: inline-block;
  143. min-width: 30%;
  144. text-align: left !important;
  145. }
  146. .bootstrap-table .fixed-table-container .table .bs-checkbox {
  147. text-align: center;
  148. }
  149. .bootstrap-table .fixed-table-container .table input[type=radio],
  150. .bootstrap-table .fixed-table-container .table input[type=checkbox] {
  151. margin: 0 auto !important;
  152. }
  153. .bootstrap-table .fixed-table-container .table.table-sm .th-inner {
  154. padding: 0.3rem;
  155. }
  156. .bootstrap-table .fixed-table-container .fixed-table-footer {
  157. overflow: hidden;
  158. }
  159. .bootstrap-table .fixed-table-pagination:after {
  160. content: "";
  161. display: block;
  162. clear: both;
  163. }
  164. .bootstrap-table .fixed-table-pagination > .pagination-detail,
  165. .bootstrap-table .fixed-table-pagination > .pagination {
  166. margin-top: 10px;
  167. margin-bottom: 10px;
  168. }
  169. .bootstrap-table .fixed-table-pagination > .pagination-detail .pagination-info {
  170. line-height: 34px;
  171. margin-right: 5px;
  172. }
  173. .bootstrap-table .fixed-table-pagination > .pagination-detail .page-list {
  174. display: inline-block;
  175. }
  176. .bootstrap-table .fixed-table-pagination > .pagination-detail .page-list .btn-group {
  177. position: relative;
  178. display: inline-block;
  179. vertical-align: middle;
  180. }
  181. .bootstrap-table .fixed-table-pagination > .pagination-detail .page-list .btn-group .dropdown-menu {
  182. margin-bottom: 0;
  183. }
  184. .bootstrap-table .fixed-table-pagination > .pagination ul.pagination {
  185. margin: 0;
  186. }
  187. .bootstrap-table .fixed-table-pagination > .pagination ul.pagination a {
  188. padding: 6px 12px;
  189. line-height: 1.428571429;
  190. }
  191. .bootstrap-table .fixed-table-pagination > .pagination ul.pagination li.page-intermediate a {
  192. color: #c8c8c8;
  193. }
  194. .bootstrap-table .fixed-table-pagination > .pagination ul.pagination li.page-intermediate a:before {
  195. content: "⬅";
  196. }
  197. .bootstrap-table .fixed-table-pagination > .pagination ul.pagination li.page-intermediate a:after {
  198. content: "➡";
  199. }
  200. .bootstrap-table .fixed-table-pagination > .pagination ul.pagination li.disabled a {
  201. pointer-events: none;
  202. cursor: default;
  203. }
  204. .bootstrap-table.fullscreen {
  205. position: fixed;
  206. top: 0;
  207. left: 0;
  208. z-index: 1050;
  209. width: 100% !important;
  210. background: #FFF;
  211. }
  212. /* calculate scrollbar width */
  213. div.fixed-table-scroll-inner {
  214. width: 100%;
  215. height: 200px;
  216. }
  217. div.fixed-table-scroll-outer {
  218. top: 0;
  219. left: 0;
  220. visibility: hidden;
  221. width: 200px;
  222. height: 150px;
  223. overflow: hidden;
  224. }
  225. /*# sourceMappingURL=bootstrap-table.css.map */