fix: not allow selecting texts that shouldn't be selectable (#8864)
Added CSS to apply select none to cursor pointer, default, not-allowed, label and buton
This commit is contained in:
parent
89dd39b5ff
commit
f4101f9031
1 changed files with 8 additions and 0 deletions
|
|
@ -1247,6 +1247,14 @@
|
|||
@apply absolute right-3 w-14 -translate-y-3.5 cursor-text rounded-sm px-2 py-[1px] text-center hover:ring-[1px] hover:ring-slider-input-border;
|
||||
}
|
||||
|
||||
.cursor-pointer,
|
||||
.cursor-default,
|
||||
.cursor-not-allowed,
|
||||
label,
|
||||
button {
|
||||
@apply select-none;
|
||||
}
|
||||
|
||||
.btn-add-input-list {
|
||||
@apply flex h-6 w-full items-center justify-center rounded-md p-2 text-sm hover:bg-muted;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue