fix
Helius
2021-11-08 9c791d431038fe79a111805762ee2f42c96b51c5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
.fixed-table-header-columns,
.fixed-table-body-columns {
    position: absolute;
    background-color: #fff;
    display: none;
    box-sizing: border-box;
    overflow: hidden;
}
 
.fixed-table-header-columns .table,
.fixed-table-body-columns .table {
    border-right: 1px solid #ddd;
}
 
.fixed-table-header-columns .table.table-no-bordered,
.fixed-table-body-columns .table.table-no-bordered {
    border-right: 1px solid transparent;
}
 
.fixed-table-body-columns table {
    position: absolute;
    animation: none;
}
 
.bootstrap-table .table-hover > tbody > tr.hover > td{
    background-color: #f5f5f5;
}