Prevent text selection and cursor changes

This commit is contained in:
MMP0
2023-08-22 16:45:34 +09:00
parent 70283a9f4a
commit 0998256fc5
2 changed files with 31 additions and 2 deletions

View File

@@ -1061,6 +1061,13 @@ div.accordions > div.input-accordion.input-accordion-open{
top: 0.5em;
}
body.resizing {
cursor: col-resize !important;
}
body.resizing :not(.resize-handle) {
pointer-events: none !important;
}
.resize-handle {
position: relative;