mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-06 02:33:48 +00:00
User Authentication - Login to user account - Register new user account - Reset user password Functionality - Added locations to menu - Added trash for deleted folders & files - Restore files or folders from trash - Empty trash function - Favourites folders - List of 5 latest uploads - Profile settings page - Storage info and upload limits Design - Night Mode - Navigation sidebar - Quick action buttons in mobile version - Improved mobile UX - Other small design improvements Settings - Enable/Disable user account registration - Set storage limitation - Set storage capacity for all users
64 lines
1.3 KiB
Vue
64 lines
1.3 KiB
Vue
<template>
|
|
<button class="button" :title="action">
|
|
<FontAwesomeIcon class="icon" :icon="source"></FontAwesomeIcon>
|
|
</button>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'ToolbarButton',
|
|
props: ['source', 'action']
|
|
}
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
@import "@assets/app.scss";
|
|
|
|
.button {
|
|
height: 42px;
|
|
width: 42px;
|
|
border-radius: 8px;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 0;
|
|
background: $light_background;
|
|
text-align: center;
|
|
cursor: pointer;
|
|
white-space: nowrap;
|
|
outline: none;
|
|
border: none;
|
|
|
|
.icon {
|
|
@include font-size(16);
|
|
}
|
|
|
|
&:hover {
|
|
background: rgba($theme, .1);
|
|
|
|
/deep/ svg path {
|
|
@include transition;
|
|
fill: $theme;
|
|
}
|
|
}
|
|
|
|
&.active {
|
|
background: rgba($theme, .1);
|
|
|
|
/deep/ svg path {
|
|
fill: $theme;
|
|
}
|
|
}
|
|
}
|
|
|
|
@media (prefers-color-scheme: dark) {
|
|
.button {
|
|
background: $dark_mode_foreground;
|
|
}
|
|
|
|
.icon path {
|
|
fill: $dark_mode_text_primary;
|
|
}
|
|
}
|
|
</style>
|