mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-04 06:28:28 +08:00
Fixed bug that made some table cells unselectable when table controller had no loadingStatus.
This commit is contained in:
parent
ecb95b5f5e
commit
e492b28aac
@ -26,10 +26,10 @@ class Table<T>(
|
|||||||
|
|
||||||
this@Table.className?.let { classList.add(it) }
|
this@Table.className?.let { classList.add(it) }
|
||||||
|
|
||||||
div {
|
ctrl.loadingStatus?.let { loadingStatus ->
|
||||||
className = "pw-table-notification"
|
div {
|
||||||
|
className = "pw-table-notification"
|
||||||
|
|
||||||
ctrl.loadingStatus?.let { loadingStatus ->
|
|
||||||
observe(loadingStatus) { status ->
|
observe(loadingStatus) { status ->
|
||||||
when (status) {
|
when (status) {
|
||||||
LoadingStatus.Uninitialized,
|
LoadingStatus.Uninitialized,
|
||||||
@ -49,6 +49,7 @@ class Table<T>(
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
thead {
|
thead {
|
||||||
tr {
|
tr {
|
||||||
className = "pw-table-row pw-table-header-row"
|
className = "pw-table-row pw-table-header-row"
|
||||||
@ -208,7 +209,7 @@ class Table<T>(
|
|||||||
background-color: var(--pw-bg-color);
|
background-color: var(--pw-bg-color);
|
||||||
border-collapse: collapse;
|
border-collapse: collapse;
|
||||||
}
|
}
|
||||||
|
|
||||||
.pw-table-notification {
|
.pw-table-notification {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 0;
|
top: 0;
|
||||||
@ -230,7 +231,7 @@ class Table<T>(
|
|||||||
z-index: 2;
|
z-index: 2;
|
||||||
}
|
}
|
||||||
|
|
||||||
.pw-table > tbody {
|
.pw-table > tbody, .pw-table > tfoot {
|
||||||
user-select: text;
|
user-select: text;
|
||||||
cursor: text;
|
cursor: text;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user