mirror of
https://github.com/n8n-io/n8n.git
synced 2025-02-21 02:56:40 -08:00
update number inputs
This commit is contained in:
parent
443950c519
commit
979d93e812
|
@ -303,7 +303,7 @@ h1, h2, h3, h4, h5, h6 {
|
||||||
.el-input-number {
|
.el-input-number {
|
||||||
background-color: $--custom-input-background;
|
background-color: $--custom-input-background;
|
||||||
border-radius: 16px;
|
border-radius: 16px;
|
||||||
width: calc(100% - 20px);
|
width: 100%;
|
||||||
|
|
||||||
.el-input-number__decrease,
|
.el-input-number__decrease,
|
||||||
.el-input-number__increase {
|
.el-input-number__increase {
|
||||||
|
|
|
@ -72,6 +72,7 @@
|
||||||
v-if="workflowRunning === true && !executionWaitingForWebhook"
|
v-if="workflowRunning === true && !executionWaitingForWebhook"
|
||||||
icon="stop"
|
icon="stop"
|
||||||
size="lg"
|
size="lg"
|
||||||
|
iconSize="md"
|
||||||
class="stop-execution"
|
class="stop-execution"
|
||||||
type="light"
|
type="light"
|
||||||
:title="stopExecutionInProgress ? 'Stopping current execution':'Stop current execution'"
|
:title="stopExecutionInProgress ? 'Stopping current execution':'Stop current execution'"
|
||||||
|
@ -84,6 +85,7 @@
|
||||||
class="stop-execution"
|
class="stop-execution"
|
||||||
icon="stop"
|
icon="stop"
|
||||||
size="lg"
|
size="lg"
|
||||||
|
iconSize="md"
|
||||||
title="Stop waiting for Webhook call"
|
title="Stop waiting for Webhook call"
|
||||||
type="light"
|
type="light"
|
||||||
:loading="stopExecutionInProgress"
|
:loading="stopExecutionInProgress"
|
||||||
|
@ -95,6 +97,7 @@
|
||||||
title="Deletes the current Execution Data."
|
title="Deletes the current Execution Data."
|
||||||
icon="trash"
|
icon="trash"
|
||||||
size="lg"
|
size="lg"
|
||||||
|
iconSize="md"
|
||||||
@click.stop="clearExecutionData()"
|
@click.stop="clearExecutionData()"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in a new issue