v1.5.1-beta.1

This commit is contained in:
carodej
2020-05-22 09:40:34 +02:00
parent 65f902fbcf
commit be7d1bdc73
13 changed files with 127 additions and 18 deletions
@@ -49,10 +49,18 @@
}
@media (prefers-color-scheme: dark) {
.empty-message .message .icon {
.empty-message {
path, line, polyline, rect, circle {
stroke: $dark_mode_text_secondary;
.message {
.icon {
path, line, polyline, rect, circle {
stroke: $dark_mode_text_secondary;
}
}
p {
color: $dark_mode_text_secondary;
}
}
}
}
@@ -227,6 +227,7 @@
.file-content {
display: flex;
flex-wrap: nowrap;
height: 100%;
&.is-dragging {
@include transform(scale(0.99));
@@ -234,6 +235,7 @@
}
.files-container {
overflow-x: hidden;
overflow-y: auto;
flex: 0 0 100%;
@include transition(150ms);
@@ -205,6 +205,13 @@
}
}
}
.option-value {
&.placehoder {
color: $dark_mode_text_secondary;
}
}
}
</style>
@@ -90,6 +90,10 @@
this.$store.dispatch('getFolder', [{folder: this.homeDirectory, back: false, init: true}])
}
if (name === 'power') {
this.$store.dispatch('logOut')
}
this.closeAndResetContextMenu()
},
closeAndResetContextMenu() {
@@ -162,10 +162,10 @@
})
},
},
mounted() {
created() {
// Get token
this.recoverPassword.token = this.$route.params.token
this.recoverPassword.token = this.$route.query.token
}
}
</script>
+2 -2
View File
@@ -86,8 +86,8 @@
return {
isLoading: false,
checkedAccount: undefined,
loginPassword: '',
loginEmail: '',
loginPassword: 'vuefilemanager',
loginEmail: 'howdy@hi5ve.digital',
}
},
methods: {