summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2018-06-03 04:51:58 +0900
committersyuilo <syuilotan@yahoo.co.jp>2018-06-03 04:51:58 +0900
commit255c07d1ab3996a52dab4e32a16861f11f923267 (patch)
tree199fe43b0f87efd8f5f37dcfe81789d328999483 /src
parent2.25.0 (diff)
downloadmisskey-255c07d1ab3996a52dab4e32a16861f11f923267.tar.gz
misskey-255c07d1ab3996a52dab4e32a16861f11f923267.tar.bz2
misskey-255c07d1ab3996a52dab4e32a16861f11f923267.zip
2.25.1
Diffstat (limited to 'src')
-rw-r--r--src/client/app/auth/views/index.vue3
-rw-r--r--src/client/app/desktop/views/components/notes.note.vue6
-rw-r--r--src/client/app/mobile/views/components/note.vue4
3 files changed, 7 insertions, 6 deletions
diff --git a/src/client/app/auth/views/index.vue b/src/client/app/auth/views/index.vue
index 826bcd125d..b9c7cf7c2b 100644
--- a/src/client/app/auth/views/index.vue
+++ b/src/client/app/auth/views/index.vue
@@ -3,6 +3,7 @@
<main v-if="$store.getters.isSignedIn">
<p class="fetching" v-if="fetching">読み込み中<mk-ellipsis/></p>
<x-form
+ class="form"
ref="form"
v-if="state == 'waiting'"
:session="session"
@@ -102,7 +103,7 @@ export default Vue.extend({
padding 32px
color #555
- > div
+ > div:not(.form)
padding 64px
> h1
diff --git a/src/client/app/desktop/views/components/notes.note.vue b/src/client/app/desktop/views/components/notes.note.vue
index 5f4b0532a8..ca67373c23 100644
--- a/src/client/app/desktop/views/components/notes.note.vue
+++ b/src/client/app/desktop/views/components/notes.note.vue
@@ -463,7 +463,7 @@ root(isDark)
> .app
margin-right 8px
padding-right 8px
- border-right solid 1px #eaeaea
+ border-right solid 1px isDark ? #1c2023 : #eaeaea
> .visibility
margin-left 8px
@@ -552,7 +552,7 @@ root(isDark)
padding 2px 8px 2px 16px
font-size 90%
color #8d969e
- background #edf0f3
+ background isDark ? #313543 : #edf0f3
border-radius 4px
&:before
@@ -565,7 +565,7 @@ root(isDark)
width 8px
height 8px
margin auto 0
- background #fff
+ background isDark ? #282c37 : #fff
border-radius 100%
&:hover
diff --git a/src/client/app/mobile/views/components/note.vue b/src/client/app/mobile/views/components/note.vue
index 34326e12f3..37d86fe235 100644
--- a/src/client/app/mobile/views/components/note.vue
+++ b/src/client/app/mobile/views/components/note.vue
@@ -502,7 +502,7 @@ root(isDark)
padding 2px 8px 2px 16px
font-size 90%
color #8d969e
- background #edf0f3
+ background isDark ? #313543 : #edf0f3
border-radius 4px
&:before
@@ -515,7 +515,7 @@ root(isDark)
width 8px
height 8px
margin auto 0
- background #fff
+ background isDark ? #282c37 : #fff
border-radius 100%
> .media