Merge pull request #3889 from IgorA100/patch-33

Feat: Fixing table header when viewing log
pull/3892/head
Isaac Connor 2024-03-23 11:32:38 -04:00 committed by GitHub
commit 8e5870a919
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 17 additions and 0 deletions

View File

@ -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;