diff --git a/core/core-frontend/src/components/data-visualization/canvas/Shape.vue b/core/core-frontend/src/components/data-visualization/canvas/Shape.vue index 1e7803b5b6..337aeeb74b 100644 --- a/core/core-frontend/src/components/data-visualization/canvas/Shape.vue +++ b/core/core-frontend/src/components/data-visualization/canvas/Shape.vue @@ -36,7 +36,8 @@ 'shape-lock': shapeLock, 'shape-edit': isEditMode && !boardMoveActive, 'linkage-setting': linkageActive, - 'drag-on-tab-collision': dragCollision + 'drag-on-tab-collision': dragCollision, + 'shape-selected': curBatchOptComponents?.includes(element.id) }" > { background-size: 100% 100% !important; } +.shape-selected { + outline: 1px solid #3370ff; +} + .shape-edit { &:hover { cursor: move; diff --git a/core/core-frontend/src/components/visualization/OuterParamsSet.vue b/core/core-frontend/src/components/visualization/OuterParamsSet.vue index 4a165a82d3..439c146fab 100644 --- a/core/core-frontend/src/components/visualization/OuterParamsSet.vue +++ b/core/core-frontend/src/components/visualization/OuterParamsSet.vue @@ -30,8 +30,8 @@ @node-click="nodeClick" > @@ -317,9 +321,9 @@