mirror of https://github.com/Requarks/wiki.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
783 lines
24 KiB
783 lines
24 KiB
<template lang='pug'>
|
|
.editor-markdown
|
|
v-toolbar.editor-markdown-toolbar(dense, color='primary', dark, flat, style='overflow-x: hidden;')
|
|
template(v-if='isModalShown')
|
|
v-spacer
|
|
v-btn.animated.fadeInRight(flat, @click='closeAllModal')
|
|
v-icon(left) remove_circle_outline
|
|
span Back to Editor
|
|
template(v-else)
|
|
v-tooltip(bottom, color='primary')
|
|
v-btn.animated.fadeIn(icon, slot='activator', @click='toggleMarkup({ start: `**` })').mx-0
|
|
v-icon format_bold
|
|
span Bold
|
|
v-tooltip(bottom, color='primary')
|
|
v-btn.animated.fadeIn.wait-p1s(icon, slot='activator', @click='toggleMarkup({ start: `*` })').mx-0
|
|
v-icon format_italic
|
|
span Italic
|
|
v-tooltip(bottom, color='primary')
|
|
v-btn.animated.fadeIn.wait-p2s(icon, slot='activator', @click='toggleMarkup({ start: `~~` })').mx-0
|
|
v-icon format_strikethrough
|
|
span Strikethrough
|
|
v-menu(offset-y, open-on-hover)
|
|
v-btn.animated.fadeIn.wait-p3s(icon, slot='activator').mx-0
|
|
v-icon text_fields
|
|
v-list.py-0
|
|
template(v-for='(n, idx) in 6')
|
|
v-list-tile(@click='setHeaderLine(n)', :key='idx')
|
|
v-list-tile-action
|
|
v-icon(:size='24 - (idx - 1) * 2') title
|
|
v-list-tile-title Heading {{n}}
|
|
v-divider(v-if='idx < 5')
|
|
v-tooltip(bottom, color='primary')
|
|
v-btn.animated.fadeIn.wait-p4s(icon, slot='activator', @click='toggleMarkup({ start: `~` })').mx-0
|
|
v-icon vertical_align_bottom
|
|
span Subscript
|
|
v-tooltip(bottom, color='primary')
|
|
v-btn.animated.fadeIn.wait-p5s(icon, slot='activator', @click='toggleMarkup({ start: `^` })').mx-0
|
|
v-icon vertical_align_top
|
|
span Superscript
|
|
v-menu(offset-y, open-on-hover)
|
|
v-btn.animated.fadeIn.wait-p6s(icon, slot='activator').mx-0
|
|
v-icon format_quote
|
|
v-list.py-0
|
|
v-list-tile(@click='insertBeforeEachLine({ content: `> `})')
|
|
v-list-tile-action
|
|
v-icon format_quote
|
|
v-list-tile-title Blockquote
|
|
v-divider
|
|
v-list-tile(@click='insertBeforeEachLine({ content: `> `, after: `{.is-info}`})')
|
|
v-list-tile-action
|
|
v-icon(color='blue') format_quote
|
|
v-list-tile-title Info Blockquote
|
|
v-divider
|
|
v-list-tile(@click='insertBeforeEachLine({ content: `> `, after: `{.is-success}`})')
|
|
v-list-tile-action
|
|
v-icon(color='success') format_quote
|
|
v-list-tile-title Success Blockquote
|
|
v-divider
|
|
v-list-tile(@click='insertBeforeEachLine({ content: `> `, after: `{.is-warning}`})')
|
|
v-list-tile-action
|
|
v-icon(color='warning') format_quote
|
|
v-list-tile-title Warning Blockquote
|
|
v-divider
|
|
v-list-tile(@click='insertBeforeEachLine({ content: `> `, after: `{.is-danger}`})')
|
|
v-list-tile-action
|
|
v-icon(color='error') format_quote
|
|
v-list-tile-title Error Blockquote
|
|
v-divider
|
|
v-tooltip(bottom, color='primary')
|
|
v-btn.animated.fadeIn.wait-p7s(icon, slot='activator', @click='insertBeforeEachLine({ content: `- `})').mx-0
|
|
v-icon format_list_bulleted
|
|
span Unordered List
|
|
v-tooltip(bottom, color='primary')
|
|
v-btn.animated.fadeIn.wait-p8s(icon, slot='activator', @click='insertBeforeEachLine({ content: `1. `})').mx-0
|
|
v-icon format_list_numbered
|
|
span Ordered List
|
|
v-tooltip(bottom, color='primary')
|
|
v-btn.animated.fadeIn.wait-p9s(icon, slot='activator', @click='toggleMarkup({ start: "`" })').mx-0
|
|
v-icon space_bar
|
|
span Inline Code
|
|
v-tooltip(bottom, color='primary')
|
|
v-btn.animated.fadeIn.wait-p10s(icon, slot='activator', @click='toggleMarkup({ start: `<kbd>`, end: `</kbd>` })').mx-0
|
|
v-icon font_download
|
|
span Keyboard Key
|
|
v-tooltip(bottom, color='primary')
|
|
v-btn.animated.fadeIn.wait-p11s(icon, slot='activator', @click='insertAfter({ content: `---`, newLine: true })').mx-0
|
|
v-icon remove
|
|
span Horizontal Bar
|
|
.editor-markdown-main
|
|
.editor-markdown-sidebar
|
|
v-tooltip(right, color='teal')
|
|
v-btn.animated.fadeInLeft(icon, slot='activator', dark, disabled).mx-0
|
|
v-icon link
|
|
span Insert Link
|
|
v-tooltip(right, color='teal')
|
|
v-btn.animated.fadeInLeft.wait-p1s(icon, slot='activator', dark, @click='toggleModal(`editorModalMedia`)').mx-0
|
|
v-icon(:color='activeModal === `editorModalMedia` ? `teal` : ``') burst_mode
|
|
span Insert Assets
|
|
v-tooltip(right, color='teal')
|
|
v-btn.animated.fadeInLeft.wait-p2s(icon, slot='activator', dark, @click='toggleModal(`editorModalBlocks`)').mx-0
|
|
v-icon(:color='activeModal === `editorModalBlocks` ? `teal` : ``') dashboard
|
|
span Insert Block
|
|
v-tooltip(right, color='teal')
|
|
v-btn.animated.fadeInLeft.wait-p3s(icon, slot='activator', dark, disabled).mx-0
|
|
v-icon code
|
|
span Insert Code Block
|
|
v-tooltip(right, color='teal')
|
|
v-btn.animated.fadeInLeft.wait-p4s(icon, slot='activator', dark, disabled).mx-0
|
|
v-icon play_circle_outline
|
|
span Insert Video / Audio
|
|
v-tooltip(right, color='teal')
|
|
v-btn.animated.fadeInLeft.wait-p5s(icon, slot='activator', dark, disabled).mx-0
|
|
v-icon multiline_chart
|
|
span Insert Diagram
|
|
v-tooltip(right, color='teal')
|
|
v-btn.animated.fadeInLeft.wait-p6s(icon, slot='activator', dark, disabled).mx-0
|
|
v-icon functions
|
|
span Insert Math Expression
|
|
v-tooltip(right, color='teal')
|
|
v-btn.animated.fadeInLeft.wait-p7s(icon, slot='activator', dark, disabled).mx-0
|
|
v-icon border_outer
|
|
span Table Helper
|
|
template(v-if='$vuetify.breakpoint.mdAndUp')
|
|
v-spacer
|
|
v-tooltip(right, color='teal')
|
|
v-btn.animated.fadeInLeft.wait-p8s(icon, slot='activator', dark, @click='toggleFullscreen').mx-0
|
|
v-icon crop_free
|
|
span Distraction Free Mode
|
|
v-tooltip(right, color='teal')
|
|
v-btn.animated.fadeInLeft.wait-p9s(icon, slot='activator', dark, @click='toggleHelp').mx-0
|
|
v-icon(:color='helpShown ? `teal` : ``') help
|
|
span Markdown Formatting Help
|
|
.editor-markdown-editor
|
|
.editor-markdown-editor-title(v-if='previewShown', @click='previewShown = false') Editor
|
|
.editor-markdown-editor-title(v-else='previewShown', @click='previewShown = true'): v-icon(dark) drag_indicator
|
|
codemirror(ref='cm', v-model='code', :options='cmOptions', @ready='onCmReady', @input='onCmInput')
|
|
transition(name='editor-markdown-preview')
|
|
.editor-markdown-preview(v-if='previewShown')
|
|
.editor-markdown-preview-title(@click='previewShown = false') Preview
|
|
.editor-markdown-preview-content.contents(ref='editorPreview', v-html='previewHTML')
|
|
|
|
v-system-bar.editor-markdown-sysbar(dark, status, color='grey darken-3')
|
|
.caption.editor-markdown-sysbar-locale {{locale.toUpperCase()}}
|
|
.caption.px-3 /{{path}}
|
|
template(v-if='$vuetify.breakpoint.mdAndUp')
|
|
v-spacer
|
|
.caption Markdown
|
|
v-spacer
|
|
.caption Ln {{cursorPos.line + 1}}, Col {{cursorPos.ch + 1}}
|
|
|
|
markdown-help(v-if='helpShown')
|
|
</template>
|
|
|
|
<script>
|
|
import _ from 'lodash'
|
|
import { get, sync } from 'vuex-pathify'
|
|
import markdownHelp from './markdown/help.vue'
|
|
|
|
// ========================================
|
|
// IMPORTS
|
|
// ========================================
|
|
|
|
// Code Mirror
|
|
import { codemirror } from 'vue-codemirror'
|
|
import 'codemirror/lib/codemirror.css'
|
|
|
|
// Language
|
|
import 'codemirror/mode/markdown/markdown.js'
|
|
|
|
// Addons
|
|
import 'codemirror/addon/selection/active-line.js'
|
|
import 'codemirror/addon/display/fullscreen.js'
|
|
import 'codemirror/addon/display/fullscreen.css'
|
|
import 'codemirror/addon/selection/mark-selection.js'
|
|
import 'codemirror/addon/search/searchcursor.js'
|
|
|
|
// Markdown-it
|
|
import MarkdownIt from 'markdown-it'
|
|
import mdAttrs from 'markdown-it-attrs'
|
|
import mdEmoji from 'markdown-it-emoji'
|
|
import mdTaskLists from 'markdown-it-task-lists'
|
|
import mdExpandTabs from 'markdown-it-expand-tabs'
|
|
import mdAbbr from 'markdown-it-abbr'
|
|
import mdSup from 'markdown-it-sup'
|
|
import mdSub from 'markdown-it-sub'
|
|
import mdMark from 'markdown-it-mark'
|
|
import mdImsize from 'markdown-it-imsize'
|
|
|
|
// Prism (Syntax Highlighting)
|
|
import Prism from '@/libs/prism/prism.js'
|
|
|
|
// ========================================
|
|
// INIT
|
|
// ========================================
|
|
|
|
// Platform detection
|
|
const CtrlKey = /Mac/.test(navigator.platform) ? 'Cmd' : 'Ctrl'
|
|
|
|
// Markdown Instance
|
|
const md = new MarkdownIt({
|
|
html: true,
|
|
breaks: true,
|
|
linkify: true,
|
|
typography: true,
|
|
highlight(str, lang) {
|
|
return `<pre class="line-numbers"><code class="language-${lang}">${str}</code></pre>`
|
|
}
|
|
})
|
|
.use(mdAttrs)
|
|
.use(mdEmoji)
|
|
.use(mdTaskLists, {label: true, labelAfter: true})
|
|
.use(mdExpandTabs)
|
|
.use(mdAbbr)
|
|
.use(mdSup)
|
|
.use(mdSub)
|
|
.use(mdMark)
|
|
.use(mdImsize)
|
|
|
|
// ========================================
|
|
// HELPER FUNCTIONS
|
|
// ========================================
|
|
|
|
// Inject line numbers for preview scroll sync
|
|
let linesMap = []
|
|
function injectLineNumbers (tokens, idx, options, env, slf) {
|
|
let line
|
|
if (tokens[idx].map && tokens[idx].level === 0) {
|
|
line = tokens[idx].map[0]
|
|
tokens[idx].attrJoin('class', 'line')
|
|
tokens[idx].attrSet('data-line', String(line))
|
|
linesMap.push(line)
|
|
}
|
|
return slf.renderToken(tokens, idx, options, env, slf)
|
|
}
|
|
md.renderer.rules.paragraph_open = injectLineNumbers
|
|
md.renderer.rules.heading_open = injectLineNumbers
|
|
|
|
// ========================================
|
|
// Vue Component
|
|
// ========================================
|
|
|
|
export default {
|
|
components: {
|
|
codemirror,
|
|
markdownHelp
|
|
},
|
|
props: {
|
|
save: {
|
|
type: Function
|
|
}
|
|
},
|
|
data() {
|
|
return {
|
|
fabInsertMenu: false,
|
|
code: this.$store.get('editor/content'),
|
|
cmOptions: {
|
|
tabSize: 2,
|
|
mode: 'text/markdown',
|
|
theme: 'wikijs-dark',
|
|
lineNumbers: true,
|
|
lineWrapping: true,
|
|
line: true,
|
|
styleActiveLine: true,
|
|
highlightSelectionMatches: {
|
|
annotateScrollbar: true
|
|
},
|
|
viewportMargin: 50
|
|
},
|
|
cursorPos: { ch: 0, line: 1 },
|
|
previewShown: true,
|
|
previewHTML: '',
|
|
helpShown: false
|
|
}
|
|
},
|
|
computed: {
|
|
cm() {
|
|
return this.$refs.cm.codemirror
|
|
},
|
|
isMobile() {
|
|
return this.$vuetify.breakpoint.smAndDown
|
|
},
|
|
isModalShown() {
|
|
return this.helpShown || this.activeModal !== ''
|
|
},
|
|
locale: get('page/locale'),
|
|
path: get('page/path'),
|
|
activeModal: sync('editor/activeModal')
|
|
},
|
|
methods: {
|
|
toggleModal(key) {
|
|
this.activeModal = (this.activeModal === key) ? '' : key
|
|
this.helpShown = false
|
|
},
|
|
closeAllModal() {
|
|
this.activeModal = ''
|
|
this.helpShown = false
|
|
},
|
|
onCmReady(cm) {
|
|
const keyBindings = {
|
|
'F11' (cm) {
|
|
cm.setOption('fullScreen', !cm.getOption('fullScreen'))
|
|
},
|
|
'Esc' (cm) {
|
|
if (cm.getOption('fullScreen')) cm.setOption('fullScreen', false)
|
|
}
|
|
}
|
|
_.set(keyBindings, `${CtrlKey}-S`, cm => {
|
|
this.save()
|
|
return false
|
|
})
|
|
_.set(keyBindings, `${CtrlKey}-B`, cm => {
|
|
this.toggleMarkup({ start: `**` })
|
|
return false
|
|
})
|
|
_.set(keyBindings, `${CtrlKey}-I`, cm => {
|
|
this.toggleMarkup({ start: `*` })
|
|
return false
|
|
})
|
|
_.set(keyBindings, `${CtrlKey}-Alt-Right`, cm => {
|
|
let lvl = this.getHeaderLevel(cm)
|
|
if (lvl >= 6) { lvl = 5 }
|
|
this.setHeaderLine(lvl + 1)
|
|
return false
|
|
})
|
|
_.set(keyBindings, `${CtrlKey}-Alt-Left`, cm => {
|
|
let lvl = this.getHeaderLevel(cm)
|
|
if (lvl <= 1) { lvl = 2 }
|
|
this.setHeaderLine(lvl - 1)
|
|
return false
|
|
})
|
|
|
|
if (this.$vuetify.breakpoint.mdAndUp) {
|
|
cm.setSize(null, 'calc(100vh - 112px - 24px)')
|
|
} else {
|
|
cm.setSize(null, 'calc(100vh - 112px - 16px)')
|
|
}
|
|
cm.setOption('extraKeys', keyBindings)
|
|
cm.on('cursorActivity', cm => {
|
|
this.positionSync(cm)
|
|
this.scrollSync(cm)
|
|
})
|
|
this.onCmInput(this.code)
|
|
},
|
|
onCmInput: _.debounce(function (newContent) {
|
|
linesMap = []
|
|
this.$store.set('editor/content', newContent)
|
|
this.previewHTML = md.render(newContent)
|
|
this.$nextTick(() => {
|
|
Prism.highlightAllUnder(this.$refs.editorPreview)
|
|
Array.from(this.$refs.editorPreview.querySelectorAll('pre.line-numbers')).forEach(pre => pre.classList.add('prismjs'))
|
|
this.scrollSync(this.cm)
|
|
})
|
|
}, 500),
|
|
/**
|
|
* Update cursor state
|
|
*/
|
|
positionSync(cm) {
|
|
this.cursorPos = cm.getCursor('head')
|
|
},
|
|
/**
|
|
* Wrap selection with start / end tags
|
|
*/
|
|
toggleMarkup({ start, end }) {
|
|
if (!end) { end = start }
|
|
if (!this.cm.doc.somethingSelected()) {
|
|
return this.$store.commit('showNotification', {
|
|
message: 'You must select something first!',
|
|
style: 'warning',
|
|
icon: 'warning'
|
|
})
|
|
}
|
|
this.cm.doc.replaceSelections(this.cm.doc.getSelections().map(s => start + s + end))
|
|
},
|
|
/**
|
|
* Set current line as header
|
|
*/
|
|
setHeaderLine(lvl) {
|
|
const curLine = this.cm.doc.getCursor('head').line
|
|
let lineContent = this.cm.doc.getLine(curLine)
|
|
const lineLength = lineContent.length
|
|
if (_.startsWith(lineContent, '#')) {
|
|
lineContent = lineContent.replace(/^(#+ )/, '')
|
|
}
|
|
lineContent = _.times(lvl, n => '#').join('') + ` ` + lineContent
|
|
this.cm.doc.replaceRange(lineContent, { line: curLine, ch: 0 }, { line: curLine, ch: lineLength })
|
|
},
|
|
/**
|
|
* Get the header lever of the current line
|
|
*/
|
|
getHeaderLevel(cm) {
|
|
const curLine = this.cm.doc.getCursor('head').line
|
|
let lineContent = this.cm.doc.getLine(curLine)
|
|
let lvl = 0
|
|
|
|
const result = lineContent.match(/^(#+) /)
|
|
if (result) {
|
|
lvl = _.get(result, '[1]', '').length
|
|
}
|
|
return lvl
|
|
},
|
|
/**
|
|
* Insert content at cursor
|
|
*/
|
|
insertAtCursor({ content }) {
|
|
const cursor = this.cm.doc.getCursor('head')
|
|
this.cm.doc.replaceRange(content, cursor)
|
|
},
|
|
/**
|
|
* Insert content after current line
|
|
*/
|
|
insertAfter({ content, newLine }) {
|
|
const curLine = this.cm.doc.getCursor('to').line
|
|
const lineLength = this.cm.doc.getLine(curLine).length
|
|
this.cm.doc.replaceRange(newLine ? `\n${content}\n` : content, { line: curLine, ch: lineLength + 1 })
|
|
},
|
|
/**
|
|
* Insert content before current line
|
|
*/
|
|
insertBeforeEachLine({ content, after }) {
|
|
let lines = []
|
|
if (!this.cm.doc.somethingSelected()) {
|
|
lines.push(this.cm.doc.getCursor('head').line)
|
|
} else {
|
|
lines = _.flatten(this.cm.doc.listSelections().map(sl => {
|
|
const range = Math.abs(sl.anchor.line - sl.head.line) + 1
|
|
const lowestLine = (sl.anchor.line > sl.head.line) ? sl.head.line : sl.anchor.line
|
|
return _.times(range, l => l + lowestLine)
|
|
}))
|
|
}
|
|
lines.forEach(ln => {
|
|
let lineContent = this.cm.doc.getLine(ln)
|
|
const lineLength = lineContent.length
|
|
if (_.startsWith(lineContent, content)) {
|
|
lineContent = lineContent.substring(content.length)
|
|
}
|
|
|
|
this.cm.doc.replaceRange(content + lineContent, { line: ln, ch: 0 }, { line: ln, ch: lineLength })
|
|
})
|
|
if (after) {
|
|
const lastLine = _.last(lines)
|
|
this.cm.doc.replaceRange(`\n${after}\n`, { line: lastLine, ch: this.cm.doc.getLine(lastLine).length + 1 })
|
|
}
|
|
},
|
|
/**
|
|
* Update scroll sync
|
|
*/
|
|
scrollSync: _.debounce(function (cm) {
|
|
if (!this.previewShown || cm.somethingSelected()) { return }
|
|
let currentLine = cm.getCursor().line
|
|
if (currentLine < 3) {
|
|
this.Velocity(this.$refs.editorPreview, 'stop', true)
|
|
this.Velocity(this.$refs.editorPreview.firstChild, 'scroll', { offset: '-50', duration: 1000, container: this.$refs.editorPreview })
|
|
} else {
|
|
let closestLine = _.findLast(linesMap, n => n <= currentLine)
|
|
let destElm = this.$refs.editorPreview.querySelector(`[data-line='${closestLine}']`)
|
|
if (destElm) {
|
|
this.Velocity(this.$refs.editorPreview, 'stop', true)
|
|
this.Velocity(destElm, 'scroll', { offset: '-100', duration: 1000, container: this.$refs.editorPreview })
|
|
}
|
|
}
|
|
}, 500),
|
|
toggleHelp () {
|
|
this.helpShown = !this.helpShown
|
|
this.activeModal = ''
|
|
},
|
|
toggleFullscreen () {
|
|
this.cm.setOption('fullScreen', true)
|
|
}
|
|
},
|
|
mounted() {
|
|
this.$root.$on('editorInsert', opts => {
|
|
switch (opts.kind) {
|
|
case 'IMAGE':
|
|
let img = `![${opts.text}](${opts.path})`
|
|
if (opts.align && opts.align !== '') {
|
|
img += `{.align-${opts.align}}`
|
|
}
|
|
this.insertAtCursor({
|
|
content: img
|
|
})
|
|
break
|
|
case 'BINARY':
|
|
this.insertAtCursor({
|
|
content: `[${opts.text}](${opts.path})`
|
|
})
|
|
break
|
|
}
|
|
})
|
|
},
|
|
beforeDestroy() {
|
|
this.$root.$off('editorInsert')
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang='scss'>
|
|
|
|
$editor-height: calc(100vh - 112px - 24px);
|
|
$editor-height-mobile: calc(100vh - 112px - 16px);
|
|
|
|
.editor-markdown {
|
|
&-main {
|
|
display: flex;
|
|
width: 100%;
|
|
}
|
|
|
|
&-editor {
|
|
background-color: darken(mc('grey', '900'), 4.5%);
|
|
flex: 1 1 50%;
|
|
display: block;
|
|
height: $editor-height;
|
|
position: relative;
|
|
|
|
@include until($tablet) {
|
|
height: $editor-height-mobile;
|
|
}
|
|
|
|
&-title {
|
|
background-color: mc('grey', '800');
|
|
border-bottom-left-radius: 5px;
|
|
display: inline-flex;
|
|
height: 30px;
|
|
justify-content: center;
|
|
align-items: center;
|
|
padding: 0 1rem;
|
|
color: mc('grey', '500');
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
z-index: 7;
|
|
text-transform: uppercase;
|
|
font-size: .7rem;
|
|
cursor: pointer;
|
|
|
|
@include until($tablet) {
|
|
display: none;
|
|
}
|
|
}
|
|
}
|
|
|
|
&-preview {
|
|
flex: 1 1 50%;
|
|
background-color: mc('grey', '100');
|
|
position: relative;
|
|
height: $editor-height;
|
|
overflow: hidden;
|
|
|
|
@at-root .theme--dark & {
|
|
background-color: mc('grey', '900');
|
|
}
|
|
|
|
@include until($tablet) {
|
|
display: none;
|
|
}
|
|
|
|
&-enter-active, &-leave-active {
|
|
transition: max-width .5s ease;
|
|
max-width: 50vw;
|
|
|
|
.editor-code-preview-content {
|
|
width: 50vw;
|
|
overflow:hidden;
|
|
}
|
|
}
|
|
&-enter, &-leave-to {
|
|
max-width: 0;
|
|
}
|
|
|
|
&-content {
|
|
height: $editor-height;
|
|
overflow-y: scroll;
|
|
padding: 1rem 1rem 1rem 0;
|
|
width: calc(100% + 1rem + 17px);
|
|
// -ms-overflow-style: none;
|
|
|
|
// &::-webkit-scrollbar {
|
|
// width: 0px;
|
|
// background: transparent;
|
|
// }
|
|
|
|
@include until($tablet) {
|
|
height: $editor-height-mobile;
|
|
}
|
|
}
|
|
|
|
&-title {
|
|
background-color: rgba(mc('blue', '100'), .75);
|
|
border-bottom-right-radius: 5px;
|
|
display: inline-flex;
|
|
height: 30px;
|
|
justify-content: center;
|
|
align-items: center;
|
|
padding: 0 1rem;
|
|
color: mc('blue', '800');
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
z-index: 2;
|
|
text-transform: uppercase;
|
|
font-size: .7rem;
|
|
cursor: pointer;
|
|
}
|
|
}
|
|
|
|
&-toolbar {
|
|
background-color: mc('blue', '700');
|
|
background-image: linear-gradient(to bottom, mc('blue', '700') 0%, mc('blue','800') 100%);
|
|
color: #FFF;
|
|
|
|
.v-toolbar__content {
|
|
padding-left: 78px;
|
|
|
|
@include until($tablet) {
|
|
padding-left: 8px;
|
|
}
|
|
}
|
|
}
|
|
|
|
&-insert:not(.v-speed-dial--right) {
|
|
@include from($tablet) {
|
|
left: 50%;
|
|
margin-left: -28px;
|
|
}
|
|
}
|
|
|
|
&-sidebar {
|
|
background-color: mc('grey', '900');
|
|
width: 64px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: flex-start;
|
|
align-items: center;
|
|
padding: 24px 0;
|
|
|
|
@include until($tablet) {
|
|
padding: 12px 0;
|
|
width: 40px;
|
|
}
|
|
}
|
|
|
|
&-sysbar {
|
|
padding-left: 0;
|
|
|
|
&-locale {
|
|
background-color: rgba(255,255,255,.25);
|
|
display:inline-flex;
|
|
padding: 0 12px;
|
|
height: 24px;
|
|
width: 63px;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
}
|
|
|
|
// ==========================================
|
|
// Fix FAB revealing under codemirror
|
|
// ==========================================
|
|
|
|
.speed-dial--fixed {
|
|
z-index: 8;
|
|
}
|
|
|
|
// ==========================================
|
|
// CODE MIRROR
|
|
// ==========================================
|
|
|
|
.CodeMirror {
|
|
height: auto;
|
|
|
|
.cm-header-1 {
|
|
font-size: 1.5rem;
|
|
}
|
|
.cm-header-2 {
|
|
font-size: 1.25rem;
|
|
}
|
|
.cm-header-3 {
|
|
font-size: 1.15rem;
|
|
}
|
|
.cm-header-4 {
|
|
font-size: 1.1rem;
|
|
}
|
|
.cm-header-5 {
|
|
font-size: 1.05rem;
|
|
}
|
|
.cm-header-6 {
|
|
font-size: 1.025rem;
|
|
}
|
|
}
|
|
|
|
.CodeMirror-focused .cm-matchhighlight {
|
|
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAIAAAACCAYAAABytg0kAAAAFklEQVQI12NgYGBgkKzc8x9CMDAwAAAmhwSbidEoSQAAAABJRU5ErkJggg==);
|
|
background-position: bottom;
|
|
background-repeat: repeat-x;
|
|
}
|
|
.cm-matchhighlight {
|
|
background-color: mc('grey', '800');
|
|
}
|
|
.CodeMirror-selection-highlight-scrollbar {
|
|
background-color: mc('green', '600');
|
|
}
|
|
|
|
.cm-s-wikijs-dark.CodeMirror {
|
|
background: darken(mc('grey','900'), 3%);
|
|
color: #e0e0e0;
|
|
}
|
|
.cm-s-wikijs-dark div.CodeMirror-selected {
|
|
background: mc('blue','800');
|
|
}
|
|
.cm-s-wikijs-dark .cm-matchhighlight {
|
|
background: mc('blue','800');
|
|
}
|
|
.cm-s-wikijs-dark .CodeMirror-line::selection, .cm-s-wikijs-dark .CodeMirror-line > span::selection, .cm-s-wikijs-dark .CodeMirror-line > span > span::selection {
|
|
background: mc('red', '500');
|
|
}
|
|
.cm-s-wikijs-dark .CodeMirror-line::-moz-selection, .cm-s-wikijs-dark .CodeMirror-line > span::-moz-selection, .cm-s-wikijs-dark .CodeMirror-line > span > span::-moz-selection {
|
|
background: mc('red', '500');
|
|
}
|
|
.cm-s-wikijs-dark .CodeMirror-gutters {
|
|
background: darken(mc('grey','900'), 6%);
|
|
border-right: 1px solid mc('grey','900');
|
|
}
|
|
.cm-s-wikijs-dark .CodeMirror-guttermarker {
|
|
color: #ac4142;
|
|
}
|
|
.cm-s-wikijs-dark .CodeMirror-guttermarker-subtle {
|
|
color: #505050;
|
|
}
|
|
.cm-s-wikijs-dark .CodeMirror-linenumber {
|
|
color: mc('grey','800');
|
|
}
|
|
.cm-s-wikijs-dark .CodeMirror-cursor {
|
|
border-left: 1px solid #b0b0b0;
|
|
}
|
|
.cm-s-wikijs-dark span.cm-comment {
|
|
color: mc('orange','800');
|
|
}
|
|
.cm-s-wikijs-dark span.cm-atom {
|
|
color: #aa759f;
|
|
}
|
|
.cm-s-wikijs-dark span.cm-number {
|
|
color: #aa759f;
|
|
}
|
|
.cm-s-wikijs-dark span.cm-property, .cm-s-wikijs-dark span.cm-attribute {
|
|
color: #90a959;
|
|
}
|
|
.cm-s-wikijs-dark span.cm-keyword {
|
|
color: #ac4142;
|
|
}
|
|
.cm-s-wikijs-dark span.cm-string {
|
|
color: #f4bf75;
|
|
}
|
|
.cm-s-wikijs-dark span.cm-variable {
|
|
color: #90a959;
|
|
}
|
|
.cm-s-wikijs-dark span.cm-variable-2 {
|
|
color: #6a9fb5;
|
|
}
|
|
.cm-s-wikijs-dark span.cm-def {
|
|
color: #d28445;
|
|
}
|
|
.cm-s-wikijs-dark span.cm-bracket {
|
|
color: #e0e0e0;
|
|
}
|
|
.cm-s-wikijs-dark span.cm-tag {
|
|
color: #ac4142;
|
|
}
|
|
.cm-s-wikijs-dark span.cm-link {
|
|
color: #aa759f;
|
|
}
|
|
.cm-s-wikijs-dark span.cm-error {
|
|
background: #ac4142;
|
|
color: #b0b0b0;
|
|
}
|
|
.cm-s-wikijs-dark .CodeMirror-activeline-background {
|
|
background: mc('grey','900');
|
|
}
|
|
.cm-s-wikijs-dark .CodeMirror-matchingbracket {
|
|
text-decoration: underline;
|
|
color: white !important;
|
|
}
|
|
|
|
}
|
|
</style>
|