mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-18 16:22:14 +00:00
v1.7 beta.2
This commit is contained in:
5
.gitignore
vendored
5
.gitignore
vendored
@@ -3,12 +3,15 @@
|
|||||||
/public/storage
|
/public/storage
|
||||||
/storage/*.key
|
/storage/*.key
|
||||||
/storage/*.index
|
/storage/*.index
|
||||||
/storage/framework/cache
|
/storage/framework/cache/*
|
||||||
/vendor
|
/vendor
|
||||||
|
/resources/babel.babel
|
||||||
.idea
|
.idea
|
||||||
.env
|
.env
|
||||||
.env.backup
|
.env.backup
|
||||||
.phpunit.result.cache
|
.phpunit.result.cache
|
||||||
|
.phpstorm.meta.php
|
||||||
|
_ide_helper.php
|
||||||
Homestead.json
|
Homestead.json
|
||||||
Homestead.yaml
|
Homestead.yaml
|
||||||
npm-debug.log
|
npm-debug.log
|
||||||
|
|||||||
2
public/js/main.js
vendored
2
public/js/main.js
vendored
File diff suppressed because one or more lines are too long
@@ -160,6 +160,7 @@
|
|||||||
|
|
||||||
.features {
|
.features {
|
||||||
margin-top: 50px;
|
margin-top: 50px;
|
||||||
|
padding-left: 0;
|
||||||
|
|
||||||
.feature {
|
.feature {
|
||||||
margin-bottom: 35px;
|
margin-bottom: 35px;
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="cookie-wrapper" v-if="isVisibleDisclaimer">
|
<div class="cookie-wrapper" v-if="isVisibleDisclaimer && config.isSaaS">
|
||||||
<span class="close-icon">
|
<span class="close-icon">
|
||||||
<x-icon @click="closeDisclaimer" size="12"></x-icon>
|
<x-icon @click="closeDisclaimer" size="12"></x-icon>
|
||||||
</span>
|
</span>
|
||||||
@@ -11,12 +11,16 @@
|
|||||||
|
|
||||||
<script>
|
<script>
|
||||||
import {XIcon} from 'vue-feather-icons'
|
import {XIcon} from 'vue-feather-icons'
|
||||||
|
import { mapGetters } from 'vuex'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'CookieDisclaimer',
|
name: 'CookieDisclaimer',
|
||||||
components: {
|
components: {
|
||||||
XIcon
|
XIcon
|
||||||
},
|
},
|
||||||
|
computed: {
|
||||||
|
...mapGetters(['config']),
|
||||||
|
},
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
isVisibleDisclaimer: false
|
isVisibleDisclaimer: false
|
||||||
|
|||||||
@@ -256,6 +256,22 @@
|
|||||||
.became-backer {
|
.became-backer {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.dashboard-headline {
|
||||||
|
display: block;
|
||||||
|
text-align: left;
|
||||||
|
|
||||||
|
.metadata {
|
||||||
|
|
||||||
|
.meta:first-child {
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.logo {
|
||||||
|
margin-bottom: 10px;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (prefers-color-scheme: dark) {
|
@media (prefers-color-scheme: dark) {
|
||||||
|
|||||||
@@ -52,7 +52,7 @@
|
|||||||
</ValidationProvider>
|
</ValidationProvider>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div v-if="! config.isSaaS">
|
<div v-if="config.isSaaS">
|
||||||
<i18n path="page_registration.agreement" tag="p" class="legal-agreement">
|
<i18n path="page_registration.agreement" tag="p" class="legal-agreement">
|
||||||
<router-link :to="{name: 'DynamicPage', params: {slug: 'terms-of-service'}}" target="_blank">{{ termsOfService.title }}</router-link>
|
<router-link :to="{name: 'DynamicPage', params: {slug: 'terms-of-service'}}" target="_blank">{{ termsOfService.title }}</router-link>
|
||||||
<router-link :to="{name: 'DynamicPage', params: {slug: 'privacy-policy'}}" target="_blank">{{ privacyPolicy.title }}</router-link>
|
<router-link :to="{name: 'DynamicPage', params: {slug: 'privacy-policy'}}" target="_blank">{{ privacyPolicy.title }}</router-link>
|
||||||
|
|||||||
Reference in New Issue
Block a user