mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-05 18:23:48 +00:00
101 lines
2.5 KiB
Vue
101 lines
2.5 KiB
Vue
<template>
|
|
<button class="mobile-action-button">
|
|
<div class="flex">
|
|
<folder-plus-icon v-if="icon === 'folder-plus'" size="15" class="icon"></folder-plus-icon>
|
|
<list-icon v-if="icon === 'th-list'" size="15" class="icon"></list-icon>
|
|
<trash-icon v-if="icon === 'trash'" size="15" class="icon"></trash-icon>
|
|
<grid-icon v-if="icon === 'th'" size="15" class="icon"></grid-icon>
|
|
<user-plus-icon v-if="icon === 'user-plus'" size="15" class="icon"></user-plus-icon>
|
|
<span class="label">
|
|
<slot></slot>
|
|
</span>
|
|
</div>
|
|
</button>
|
|
</template>
|
|
|
|
<script>
|
|
import { FolderPlusIcon, ListIcon, GridIcon, TrashIcon, UserPlusIcon } from 'vue-feather-icons'
|
|
|
|
export default {
|
|
name: 'MobileActionButton',
|
|
props: [
|
|
'icon'
|
|
],
|
|
components: {
|
|
FolderPlusIcon,
|
|
UserPlusIcon,
|
|
TrashIcon,
|
|
ListIcon,
|
|
GridIcon,
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
@import '@assets/vue-file-manager/_variables';
|
|
@import '@assets/vue-file-manager/_mixins';
|
|
|
|
.mobile-action-button {
|
|
background: $light_background;
|
|
margin-right: 15px;
|
|
border-radius: 8px;
|
|
padding: 7px 10px;
|
|
cursor: pointer;
|
|
border: none;
|
|
@include transition(150ms);
|
|
|
|
.flex {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.icon {
|
|
margin-right: 10px;
|
|
@include font-size(14);
|
|
|
|
path, line, polyline, rect, circle {
|
|
@include transition(150ms);
|
|
}
|
|
}
|
|
|
|
.label {
|
|
@include transition(150ms);
|
|
@include font-size(14);
|
|
font-weight: 700;
|
|
color: $text;
|
|
}
|
|
|
|
&:active {
|
|
@include transform(scale(0.95));
|
|
}
|
|
|
|
&:hover {
|
|
background: rgba($theme, 0.1);
|
|
|
|
.icon {
|
|
path, line, polyline, rect, circle {
|
|
stroke: $theme;
|
|
}
|
|
}
|
|
|
|
.label {
|
|
color: $theme;
|
|
}
|
|
}
|
|
}
|
|
|
|
@media (prefers-color-scheme: dark) {
|
|
.mobile-action-button {
|
|
background: $dark_mode_foreground;
|
|
|
|
path, line, polyline, rect, circle {
|
|
stroke: $theme;
|
|
}
|
|
|
|
.label {
|
|
color: $dark_mode_text_primary;
|
|
}
|
|
}
|
|
}
|
|
</style>
|