Merge branch 'develop'

This commit is contained in:
syuilo
2019-07-09 17:03:38 +09:00
17 changed files with 29 additions and 65 deletions

View File

@ -41,7 +41,6 @@ export default Vue.extend({
padding 10px
width 100%
height 40px
font-family sans-serif
font-size 16px
color var(--googleSearchFg)
background var(--googleSearchBg)

View File

@ -1,5 +1,5 @@
<template>
<div class="iroscrza" :class="{ shadow: $store.state.device.useShadow, round: $store.state.device.roundedCorners, center: page.alignCenter }" :style="{ fontFamily: page.font }">
<div class="iroscrza" :class="{ shadow: $store.state.device.useShadow, round: $store.state.device.roundedCorners, center: page.alignCenter, serif: page.font === 'serif' }">
<header v-if="showTitle">
<div class="title">{{ page.title }}</div>
</header>
@ -150,6 +150,10 @@ export default Vue.extend({
.iroscrza
overflow hidden
background var(--face)
&.serif
> div
font-family serif
&.center
text-align center

View File

@ -10,10 +10,6 @@
<span class="separator" v-if="folder != null"><fa icon="angle-right"/></span>
<span class="folder current" v-if="folder != null">{{ folder.name }}</span>
</div>
<!--
TODO: #343
<input class="search" type="search" placeholder="&#xf002; %i18n:@search%"/>
-->
</nav>
<div class="main" :class="{ uploading: uploadings.length > 0, fetching }"
ref="main"
@ -647,33 +643,6 @@ export default Vue.extend({
> [data-icon]
margin 0
> .search
display inline-block
vertical-align bottom
user-select text
cursor auto
margin 0
padding 0 18px
width 200px
font-size 1em
line-height 38px
background transparent
outline none
//border solid 1px #ddd
border none
border-radius 0
box-shadow none
transition color 0.5s ease, border 0.5s ease
font-family FontAwesome, sans-serif
&[data-active='true']
background #fff
&::-webkit-input-placeholder,
&:-ms-input-placeholder,
&:-moz-placeholder
color $ui-control-foreground-color
> .main
padding 8px
height calc(100% - 38px)

View File

@ -197,7 +197,6 @@ export default Vue.extend({
max-width 16em
line-height 48px
font-weight bold
font-family Meiryo, sans-serif
text-decoration none
@media (max-width 1100px)

View File

@ -5,7 +5,7 @@
*/
html {
font-family: sans-serif;
font-family: Roboto, HelveticaNeue, Arial, sans-serif;
}
body > noscript {

View File

@ -15,7 +15,7 @@ progress
box-shadow none
textarea
font-family sans-serif
font-family Roboto, HelveticaNeue, Arial, sans-serif
button
margin 0

View File

@ -18,7 +18,7 @@ html, body
padding 0
scroll-behavior smooth
text-size-adjust 100%
font-family sans-serif
font-family Roboto, HelveticaNeue, Arial, sans-serif
html.changing-theme
&, *

View File

@ -1,11 +0,0 @@
import { initDb } from './db/postgre';
console.log('Init database...');
initDb(false, true, true).then(() => {
console.log('Done :)');
process.exit(0);
}, e => {
console.error('Failed to init database');
console.error(e);
});

View File

@ -38,10 +38,11 @@ export default define(meta, async (ps, user) => {
throw new ApiError(meta.errors.noSuchPage);
}
publishMainStream(user.id, 'pageEvent', {
publishMainStream(page.userId, 'pageEvent', {
pageId: ps.pageId,
event: ps.event,
var: ps.var,
userId: user.id,
user: await Users.pack(user, page.userId, {
detail: true
})

View File

@ -8,7 +8,7 @@ html
title Misskey
style.
html {
font-family: sans-serif;
font-family: Roboto, HelveticaNeue, Arial, sans-serif;
}
main {