mirror of https://github.com/requarks/wiki
parent
a1b6dfb308
commit
00da4e3e05
@ -0,0 +1,21 @@
|
|||||||
|
<template lang="pug">
|
||||||
|
.toggle(:class='{ "is-active": currentValue }', @click='changeToggle')
|
||||||
|
.toggle-container
|
||||||
|
.toggle-pin
|
||||||
|
.toggle-text {{ desc }}
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
name: 'toggle',
|
||||||
|
props: ['currentValue', 'desc'],
|
||||||
|
data () {
|
||||||
|
return { }
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
changeToggle() {
|
||||||
|
this.currentValue = !this.currentValue
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
@ -0,0 +1,32 @@
|
|||||||
|
.colorpicker {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
height: 60px;
|
||||||
|
|
||||||
|
&-choice {
|
||||||
|
width: 50px;
|
||||||
|
height: 50px;
|
||||||
|
border: 1px solid #FFF;
|
||||||
|
transition: all .2s ease;
|
||||||
|
cursor: pointer;
|
||||||
|
|
||||||
|
&.is-active, &:hover {
|
||||||
|
border-width: 5px;
|
||||||
|
width: 60px;
|
||||||
|
height: 60px;
|
||||||
|
}
|
||||||
|
|
||||||
|
@each $color, $colorvalue in $material-colors {
|
||||||
|
&.is-#{$color} {
|
||||||
|
background-color: mc($color, '500');
|
||||||
|
border-color: mc($color,'500');
|
||||||
|
|
||||||
|
&.is-active, &:hover {
|
||||||
|
border-color: mc($color,'300');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,53 @@
|
|||||||
|
.toggle {
|
||||||
|
display: inline-flex;
|
||||||
|
align-items: center;
|
||||||
|
height: 24px;
|
||||||
|
cursor: pointer;
|
||||||
|
margin: 5px 5px 5px 0;
|
||||||
|
|
||||||
|
& + & {
|
||||||
|
margin-left: 15px;
|
||||||
|
}
|
||||||
|
|
||||||
|
&-container {
|
||||||
|
display: inline-flex;
|
||||||
|
align-items: center;
|
||||||
|
height: 24px;
|
||||||
|
width: 50px;
|
||||||
|
background-color: mc('grey', '300');
|
||||||
|
border-radius: 12px;
|
||||||
|
padding: 2px;
|
||||||
|
transition: background-color .5s ease;
|
||||||
|
}
|
||||||
|
|
||||||
|
&-pin {
|
||||||
|
display: flex;
|
||||||
|
background-color: #FFF;
|
||||||
|
border-radius:10px;
|
||||||
|
height: 20px;
|
||||||
|
width: 20px;
|
||||||
|
transition: all .5s ease;
|
||||||
|
}
|
||||||
|
|
||||||
|
&-text {
|
||||||
|
padding-left: 10px;
|
||||||
|
color: mc('grey', '700');
|
||||||
|
font-size: 12px;
|
||||||
|
}
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
.toggle-container {
|
||||||
|
background-color: mc('grey', '400');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&.is-active {
|
||||||
|
.toggle-container {
|
||||||
|
background-color: mc('indigo', '500');
|
||||||
|
}
|
||||||
|
.toggle-pin {
|
||||||
|
margin-left: 28px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
@ -1,11 +1,17 @@
|
|||||||
extends ./_layout.pug
|
extends ./_layout.pug
|
||||||
|
|
||||||
block adminContent
|
block adminContent
|
||||||
#page-type-admin-settings
|
|
||||||
.hero
|
.hero
|
||||||
h1.title#title= t('nav.theme')
|
h1.title#title= t('nav.theme')
|
||||||
h2.subtitle= t('admin:theme.subtitle')
|
h2.subtitle= t('admin:theme.subtitle')
|
||||||
.form-sections
|
.form-sections
|
||||||
section
|
section
|
||||||
label.label= t('admin:theme.primarycolor')
|
label.label= t('admin:theme.primarycolor')
|
||||||
color-picker
|
color-picker(current-color='indigo')
|
||||||
|
section
|
||||||
|
label.label= t('admin:theme.altcolor')
|
||||||
|
color-picker(current-color='blue-grey')
|
||||||
|
section
|
||||||
|
label.label= t('admin:theme.codeblock')
|
||||||
|
toggle(current-value='dark', desc='Use Dark Theme')
|
||||||
|
toggle(current-value='dark', desc='Colorize code syntax')
|
||||||
|
Loading…
Reference in new issue