Added scrollable QSO table

pull/2645/head
Andreas 2023-11-01 21:56:33 +01:00
rodzic df4c24f9a2
commit 0f1f619e50
2 zmienionych plików z 23 dodań i 2 usunięć

Wyświetl plik

@ -116,7 +116,7 @@
</div>
<div class="card-body">
<div class="qsoList">
<table class="table table-condensed table-striped table-sm" id="qsoTable">
<table class="table table-condensed table-striped table-sm sfletable" id="qsoTable">
<thead>
<tr>
<th><?php echo lang('general_word_date'); ?></th>

Wyświetl plik

@ -554,4 +554,25 @@ div#station_logbooks_linked_table_paginate {
input:invalid {
border-color: red;
}
}
.sfletable{
height: 440px;
}
.sfletable table {
width: 100%;
}
.sfletable thead, tbody tr {
display: block;
width: 100%;
table-layout: fixed;
display: inline-table;
}
.sfletable tbody {
overflow-y: scroll;
max-height: 380px;
position: absolute;
}