feat(editor): Update Node Details View header tabs structure (#9425)

Co-authored-by: Elias Meire <elias@meire.dev>
This commit is contained in:
Giulio Andreini
2024-05-17 12:37:34 +02:00
committed by GitHub
parent a7d3e59aef
commit 2782534d78
5 changed files with 232 additions and 201 deletions

View File

@@ -22,7 +22,7 @@
v-if="tooltipText && label"
:class="[$style.infoIcon, showTooltip ? $style.visible : $style.hidden]"
>
<N8nTooltip placement="top" :popper-class="$style.tooltipPopper">
<N8nTooltip placement="top" :popper-class="$style.tooltipPopper" :show-after="300">
<N8nIcon icon="question-circle" size="small" />
<template #content>
<div v-html="addTargetBlank(tooltipText)" />
@@ -90,6 +90,10 @@ const addTargetBlank = (html: string) =>
.inputLabel:hover {
.infoIcon {
opacity: 1;
&:hover {
color: var(--color-text-base);
}
}
.options {
@@ -117,7 +121,7 @@ const addTargetBlank = (html: string) =>
display: flex;
align-items: center;
color: var(--color-text-light);
padding-left: var(--spacing-4xs);
margin-left: var(--spacing-4xs);
z-index: 1;
}