Originally created by @javimosch on GitHub (May 14, 2024).
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
Originally created by @javimosch on GitHub (May 14, 2024).
**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**

Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
Originally created by @javimosch on GitHub (May 14, 2024).
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.