mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-16 09:36:44 +00:00
fix(editor): Unify disabled parameters background color (#12306)
This commit is contained in:
@@ -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'] {
|
||||
|
||||
@@ -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"
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -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')"
|
||||
|
||||
Reference in New Issue
Block a user