Use tabler icons (#9354)

* wip

* wip

* wip

* Update style.scss

* wip

* wip

* wip

* wip
This commit is contained in:
syuilo 2022-12-19 19:01:30 +09:00 committed by GitHub
parent e3b8482891
commit 917ef465a5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
240 changed files with 981 additions and 947 deletions

View file

@ -16,8 +16,8 @@
@dragend="onDragend"
>
<p class="name">
<template v-if="hover"><i class="fas fa-folder-open fa-fw"></i></template>
<template v-if="!hover"><i class="fas fa-folder fa-fw"></i></template>
<template v-if="hover"><i class="fas fa-folder-open ti-fw"></i></template>
<template v-if="!hover"><i class="fas fa-folder ti-fw"></i></template>
{{ folder.name }}
</p>
<p v-if="defaultStore.state.uploadFolder == folder.id" class="upload">
@ -253,11 +253,11 @@ function onContextmenu(ev: MouseEvent) {
},
}, null, {
text: i18n.ts.rename,
icon: 'fas fa-i-cursor',
icon: 'ti ti-cursor-text',
action: rename,
}, null, {
text: i18n.ts.delete,
icon: 'fas fa-trash-alt',
icon: 'ti ti-trash',
danger: true,
action: deleteFolder,
}], ev);