| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182 |
- .table {
- margin-bottom: 0 !important;
- border-bottom: 1px solid #dddddd;
- border-collapse: separate !important;
- }
- .fixed-table-container {
- position: relative;
- padding-top: 38px;
- clear: both;
- border: 1px solid #dddddd;
- border-radius: 4px;
- -webkit-border-radius: 4px;
- -moz-border-radius: 4px;
- }
- .fixed-table-header {
- height: 38px;
- position: absolute;
- top: 0;
- right: 0;
- left: 0;
- border-bottom: 1px solid #dddddd;
- border-radius: 4px 4px 0 0;
- -webkit-border-radius: 4px 4px 0 0;
- -moz-border-radius: 4px 4px 0 0;
- }
- .fixed-table-body {
- overflow-x: hidden;
- overflow-y: auto;
- height: 100%;
- }
- .fixed-table-body table {
- width: 100%;
- overflow-x: hidden;
- overflow-y: auto;
- }
- .fixed-table-body thead th {
- height: 0;
- padding: 0;
- margin: 0;
- border: none;
- }
- .fixed-table-body thead th .th-inner {
- /*position: absolute;*/
- top: 0;
- padding: 8px;
- line-height: 22px;
- vertical-align: top;
- border-left: 1px solid #dddddd;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- .fixed-table-body thead th:first-child .th-inner {
- border-left: none;
- border-top-left-radius: 4px;
- -webkit-border-top-left-radius: 4px;
- -moz-border-radius-topleft: 4px;
- }
- .fixed-table-body tbody td {
- border-left: 1px solid #dddddd;
- }
- .fixed-table-body tbody td:first-child {
- border-left: none;
- }
- .fixed-table-body tbody .selected td {
- background-color: #d9edf7;
- }
- .fixed-table-body .checkbox {
- margin-left: auto;
- margin-right: auto;
- }
- .fixed-table-body .no-records-found {
- text-align: center;
- }
- .fixed-table-pagination .pagination,
- .fixed-table-pagination .pagination-detail {
- margin-top: 10px;
- margin-bottom: 10px;
- }
- .fixed-table-pagination .pagination a {
- padding: 6px 12px;
- line-height: 1.428571429;
- }
- .fixed-table-pagination .pagination-info {
- line-height: 34px;
- margin-right: 5px;
- }
- .fixed-table-pagination .btn-group {
- position: relative;
- display: inline-block;
- vertical-align: middle;
- }
- .fixed-table-pagination .dropup .dropdown-menu {
- margin-bottom: 0;
- }
- .fixed-table-pagination .page-list {
- display: inline-block;
- }
- .fixed-table-toolbar .columns {
- margin-left: 5px;
- }
- .fixed-table-toolbar .columns label {
- display: block;
- padding: 3px 20px;
- clear: both;
- font-weight: normal;
- line-height: 1.428571429;
- }
- .fixed-table-toolbar .bars,
- .fixed-table-toolbar .search,
- .fixed-table-toolbar .columns {
- position: relative;
- margin-top: 10px;
- margin-bottom: 10px;
- line-height: 34px;
- }
- .fixed-table-pagination li.disabled a {
- pointer-events: none;
- cursor: default;
- }
- .fixed-table-loading {
- display: none;
- position: absolute;
- top: 38px;
- right: 0;
- bottom: 0;
- left: 0;
- z-index: 10000;
- background-color: #fff;
- text-align: center;
- }
- .fixed-table-body .card-view .title {
- font-weight: bold;
- display: inline-block;
- min-width: 30%;
- text-align: left !important;
- }
- /* support bootstrap 2 */
- .fixed-table-body thead th .th-inner {
- box-sizing: border-box;
- }
- .table th, .table td {
- vertical-align: middle;
- }
- .fixed-table-toolbar .dropdown-menu {
- text-align: left;
- }
- /* support bootstrap 3 */
- .table thead>tr>th {
- padding: 0;
- margin: 0;
- border: none;
- }
|