mirror of
https://github.com/n8n-io/n8n.git
synced 2025-02-21 02:56:40 -08:00
clean up button sizes
This commit is contained in:
parent
0d23e02aa9
commit
032bcc74e0
|
@ -28,7 +28,7 @@
|
|||
</el-row>
|
||||
|
||||
<div class="action-buttons">
|
||||
<n8n-button @click="closeDialog" label="Close" size="lg" />
|
||||
<n8n-button @click="closeDialog" label="Close" />
|
||||
</div>
|
||||
</div>
|
||||
</el-dialog>
|
||||
|
|
|
@ -31,8 +31,8 @@
|
|||
width="120">
|
||||
<template slot-scope="scope">
|
||||
<div class="cred-operations">
|
||||
<n8n-icon-button title="Edit Credentials" @click.stop="editCredential(scope.row)" icon="pen" size="md" />
|
||||
<n8n-icon-button title="Delete Credentials" @click.stop="deleteCredential(scope.row)" icon="trash" size="md" />
|
||||
<n8n-icon-button title="Edit Credentials" @click.stop="editCredential(scope.row)" icon="pen" />
|
||||
<n8n-icon-button title="Delete Credentials" @click.stop="deleteCredential(scope.row)" icon="trash" />
|
||||
</div>
|
||||
</template>
|
||||
</el-table-column>
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<template>
|
||||
<span :class="$style.container">
|
||||
<n8n-button label="Save" :disabled="isWorkflowSaving" size="md" @click="save" v-if="isDirty || isNewWorkflow" />
|
||||
<n8n-button label="Save" :disabled="isWorkflowSaving" @click="save" v-if="isDirty || isNewWorkflow" />
|
||||
<span :class="$style.saved" v-else>Saved</span>
|
||||
</span>
|
||||
</template>
|
||||
|
|
|
@ -24,7 +24,7 @@
|
|||
</el-row>
|
||||
</template>
|
||||
<template v-slot:footer="{ close }">
|
||||
<n8n-button size="sm" label="Done" @click="close" float="right" />
|
||||
<n8n-button label="Done" @click="close" float="right" />
|
||||
</template>
|
||||
</Modal>
|
||||
</template>
|
||||
|
|
|
@ -31,7 +31,7 @@
|
|||
</div>
|
||||
<DataDisplay @valueChanged="valueChanged"/>
|
||||
<div v-if="!createNodeActive && !isReadOnly" class="node-creator-button" title="Add Node" @click="openNodeCreator">
|
||||
<n8n-icon-button size="lg" icon="plus" />
|
||||
<n8n-icon-button size="xl" icon="plus" />
|
||||
</div>
|
||||
<node-creator
|
||||
:active="createNodeActive"
|
||||
|
@ -72,7 +72,6 @@
|
|||
v-if="workflowRunning === true && !executionWaitingForWebhook"
|
||||
icon="stop"
|
||||
size="lg"
|
||||
iconSize="md"
|
||||
class="stop-execution"
|
||||
type="light"
|
||||
:title="stopExecutionInProgress ? 'Stopping current execution':'Stop current execution'"
|
||||
|
@ -85,7 +84,6 @@
|
|||
class="stop-execution"
|
||||
icon="stop"
|
||||
size="lg"
|
||||
iconSize="md"
|
||||
title="Stop waiting for Webhook call"
|
||||
type="light"
|
||||
:loading="stopExecutionInProgress"
|
||||
|
@ -97,7 +95,6 @@
|
|||
title="Deletes the current Execution Data."
|
||||
icon="trash"
|
||||
size="lg"
|
||||
iconSize="md"
|
||||
@click.stop="clearExecutionData()"
|
||||
/>
|
||||
</div>
|
||||
|
|
Loading…
Reference in a new issue