mirror of
https://github.com/advplyr/audiobookshelf-app.git
synced 2026-09-11 20:31:55 +02:00
Replace all material-icons with material-symbols
This commit is contained in:
@@ -4,17 +4,17 @@
|
||||
<h1 class="text-base font-semibold px-2">
|
||||
{{ $strings.HeaderLocalFolders }}
|
||||
</h1>
|
||||
<button type="button" class="material-icons-outlined" @click.stop="showLocalFolderMoreInfo">info</button>
|
||||
<button type="button" class="material-symbols" @click.stop="showLocalFolderMoreInfo">info</button>
|
||||
</div>
|
||||
|
||||
<div v-if="!isIos" class="w-full max-w-full px-2 py-2">
|
||||
<template v-for="folder in localFolders">
|
||||
<nuxt-link :to="`/localMedia/folders/${folder.id}`" :key="folder.id" class="flex items-center px-2 py-4 bg-primary rounded-md border-bg mb-1">
|
||||
<span class="material-icons text-xl text-yellow-400">folder</span>
|
||||
<span class="material-symbols fill text-xl text-yellow-400">folder</span>
|
||||
<p class="ml-2">{{ folder.name }}</p>
|
||||
<div class="flex-grow" />
|
||||
<p class="text-sm italic text-fg-muted px-3 capitalize">{{ folder.mediaType }}s</p>
|
||||
<span class="material-icons text-xl text-fg-muted">arrow_right</span>
|
||||
<span class="material-symbols text-xl text-fg-muted">arrow_right</span>
|
||||
</nuxt-link>
|
||||
</template>
|
||||
<div v-if="!localFolders.length" class="flex justify-center">
|
||||
|
||||
Reference in New Issue
Block a user