1
1
mirror of https://github.com/aelve/guide.git synced 2024-11-27 00:14:03 +03:00
guide/front/client/App.vue
avele 73df6f7563
Front/fix/category settings dialog (#310)
* Submit buttons in dialogs moved to right and colored

* Checkboxes grouped

* Fixes opened v-select list items overlaying it's title
2019-07-04 22:17:46 +04:00

137 lines
2.6 KiB
Vue

<template>
<v-app>
<toolbar />
<v-content>
<router-view />
</v-content>
<a-footer />
</v-app>
</template>
<script lang="ts">
import Vue from 'vue'
import Component from 'vue-class-component'
import { Watch } from 'vue-property-decorator'
import AFooter from 'client/components/AFooter.vue'
import Toolbar from 'client/components/Toolbar.vue'
import * as nprogress from 'nprogress'
import 'nprogress/nprogress.css'
nprogress.configure({ showSpinner: false })
@Component({
components: {
Toolbar,
AFooter
}
})
export default class RootComponent extends Vue {
beforeMount () {
// This package can only be loaded after mounted (on client only) cause it uses "document"
// it is used in MarkdownEditor.vue and to make it work faster in that component we preload it here
import('easymde')
}
get isPageLoading () {
return this.$store.state.isPageLoading
}
@Watch('isPageLoading')
toogleLoading (isPageLoading: boolean) {
isPageLoading ? nprogress.start() : nprogress.done()
}
}
</script>
<style>
*,
*:before,
*:after {
box-sizing: border-box;
}
p {
margin: 0;
}
code {
color: #000;
font-weight: 500;
box-shadow: none;
}
/* Vuetify css adds unwanted space to start and end of code and kbd tag */
code:after,
kbd:after,
code:before,
kbd:before {
content: "";
letter-spacing: initial;
}
pre code {
background-color: #f5f5f5;
color: #bd4147;
font-weight: 900;
box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2),
0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12);
}
code.sourceCode {
min-width: 100%;
padding: 8px;
}
.sourceCode:not(:last-child) code.sourceCode {
margin: 0 0 5px;
}
a {
text-decoration-line: none;
color: #0061c0;
}
a:hover {
text-decoration-line: underline;
}
.text-transform-none {
text-transform: none !important;
}
.position-relative {
position: relative;
}
div.sourceCode {
overflow-x: auto;
}
table.sourceCode,
tr.sourceCode,
td.lineNumbers,
td.sourceCode {
margin: 0;
padding: 0;
vertical-align: baseline;
border: none;
}
table.sourceCode {
width: 100%;
line-height: 100%;
}
td.lineNumbers {
text-align: right;
padding-right: 4px;
padding-left: 4px;
color: #aaaaaa;
border-right: 1px solid #aaaaaa;
}
td.sourceCode {
padding-left: 5px;
}
.v-input--has-state.error--text .v-label {
animation: none;
}
blockquote {
background: rgba(10, 10, 10, 0.075);
border-left: 5px solid rgba(10, 10, 10, 0.15);
padding: 1px 1em;
margin-left: 0;
margin-right: 0;
border-radius: 5px;
}
/* vuetify v-select component when opened almost overlays its title */
.v-menu__content {
margin-top: 5px;
}
</style>