From 0f1f619e50e3b8a67473a2576ab4f95806f92e39 Mon Sep 17 00:00:00 2001 From: Andreas <6977712+AndreasK79@users.noreply.github.com> Date: Wed, 1 Nov 2023 21:56:33 +0100 Subject: [PATCH] Added scrollable QSO table --- application/views/simplefle/index.php | 2 +- assets/css/general.css | 23 ++++++++++++++++++++++- 2 files changed, 23 insertions(+), 2 deletions(-) diff --git a/application/views/simplefle/index.php b/application/views/simplefle/index.php index 7cddcedd..dada123f 100644 --- a/application/views/simplefle/index.php +++ b/application/views/simplefle/index.php @@ -116,7 +116,7 @@
- +
diff --git a/assets/css/general.css b/assets/css/general.css index 5e101bb5..35c83820 100644 --- a/assets/css/general.css +++ b/assets/css/general.css @@ -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; +}