mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2025-07-15 21:55:23 +02:00
.devcontainer
.github
.vscode
build
client
assets
components
app
cards
content
controls
covers
modals
player
prompt
readers
stats
tables
ui
widgets
AbridgedIndicator.vue
Alert.vue
AlreadyInLibraryIndicator.vue
AudiobookData.vue
AuthorsSlider.vue
BookDetailsEdit.vue
CloseButton.vue
CoverSizeWidget.vue
CronExpressionBuilder.vue
EpisodeSlider.vue
ExplicitIndicator.vue
ItemSlider.vue
LoadingSpinner.vue
MoreMenu.vue
NarratorsSlider.vue
NotificationWidget.vue
OnlineIndicator.vue
PodcastDetailsEdit.vue
PodcastTypeIndicator.vue
RssFeedMetadataBuilder.vue
SeriesInputWidget.vue
SeriesSlider.vue
layouts
middleware
mixins
pages
players
plugins
static
store
strings
nuxt.config.js
package-lock.json
package.json
tailwind.config.js
images
server
.dockerignore
.gitattributes
.gitignore
Dockerfile
LICENSE
docker-compose.yml
docker-template.xml
index.js
package-lock.json
package.json
prod.js
readme.md
33 lines
647 B
Vue
33 lines
647 B
Vue
<template>
|
|
<button class="bg-error text-white px-2 py-1 shadow-md" @click="$emit('click', $event)">Cancel</button>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {}
|
|
},
|
|
computed: {},
|
|
methods: {},
|
|
mounted() {}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
.Vue-Toastification__close-button.cancel-scan-btn {
|
|
background-color: rgb(255, 82, 82);
|
|
color: white;
|
|
font-size: 0.9rem;
|
|
opacity: 1;
|
|
padding: 0px 10px;
|
|
border-radius: 6px;
|
|
font-weight: normal;
|
|
font-family: 'Open Sans';
|
|
margin-left: 10px;
|
|
opacity: 0.3;
|
|
}
|
|
.Vue-Toastification__close-button.cancel-scan-btn:hover {
|
|
background-color: rgb(235, 65, 65);
|
|
opacity: 1;
|
|
}
|
|
</style> |