Mobile and help improvements
parent
990cadd744
commit
2104b8b897
|
@ -36,7 +36,7 @@
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<p class="credits">Served with <a rel="noopener noreferrer" href="https://github.com/hacdias/caddy-filemanager">File Manager</a>.</p>
|
<p class="credits">Served with <a rel="noopener noreferrer" href="https://github.com/hacdias/caddy-filemanager">File Manager</a>.<br><a @click="help">Help</a></p>
|
||||||
</nav>
|
</nav>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
@ -59,6 +59,9 @@ export default {
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
help: function () {
|
||||||
|
this.$store.commit('showPrompt', 'help')
|
||||||
|
},
|
||||||
logout: auth.logout
|
logout: auth.logout
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -212,3 +212,4 @@ header > div:last-child {
|
||||||
#search:-ms-input-placeholder {
|
#search:-ms-input-placeholder {
|
||||||
color: rgba(255, 255, 255, .5);
|
color: rgba(255, 255, 255, .5);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,12 @@
|
||||||
|
@media (max-width: 1024px) {
|
||||||
|
nav {
|
||||||
|
width: 10em
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width: 1024px) {
|
||||||
|
#listing.list .item.header,
|
||||||
|
main {
|
||||||
|
width: calc(100% - 13em)
|
||||||
|
}
|
||||||
|
}
|
|
@ -185,6 +185,7 @@
|
||||||
.credits a,
|
.credits a,
|
||||||
.credits a:hover {
|
.credits a:hover {
|
||||||
color: inherit;
|
color: inherit;
|
||||||
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -198,3 +199,5 @@
|
||||||
transform: rotate(-360deg);
|
transform: rotate(-360deg);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@import './mobile.css';
|
||||||
|
|
|
@ -42,6 +42,10 @@ const router = new Router({
|
||||||
path: '/files/*',
|
path: '/files/*',
|
||||||
name: 'Files'
|
name: 'Files'
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
path: '/dashboard',
|
||||||
|
name: 'Dashboard'
|
||||||
|
},
|
||||||
{
|
{
|
||||||
path: '/*',
|
path: '/*',
|
||||||
redirect: {
|
redirect: {
|
||||||
|
|
Loading…
Reference in New Issue