mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-05 07:18:29 +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"
|
||||||
@ -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