Skip to content

Commit

Permalink
fix(editor): Unify disabled parameters background color (#12306)
Browse files Browse the repository at this point in the history
  • Loading branch information
OlegIvaniv authored and riascho committed Dec 23, 2024
1 parent 42f8246 commit 87df37c
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 14 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -114,27 +114,14 @@ defineExpose({
</script>

<template>
<div
ref="root"
title=""
:class="$style.editor"
data-test-id="inline-expression-editor-input"
></div>
<div ref="root" title="" data-test-id="inline-expression-editor-input"></div>
</template>

<style lang="scss" module>
.editor div[contenteditable='false'] {
background-color: var(--disabled-fill, var(--color-background-light));
cursor: not-allowed;
}
</style>

<style lang="scss" scoped>
:deep(.cm-editor) {
padding-left: 0;
}
:deep(.cm-content) {
--disabled-fill: var(--color-background-base);
padding-left: var(--spacing-2xs);
&[aria-readonly='true'] {
Expand Down
1 change: 1 addition & 0 deletions packages/editor-ui/src/components/ParameterInput.vue
Original file line number Diff line number Diff line change
Expand Up @@ -1059,6 +1059,7 @@ onUpdated(async () => {
:expression-edit-dialog-visible="expressionEditDialogVisible"
:path="path"
:parameter-issues="getIssues"
:is-read-only="isReadOnly"
@update:model-value="valueChanged"
@modal-opener-click="openExpressionEditorModal"
@focus="setFocus"
Expand Down
1 change: 1 addition & 0 deletions packages/editor-ui/src/components/ParameterInputList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -650,6 +650,7 @@ function getParameterValue<T extends NodeParameterValueType = NodeParameterValue

<style lang="scss">
.parameter-input-list-wrapper {
--disabled-fill: var(--color-background-base);
.icon-button {
position: absolute;
opacity: 0;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -324,6 +324,7 @@ const onAddResourceClicked = () => {
ref="input"
:model-value="expressionDisplayValue"
:path="path"
:is-read-only="isReadOnly"
:rows="3"
@update:model-value="onInputChange"
@modal-opener-click="emit('modalOpenerClick')"
Expand Down

0 comments on commit 87df37c

Please sign in to comment.