mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2025-01-19 22:06:17 +00:00
rev pencil, use cogOutline for admin panels
This commit is contained in:
parent
0003a35b9c
commit
8314c859ee
3 changed files with 9 additions and 7 deletions
|
@ -13,6 +13,7 @@
|
|||
<SvgIcon v-else-if="name === 'github'" :path="mdiGithub" size="32" />
|
||||
<SvgIcon v-else-if="name === 'repo'" :path="mdiGit" size="32" />
|
||||
<SvgIcon v-else-if="name === 'settings'" :path="mdiCog" size="32" />
|
||||
<SvgIcon v-else-if="name === 'settings-outline'" :path="mdiCogOutline" size="32" />
|
||||
<SvgIcon v-else-if="name === 'trash'" :path="mdiTrashCanOutline" size="1.3rem" />
|
||||
<SvgIcon v-else-if="name === 'status-blocked'" :path="mdiPlayCircle" size="1.3rem" />
|
||||
<SvgIcon v-else-if="name === 'status-declined'" :path="mdiStopCircleOutline" size="1.3rem" />
|
||||
|
@ -42,12 +43,12 @@
|
|||
<SvgIcon v-else-if="name === 'turn-off'" :path="mdiPower" size="1.3rem" />
|
||||
<SvgIcon v-else-if="name === 'chevron-right'" :path="mdiChevronRight" size="1.3rem" />
|
||||
<SvgIcon v-else-if="name === 'close'" :path="mdiCloseCircle" size="1.3rem" />
|
||||
<SvgIcon v-else-if="name === 'edit'" :path="mdiPencilCircle" size="1.3rem" />
|
||||
<SvgIcon v-else-if="name === 'edit'" :path="mdiPencil" size="1.3rem" />
|
||||
<SvgIcon v-else-if="name === 'download'" :path="mdiDownloadCircle" size="1.3rem" />
|
||||
<SvgIcon v-else-if="name === 'stopwatch'" :path="mdiAlarm" size="1.3rem" />
|
||||
<SvgIcon v-else-if="name === 'auto-scroll'" :path="mdiDownloadCircle" size="1.3rem" />
|
||||
<SvgIcon v-else-if="name === 'auto-scroll-off'" :path="mdiDownloadOff" size="1.3rem" />
|
||||
<SvgIcon v-else-if="name === 'pause'" :path="mdiPauseCircle" size="1.3rem" />
|
||||
<SvgIcon v-else-if="name === 'pause'" :path="mdiPause" size="1.3rem" />
|
||||
<SvgIcon v-else-if="name === 'play'" :path="mdiPlay" size="1.3rem" />
|
||||
<SvgIcon v-else-if="name === 'remove'" :path="mdiCloseCircle" size="1.3rem" />
|
||||
|
||||
|
@ -92,6 +93,7 @@ import {
|
|||
mdiClockTimeEightOutline,
|
||||
mdiCloseCircle,
|
||||
mdiCog,
|
||||
mdiCogOutline,
|
||||
mdiDownloadCircle,
|
||||
mdiDownloadOff,
|
||||
mdiFormatListBulleted,
|
||||
|
@ -103,8 +105,8 @@ import {
|
|||
mdiLockOutline,
|
||||
mdiMinusCircle,
|
||||
mdiPackageVariant,
|
||||
mdiPauseCircle,
|
||||
mdiPencilCircle,
|
||||
mdiPause,
|
||||
mdiPencil,
|
||||
mdiPlay,
|
||||
mdiPlayCircle,
|
||||
mdiPlus,
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
:to="{ name: 'org', params: { orgId: org.id } }"
|
||||
/>
|
||||
<IconButton
|
||||
icon="settings"
|
||||
icon="settings-outline"
|
||||
:title="$t('admin.settings.orgs.org_settings')"
|
||||
class="w-8 h-8"
|
||||
:to="{ name: 'org-settings', params: { orgId: org.id } }"
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
class="items-center gap-2 !bg-wp-background-200 !dark:bg-wp-background-100"
|
||||
>
|
||||
<span>{{ repo.full_name }}</span>
|
||||
<div class="ml-auto flex items-center">
|
||||
<div class="flex items-center ml-auto">
|
||||
<Badge v-if="!repo.active" class="<md:hidden mr-2" :label="$t('admin.settings.repos.disabled')" />
|
||||
<IconButton
|
||||
icon="chevron-right"
|
||||
|
@ -25,7 +25,7 @@
|
|||
:to="{ name: 'repo', params: { repoId: repo.id } }"
|
||||
/>
|
||||
<IconButton
|
||||
icon="settings"
|
||||
icon="settings-outline"
|
||||
:title="$t('admin.settings.repos.settings')"
|
||||
class="w-8 h-8"
|
||||
:to="{ name: 'repo-settings', params: { repoId: repo.id } }"
|
||||
|
|
Loading…
Reference in a new issue