mirror of
https://github.com/open-webui/open-webui.git
synced 2026-05-06 10:58:17 -05:00
[GH-ISSUE #2255] enhancement: Unselectable sidebar elements #28340
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @javimosch on GitHub (May 14, 2024).
Original GitHub issue: https://github.com/open-webui/open-webui/issues/2255
Is your feature request related to a problem? Please describe.
Sometimes we might select by mistake the elements in the sidebar (and clicking becomes impossible unless we unselect things first)
Describe the solution you'd like
Simply add an unselectable css rule:
.unselectable { -moz-user-select: none; /* Firefox */ -webkit-user-select: none; /* Safari and Chrome */ -ms-user-select: none; /* Internet Explorer */ user-select: none; /* Other browsers */ }Describe alternatives you've considered
Additional context
@javimosch commented on GitHub (May 14, 2024):
I can work on this if OK for you.