mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
address comments
This commit is contained in:
parent
ae9bb9b02e
commit
e8f9fc0f5e
|
@ -10,8 +10,8 @@
|
||||||
<n8n-tooltip placement="bottom-start" :value="showTriggerWaitingWarning" :disabled="!showTriggerWaitingWarning" :manual="true">
|
<n8n-tooltip placement="bottom-start" :value="showTriggerWaitingWarning" :disabled="!showTriggerWaitingWarning" :manual="true">
|
||||||
<div slot="content" :class="$style.triggerWarning">{{ $locale.baseText('ndv.backToCanvas.waitingForTriggerWarning') }}</div>
|
<div slot="content" :class="$style.triggerWarning">{{ $locale.baseText('ndv.backToCanvas.waitingForTriggerWarning') }}</div>
|
||||||
<div :class="$style.backToCanvas" @click="close">
|
<div :class="$style.backToCanvas" @click="close">
|
||||||
<n8n-icon icon="arrow-left" color="text-xlight" size="small" />
|
<n8n-icon icon="arrow-left" color="text-xlight" size="medium" />
|
||||||
<n8n-text color="text-xlight" size="small">{{ $locale.baseText('ndv.backToCanvas') }}</n8n-text>
|
<n8n-text color="text-xlight" size="medium" :bold="true">{{ $locale.baseText('ndv.backToCanvas') }}</n8n-text>
|
||||||
</div>
|
</div>
|
||||||
</n8n-tooltip>
|
</n8n-tooltip>
|
||||||
|
|
||||||
|
@ -169,7 +169,7 @@ export default mixins(externalHooks, nodeHelpers, workflowHelpers).extend({
|
||||||
.backToCanvas {
|
.backToCanvas {
|
||||||
position: fixed;
|
position: fixed;
|
||||||
top: 10px;
|
top: 10px;
|
||||||
left: 10px;
|
left: 20px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
|
@ -2,6 +2,7 @@
|
||||||
<n8n-button
|
<n8n-button
|
||||||
:loading="workflowRunning"
|
:loading="workflowRunning"
|
||||||
:label="label"
|
:label="label"
|
||||||
|
size="small"
|
||||||
@click="onClick"
|
@click="onClick"
|
||||||
/>
|
/>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
@ -79,6 +79,7 @@ export default Vue.extend({
|
||||||
overflow-wrap: anywhere;
|
overflow-wrap: anywhere;
|
||||||
height: 60px;
|
height: 60px;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
|
padding-right: var(--spacing-s);
|
||||||
}
|
}
|
||||||
|
|
||||||
.title {
|
.title {
|
||||||
|
|
Loading…
Reference in a new issue