From e492b28aacfe640c51eff013a7116b78bb394c68 Mon Sep 17 00:00:00 2001 From: Daan Vanden Bosch Date: Fri, 3 Dec 2021 21:16:40 +0100 Subject: [PATCH] Fixed bug that made some table cells unselectable when table controller had no loadingStatus. --- .../kotlin/world/phantasmal/webui/widgets/Table.kt | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/webui/src/main/kotlin/world/phantasmal/webui/widgets/Table.kt b/webui/src/main/kotlin/world/phantasmal/webui/widgets/Table.kt index 49531158..362024e7 100644 --- a/webui/src/main/kotlin/world/phantasmal/webui/widgets/Table.kt +++ b/webui/src/main/kotlin/world/phantasmal/webui/widgets/Table.kt @@ -26,10 +26,10 @@ class Table( this@Table.className?.let { classList.add(it) } - div { - className = "pw-table-notification" + ctrl.loadingStatus?.let { loadingStatus -> + div { + className = "pw-table-notification" - ctrl.loadingStatus?.let { loadingStatus -> observe(loadingStatus) { status -> when (status) { LoadingStatus.Uninitialized, @@ -49,6 +49,7 @@ class Table( } } } + thead { tr { className = "pw-table-row pw-table-header-row" @@ -208,7 +209,7 @@ class Table( background-color: var(--pw-bg-color); border-collapse: collapse; } - + .pw-table-notification { position: absolute; top: 0; @@ -230,7 +231,7 @@ class Table( z-index: 2; } - .pw-table > tbody { + .pw-table > tbody, .pw-table > tfoot { user-select: text; cursor: text; }