mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
fix(editor): Fix mapping field icon sizes (#16886)
This commit is contained in:
@@ -464,7 +464,7 @@ async function onAskAssistantClick() {
|
|||||||
<N8nIconButton
|
<N8nIconButton
|
||||||
icon="files"
|
icon="files"
|
||||||
type="secondary"
|
type="secondary"
|
||||||
size="mini"
|
size="small"
|
||||||
:text="true"
|
:text="true"
|
||||||
transparent-background="transparent"
|
transparent-background="transparent"
|
||||||
@click="copyErrorDetails"
|
@click="copyErrorDetails"
|
||||||
|
|||||||
@@ -734,7 +734,7 @@ const onCalloutDismiss = async (parameter: INodeProperties) => {
|
|||||||
v-if="hideDelete !== true && !isReadOnly && !parameter.isNodeSetting"
|
v-if="hideDelete !== true && !isReadOnly && !parameter.isNodeSetting"
|
||||||
type="tertiary"
|
type="tertiary"
|
||||||
text
|
text
|
||||||
size="mini"
|
size="small"
|
||||||
icon="trash-2"
|
icon="trash-2"
|
||||||
class="icon-button"
|
class="icon-button"
|
||||||
:title="i18n.baseText('parameterInputList.delete')"
|
:title="i18n.baseText('parameterInputList.delete')"
|
||||||
@@ -777,7 +777,7 @@ const onCalloutDismiss = async (parameter: INodeProperties) => {
|
|||||||
v-if="hideDelete !== true && !isReadOnly && !parameter.isNodeSetting"
|
v-if="hideDelete !== true && !isReadOnly && !parameter.isNodeSetting"
|
||||||
type="tertiary"
|
type="tertiary"
|
||||||
text
|
text
|
||||||
size="mini"
|
size="small"
|
||||||
icon="trash-2"
|
icon="trash-2"
|
||||||
class="icon-button"
|
class="icon-button"
|
||||||
:title="i18n.baseText('parameterInputList.delete')"
|
:title="i18n.baseText('parameterInputList.delete')"
|
||||||
|
|||||||
@@ -28,7 +28,7 @@ const emit = defineEmits<{
|
|||||||
:class="['n8n-input', $style.overrideCloseButton]"
|
:class="['n8n-input', $style.overrideCloseButton]"
|
||||||
:outline="false"
|
:outline="false"
|
||||||
icon="x"
|
icon="x"
|
||||||
size="mini"
|
size="small"
|
||||||
@click="emit('close')"
|
@click="emit('close')"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -358,7 +358,7 @@ defineExpose({
|
|||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
v-if="resourceMapperMode === 'add' && field.required"
|
v-if="resourceMapperMode === 'add' && field.required"
|
||||||
:class="['delete-option', 'mt-5xs', $style.parameterTooltipIcon]"
|
:class="['delete-option', 'mt-2xs', $style.parameterTooltipIcon]"
|
||||||
>
|
>
|
||||||
<N8nTooltip placement="top">
|
<N8nTooltip placement="top">
|
||||||
<template #content>
|
<template #content>
|
||||||
@@ -384,7 +384,7 @@ defineExpose({
|
|||||||
<N8nIconButton
|
<N8nIconButton
|
||||||
type="tertiary"
|
type="tertiary"
|
||||||
text
|
text
|
||||||
size="mini"
|
size="small"
|
||||||
icon="trash-2"
|
icon="trash-2"
|
||||||
:data-test-id="`remove-field-button-${getParsedFieldName(field.name)}`"
|
:data-test-id="`remove-field-button-${getParsedFieldName(field.name)}`"
|
||||||
:title="
|
:title="
|
||||||
@@ -470,7 +470,10 @@ defineExpose({
|
|||||||
}
|
}
|
||||||
|
|
||||||
.parameterTooltipIcon {
|
.parameterTooltipIcon {
|
||||||
|
font-size: var(--font-size-2xs);
|
||||||
color: var(--color-text-light) !important;
|
color: var(--color-text-light) !important;
|
||||||
|
width: 26px; // match trash button size
|
||||||
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
.addOption {
|
.addOption {
|
||||||
|
|||||||
Reference in New Issue
Block a user