[GH-ISSUE #2255] enhancement: Unselectable sidebar elements #28340

Closed
opened 2026-04-25 03:00:29 -05:00 by GiteaMirror · 1 comment
Owner

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

Screenshot from 2024-05-14 10-36-25

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** ![Screenshot from 2024-05-14 10-36-25](https://github.com/open-webui/open-webui/assets/12900508/b8ff9e8b-ee62-4324-92fa-ba956d9020b5)
Author
Owner

@javimosch commented on GitHub (May 14, 2024):

I can work on this if OK for you.

<!-- gh-comment-id:2109604940 --> @javimosch commented on GitHub (May 14, 2024): I can work on this if OK for you.
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/open-webui#28340