forked from FoundKeyGang/FoundKey
2.25.1
This commit is contained in:
parent
0aa9201770
commit
255c07d1ab
4 changed files with 9 additions and 8 deletions
|
@ -1,8 +1,8 @@
|
||||||
{
|
{
|
||||||
"name": "misskey",
|
"name": "misskey",
|
||||||
"author": "syuilo <i@syuilo.com>",
|
"author": "syuilo <i@syuilo.com>",
|
||||||
"version": "2.25.0",
|
"version": "2.25.1",
|
||||||
"clientVersion": "1.0.6111",
|
"clientVersion": "1.0.6112",
|
||||||
"codename": "nighthike",
|
"codename": "nighthike",
|
||||||
"main": "./built/index.js",
|
"main": "./built/index.js",
|
||||||
"private": true,
|
"private": true,
|
||||||
|
|
|
@ -3,6 +3,7 @@
|
||||||
<main v-if="$store.getters.isSignedIn">
|
<main v-if="$store.getters.isSignedIn">
|
||||||
<p class="fetching" v-if="fetching">読み込み中<mk-ellipsis/></p>
|
<p class="fetching" v-if="fetching">読み込み中<mk-ellipsis/></p>
|
||||||
<x-form
|
<x-form
|
||||||
|
class="form"
|
||||||
ref="form"
|
ref="form"
|
||||||
v-if="state == 'waiting'"
|
v-if="state == 'waiting'"
|
||||||
:session="session"
|
:session="session"
|
||||||
|
@ -102,7 +103,7 @@ export default Vue.extend({
|
||||||
padding 32px
|
padding 32px
|
||||||
color #555
|
color #555
|
||||||
|
|
||||||
> div
|
> div:not(.form)
|
||||||
padding 64px
|
padding 64px
|
||||||
|
|
||||||
> h1
|
> h1
|
||||||
|
|
|
@ -463,7 +463,7 @@ root(isDark)
|
||||||
> .app
|
> .app
|
||||||
margin-right 8px
|
margin-right 8px
|
||||||
padding-right 8px
|
padding-right 8px
|
||||||
border-right solid 1px #eaeaea
|
border-right solid 1px isDark ? #1c2023 : #eaeaea
|
||||||
|
|
||||||
> .visibility
|
> .visibility
|
||||||
margin-left 8px
|
margin-left 8px
|
||||||
|
@ -552,7 +552,7 @@ root(isDark)
|
||||||
padding 2px 8px 2px 16px
|
padding 2px 8px 2px 16px
|
||||||
font-size 90%
|
font-size 90%
|
||||||
color #8d969e
|
color #8d969e
|
||||||
background #edf0f3
|
background isDark ? #313543 : #edf0f3
|
||||||
border-radius 4px
|
border-radius 4px
|
||||||
|
|
||||||
&:before
|
&:before
|
||||||
|
@ -565,7 +565,7 @@ root(isDark)
|
||||||
width 8px
|
width 8px
|
||||||
height 8px
|
height 8px
|
||||||
margin auto 0
|
margin auto 0
|
||||||
background #fff
|
background isDark ? #282c37 : #fff
|
||||||
border-radius 100%
|
border-radius 100%
|
||||||
|
|
||||||
&:hover
|
&:hover
|
||||||
|
|
|
@ -502,7 +502,7 @@ root(isDark)
|
||||||
padding 2px 8px 2px 16px
|
padding 2px 8px 2px 16px
|
||||||
font-size 90%
|
font-size 90%
|
||||||
color #8d969e
|
color #8d969e
|
||||||
background #edf0f3
|
background isDark ? #313543 : #edf0f3
|
||||||
border-radius 4px
|
border-radius 4px
|
||||||
|
|
||||||
&:before
|
&:before
|
||||||
|
@ -515,7 +515,7 @@ root(isDark)
|
||||||
width 8px
|
width 8px
|
||||||
height 8px
|
height 8px
|
||||||
margin auto 0
|
margin auto 0
|
||||||
background #fff
|
background isDark ? #282c37 : #fff
|
||||||
border-radius 100%
|
border-radius 100%
|
||||||
|
|
||||||
> .media
|
> .media
|
||||||
|
|
Loading…
Reference in a new issue