mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-05 18:23:48 +00:00
118 lines
2.3 KiB
Vue
118 lines
2.3 KiB
Vue
<template>
|
|
<button class="button outline">
|
|
<span class="text-label">{{ text }}</span>
|
|
|
|
<span v-if="loading" class="icon">
|
|
<FontAwesomeIcon icon="sync-alt" class="sync-alt"/>
|
|
</span>
|
|
<span v-if="! loading && icon" class="icon">
|
|
<FontAwesomeIcon :icon="icon"/>
|
|
</span>
|
|
</button>
|
|
</template>
|
|
|
|
<script>
|
|
|
|
export default {
|
|
name: 'AuthContent',
|
|
props: ['loading', 'icon', 'text'],
|
|
data() {
|
|
return {
|
|
isVisible: false,
|
|
}
|
|
},
|
|
created() {
|
|
this.isVisible = this.visible
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
@import "@assets/app.scss";
|
|
|
|
.button {
|
|
cursor: pointer;
|
|
border-radius: 8px;
|
|
text-decoration: none;
|
|
padding: 12px 32px;
|
|
display: inline-block;
|
|
margin-left: 15px;
|
|
margin-right: 15px;
|
|
white-space: nowrap;
|
|
@include transition(150ms);
|
|
background: transparent;
|
|
|
|
.text-label {
|
|
@include transition(150ms);
|
|
@include font-size(17);
|
|
font-weight: 800;
|
|
line-height: 0;
|
|
}
|
|
|
|
.icon {
|
|
margin-left: 12px;
|
|
@include font-size(16);
|
|
}
|
|
|
|
&.solid {
|
|
background: $theme;
|
|
border: 2px solid $theme;
|
|
|
|
.text-label {
|
|
color: white;
|
|
}
|
|
}
|
|
|
|
&.outline {
|
|
border: 2px solid $text;
|
|
|
|
.text-label {
|
|
color: $text;
|
|
}
|
|
|
|
.icon {
|
|
|
|
path {
|
|
fill: $theme;
|
|
}
|
|
}
|
|
|
|
&:hover {
|
|
border-color: $theme;
|
|
|
|
.text-label {
|
|
color: $theme;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
@media (prefers-color-scheme: dark) {
|
|
.button {
|
|
|
|
&.outline {
|
|
background: $dark_mode_background;
|
|
border-color: $dark_mode_text_primary;
|
|
|
|
.text-label {
|
|
color: $dark_mode_text_primary;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.sync-alt {
|
|
animation: spin 1s linear infinite;
|
|
}
|
|
|
|
@keyframes spin {
|
|
0% {
|
|
transform: rotate(0);
|
|
}
|
|
100% {
|
|
transform: rotate(360deg);
|
|
}
|
|
}
|
|
|
|
</style>
|