mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2025-02-07 23:22:21 +00:00
use w-9 h-9
This commit is contained in:
parent
aafa0650d7
commit
a652982eb5
8 changed files with 11 additions and 11 deletions
|
@ -24,13 +24,13 @@
|
|||
<IconButton
|
||||
icon="edit"
|
||||
:title="$t('admin.settings.agents.edit_agent')"
|
||||
class="ml-2 w-8 h-8"
|
||||
class="ml-2 w-9 h-9"
|
||||
@click="$emit('edit', agent)"
|
||||
/>
|
||||
<IconButton
|
||||
icon="trash"
|
||||
:title="$t('admin.settings.agents.delete_agent')"
|
||||
class="ml-2 w-8 h-8 hover:text-wp-control-error-100"
|
||||
class="ml-2 w-9 h-9 hover:text-wp-control-error-100"
|
||||
:is-loading="props.isDeleting"
|
||||
@click="$emit('delete', agent)"
|
||||
/>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<template>
|
||||
<router-link v-if="to" :to="to" :title="title" :aria-label="title" class="w-8 h-8 icon-button">
|
||||
<router-link v-if="to" :to="to" :title="title" :aria-label="title" class="w-9 h-9 icon-button">
|
||||
<slot>
|
||||
<Icon v-if="icon" :name="icon" />
|
||||
</slot>
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
v-if="goBack"
|
||||
icon="back"
|
||||
:title="$t('back')"
|
||||
class="flex-shrink-0 mr-2 <md:hidden md:justify-between w-8 h-8"
|
||||
class="flex-shrink-0 mr-2 <md:hidden md:justify-between w-9 h-9"
|
||||
@click="goBack"
|
||||
/>
|
||||
<h1 class="flex text-xl min-w-0 text-wp-text-100 items-center gap-x-2">
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
<span>{{ registry.address }}</span>
|
||||
<IconButton
|
||||
:icon="registry.readonly ? 'chevron-right' : 'edit'"
|
||||
class="ml-auto w-8 h-8"
|
||||
class="ml-auto w-9 h-9"
|
||||
:title="registry.readonly ? $t('registries.view') : $t('registries.edit')"
|
||||
@click="editRegistry(registry)"
|
||||
/>
|
||||
|
|
|
@ -17,13 +17,13 @@
|
|||
<template v-if="secret.edit !== false">
|
||||
<IconButton
|
||||
icon="edit"
|
||||
class="ml-2 <md:ml-auto w-8 h-8"
|
||||
class="ml-2 <md:ml-auto w-9 h-9"
|
||||
:title="$t('secrets.edit')"
|
||||
@click="editSecret(secret)"
|
||||
/>
|
||||
<IconButton
|
||||
icon="trash"
|
||||
class="ml-2 w-8 h-8 hover:text-wp-control-error-100"
|
||||
class="ml-2 w-9 h-9 hover:text-wp-control-error-100"
|
||||
:is-loading="isDeleting"
|
||||
:title="$t('secrets.delete')"
|
||||
@click="deleteSecret(secret)"
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
<IconButton
|
||||
icon="chevron-right"
|
||||
:title="$t('admin.settings.orgs.view')"
|
||||
class="ml-auto w-8 h-8"
|
||||
class="ml-auto w-9 h-9"
|
||||
:to="{ name: 'org', params: { orgId: org.id } }"
|
||||
/>
|
||||
<IconButton
|
||||
|
@ -22,7 +22,7 @@
|
|||
<IconButton
|
||||
icon="trash"
|
||||
:title="$t('admin.settings.orgs.delete_org')"
|
||||
class="ml-2 w-8 h-8 hover:text-wp-control-error-100"
|
||||
class="ml-2 w-9 h-9 hover:text-wp-control-error-100"
|
||||
:is-loading="isDeleting"
|
||||
@click="deleteOrg(org)"
|
||||
/>
|
||||
|
|
|
@ -33,7 +33,7 @@
|
|||
<IconButton
|
||||
icon="trash"
|
||||
:title="$t('admin.settings.users.delete_user')"
|
||||
class="ml-2 w-8 h-8 hover:text-wp-control-error-100"
|
||||
class="ml-2 w-9 h-9 hover:text-wp-control-error-100"
|
||||
:is-loading="isDeleting"
|
||||
@click="deleteUser(user)"
|
||||
/>
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
</span>
|
||||
<span v-else class="col-span-2 <md:hidden">{{ $t('repo.settings.crons.not_executed_yet') }}</span>
|
||||
</span>
|
||||
<IconButton icon="play" class="ml-auto w-8 h-8" :title="$t('repo.settings.crons.run')" @click="runCron(cron)" />
|
||||
<IconButton icon="play" class="ml-auto w-9 h-9" :title="$t('repo.settings.crons.run')" @click="runCron(cron)" />
|
||||
<IconButton icon="edit" class="w-8 h-8" :title="$t('repo.settings.crons.edit')" @click="selectedCron = cron" />
|
||||
<IconButton
|
||||
icon="trash"
|
||||
|
|
Loading…
Reference in a new issue