|
1234567891011121314151617181920212223242526272829303132333435363738 |
- table.table {
- .dropdown-actions {
- display: inline-block ;
- }
-
- .actions {
- white-space: nowrap;
- text-align: center;
- }
- }
-
- .table-filters-line th {
- font-weight: 400;
- position: relative;
- }
-
- .table td, .table th {
- padding: 0.35rem;
- }
-
- .table th input {
- width: 100%;
- }
- .card-table, table {
- .badge {
- white-space: normal;
- }
- }
-
-
- table.fixedHeader-floating{margin-top: 0px !important;}
- table th.sorting_asc, table th.sorting_desc{border-top:2px solid var(--success);}
- .card-body table th.filtered{border-top:2px solid var(--primary);}
- /*.card-body table.lc-table-list th{border-top:3px solid var(--success);}*/
- table th.filtered{border-top:2px solid var(--primary);}
- .card-body table th.sorted, table th.sorting_asc, table th.sorting_desc{border-top:2px solid var(--success);}
- .card-body table th.sorted.filtered{border-top:0px; position: relative;}
- .card-body table th.sorted.filtered:after{ content: ''; height: 2px; position: absolute; left: 0; width: 100%; right: 0; top: -1px; background: linear-gradient(to right, var(--success) 0%, var(--success) 50%, var(--primary) 50%, var(--primary) 100%);}
|