minor for light theme
This commit is contained in:
@@ -1,5 +1,5 @@
|
|||||||
<template lang='pug'>
|
<template lang='pug'>
|
||||||
.editor.grey.darken-4(:class='focused')
|
.editor(:class='focused')
|
||||||
.label {{label}}
|
.label {{label}}
|
||||||
editor-menu-bar.menubar.is-hidden(:editor='editor'
|
editor-menu-bar.menubar.is-hidden(:editor='editor'
|
||||||
:keep-in-bounds='true' v-slot='{ commands, isActive, getMarkAttrs, focused }')
|
:keep-in-bounds='true' v-slot='{ commands, isActive, getMarkAttrs, focused }')
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
<template lang="pug">
|
<template lang="pug">
|
||||||
v-footer(color='secondary' aria-label='Footer')
|
v-footer(aria-label='Footer')
|
||||||
|
|
||||||
v-dialog(v-model='showFollowMe' destroy-on-close max-width='700px')
|
v-dialog(v-model='showFollowMe' destroy-on-close max-width='700px')
|
||||||
FollowMe(@close='showFollowMe=false' is-dialog)
|
FollowMe(@close='showFollowMe=false' is-dialog)
|
||||||
|
|||||||
@@ -18,7 +18,7 @@ v-container#event.pa-0.pa-sm-2
|
|||||||
:src='event | mediaURL'
|
:src='event | mediaURL'
|
||||||
:lazy-src='event | mediaURL("thumb")'
|
:lazy-src='event | mediaURL("thumb")'
|
||||||
v-if='hasMedia')
|
v-if='hasMedia')
|
||||||
.p-description.text-body-1.pa-3.grey.darken-4.rounded(v-if='!hasMedia && event.description' v-html='event.description')
|
.p-description.text-body-1.pa-3.rounded(v-if='!hasMedia && event.description' v-html='event.description')
|
||||||
|
|
||||||
v-col.col-12.col-lg-4
|
v-col.col-12.col-lg-4
|
||||||
v-card
|
v-card
|
||||||
@@ -61,7 +61,7 @@ v-container#event.pa-0.pa-sm-2
|
|||||||
:href='`/api/event/${event.slug || event.id}.ics`')
|
:href='`/api/event/${event.slug || event.id}.ics`')
|
||||||
v-icon mdi-calendar-export
|
v-icon mdi-calendar-export
|
||||||
|
|
||||||
.p-description.text-body-1.pa-3.grey.darken-4.rounded(v-if='hasMedia && event.description' v-html='event.description')
|
.p-description.text-body-1.pa-3.rounded(v-if='hasMedia && event.description' v-html='event.description')
|
||||||
|
|
||||||
//- resources from fediverse
|
//- resources from fediverse
|
||||||
#resources.mt-1(v-if='settings.enable_federation')
|
#resources.mt-1(v-if='settings.enable_federation')
|
||||||
@@ -327,7 +327,6 @@ export default {
|
|||||||
<style lang='less'>
|
<style lang='less'>
|
||||||
.title {
|
.title {
|
||||||
margin-bottom: 25px;
|
margin-bottom: 25px;
|
||||||
color: yellow;
|
|
||||||
font-weight: 300 !important;
|
font-weight: 300 !important;
|
||||||
}
|
}
|
||||||
.main_image {
|
.main_image {
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
|
|
||||||
export default ({ $axios, store }, inject) => {
|
export default ({ $axios }, inject) => {
|
||||||
const api = {
|
const api = {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -24,7 +24,7 @@ const defaultSettings = {
|
|||||||
hide_boosts: true,
|
hide_boosts: true,
|
||||||
enable_trusted_instances: true,
|
enable_trusted_instances: true,
|
||||||
trusted_instances: [],
|
trusted_instances: [],
|
||||||
'theme.is_dark': true,
|
'theme.is_dark': false,
|
||||||
'theme.primary': '#FF4500',
|
'theme.primary': '#FF4500',
|
||||||
footerLinks: [
|
footerLinks: [
|
||||||
{ href: '/', label: 'home' },
|
{ href: '/', label: 'home' },
|
||||||
|
|||||||
Reference in New Issue
Block a user