no user-select when splitter is dragging (#2965)

This commit is contained in:
Jonathan Dobson
2025-07-16 09:18:33 -04:00
committed by GitHub
parent 4a4d063e35
commit 38b8941223
2 changed files with 20 additions and 15 deletions

View File

@@ -109,3 +109,10 @@ body,
.cm-search.cm-panel {
@apply text-sm;
}
.no-select-global * {
user-select: none !important;
-webkit-user-select: none !important;
-moz-user-select: none !important;
-ms-user-select: none !important;
}