Merge pull request #3889 from IgorA100/patch-33
Feat: Fixing table header when viewing logpull/3892/head
commit
8e5870a919
|
@ -36,6 +36,23 @@ th[data-field="DateTime"] {
|
|||
height: 100%;
|
||||
}
|
||||
|
||||
.sticky #logsTable .bootstrap-table {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
height: 100%;
|
||||
overflow-y: hidden;
|
||||
}
|
||||
|
||||
.sticky #logsTable .bootstrap-table .fixed-table-container {
|
||||
height: 100%;
|
||||
overflow-y: auto;
|
||||
}
|
||||
|
||||
.sticky #logsTable .bootstrap-table .fixed-table-container thead {
|
||||
position: sticky;
|
||||
top: -1px;
|
||||
}
|
||||
|
||||
.bootstrap-table .fixed-table-container .table td,
|
||||
.bootstrap-table .fixed-table-container .table th {
|
||||
vertical-align: top!important;
|
||||
|
|
Loading…
Reference in New Issue