mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2024-12-20 19:06:06 +01:00
49 lines
972 B
Vue
49 lines
972 B
Vue
<template>
|
|
<button class="icon-btn rounded-md bg-primary border border-gray-600 flex items-center justify-center h-9 w-9 relative" @click="clickBtn">
|
|
<span class="material-icons icon-text">{{ icon }}</span>
|
|
</button>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
props: {
|
|
icon: String,
|
|
disabled: Boolean
|
|
},
|
|
data() {
|
|
return {}
|
|
},
|
|
computed: {},
|
|
methods: {
|
|
clickBtn(e) {
|
|
if (this.disabled) {
|
|
e.preventDefault()
|
|
return
|
|
}
|
|
this.$emit('click')
|
|
e.stopPropagation()
|
|
}
|
|
},
|
|
mounted() {}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
button.icon-btn::before {
|
|
content: '';
|
|
position: absolute;
|
|
border-radius: 6px;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background-color: rgba(255, 255, 255, 0);
|
|
transition: all 0.1s ease-in-out;
|
|
}
|
|
button.icon-btn:hover:not(:disabled)::before {
|
|
background-color: rgba(255, 255, 255, 0.1);
|
|
}
|
|
button.icon-btn:disabled::before {
|
|
background-color: rgba(0, 0, 0, 0.2);
|
|
}
|
|
</style> |