This is an automated email from the ASF dual-hosted git repository.

linxinyuan pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/texera.git


The following commit(s) were added to refs/heads/main by this push:
     new babb1b868e refactor: move text selection handling to workspace 
component (#4383)
babb1b868e is described below

commit babb1b868e1acb719682431ad20038d5ae4af77c
Author: Xuan Gu <[email protected]>
AuthorDate: Tue Apr 14 15:13:10 2026 -0700

    refactor: move text selection handling to workspace component (#4383)
---
 .../src/app/workspace/component/left-panel/left-panel.component.scss | 1 -
 .../component/property-editor/property-editor.component.scss         | 1 -
 .../app/workspace/component/result-panel/result-panel.component.scss | 1 -
 frontend/src/app/workspace/component/workspace.component.scss        | 5 ++++-
 4 files changed, 4 insertions(+), 4 deletions(-)

diff --git 
a/frontend/src/app/workspace/component/left-panel/left-panel.component.scss 
b/frontend/src/app/workspace/component/left-panel/left-panel.component.scss
index 045deb8420..84d962936c 100644
--- a/frontend/src/app/workspace/component/left-panel/left-panel.component.scss
+++ b/frontend/src/app/workspace/component/left-panel/left-panel.component.scss
@@ -30,7 +30,6 @@
   top: calc(-100% + 80px);
   left: 0;
   z-index: 3;
-  user-select: none;
   background: white;
 }
 
diff --git 
a/frontend/src/app/workspace/component/property-editor/property-editor.component.scss
 
b/frontend/src/app/workspace/component/property-editor/property-editor.component.scss
index 3a319b4c4a..ed92f06644 100644
--- 
a/frontend/src/app/workspace/component/property-editor/property-editor.component.scss
+++ 
b/frontend/src/app/workspace/component/property-editor/property-editor.component.scss
@@ -29,7 +29,6 @@
   position: fixed;
   top: 10vh;
   right: 0;
-  user-select: none;
   background: white;
 }
 
diff --git 
a/frontend/src/app/workspace/component/result-panel/result-panel.component.scss 
b/frontend/src/app/workspace/component/result-panel/result-panel.component.scss
index 767fe72975..9dbdd63dd5 100644
--- 
a/frontend/src/app/workspace/component/result-panel/result-panel.component.scss
+++ 
b/frontend/src/app/workspace/component/result-panel/result-panel.component.scss
@@ -33,7 +33,6 @@
   position: absolute;
   top: -300px;
   left: 0;
-  user-select: none;
   background: white;
   border-radius: 5px;
   box-shadow:
diff --git a/frontend/src/app/workspace/component/workspace.component.scss 
b/frontend/src/app/workspace/component/workspace.component.scss
index a1eae3421e..60fc4abf40 100644
--- a/frontend/src/app/workspace/component/workspace.component.scss
+++ b/frontend/src/app/workspace/component/workspace.component.scss
@@ -36,7 +36,6 @@ texera-mini-map {
   bottom: 0;
   right: 0;
   z-index: 3;
-  user-select: none;
 }
 
 texera-workflow-editor {
@@ -54,3 +53,7 @@ texera-workflow-editor {
   align-items: center;
   height: 100%;
 }
+
+:host {
+  user-select: none;
+}

Reply via email to