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