Added cursor pointer to the search select placeholder to indicate that it can be clicked.

This commit is contained in:
MattMo 2023-07-27 16:43:19 -07:00
parent c7113dc71b
commit 7a4e43979c

View File

@ -36,6 +36,7 @@ class SearchSelect extends IgniteElement {
//Placeholder
new div()
.hide([this.value, this.searching], (value, searching) => value || searching)
.class("cursor-pointer")
.style("flex", 1)
.style("opacity", "0.5")
.style("overflow", "auto")