clean up button sizes

This commit is contained in:
Mutasem 2021-08-03 09:49:55 +02:00
parent 0d23e02aa9
commit 032bcc74e0
5 changed files with 6 additions and 9 deletions

View file

@ -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>

View file

@ -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>

View file

@ -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>

View file

@ -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>

View file

@ -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>