diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-09-27 11:55:17 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-09-27 11:55:17 +0900 |
| commit | 0ef64a6d0b7f95c2427536feee657164b759d0d3 (patch) | |
| tree | e27f4e183c5870746ae9347d1e6268e0d973cbe4 /src/client/app/mobile/views | |
| parent | wip (diff) | |
| download | misskey-0ef64a6d0b7f95c2427536feee657164b759d0d3.tar.gz misskey-0ef64a6d0b7f95c2427536feee657164b759d0d3.tar.bz2 misskey-0ef64a6d0b7f95c2427536feee657164b759d0d3.zip | |
wip
Diffstat (limited to 'src/client/app/mobile/views')
| -rw-r--r-- | src/client/app/mobile/views/components/note-detail.vue | 22 | ||||
| -rw-r--r-- | src/client/app/mobile/views/components/note.sub.vue | 2 | ||||
| -rw-r--r-- | src/client/app/mobile/views/components/note.vue | 2 |
3 files changed, 12 insertions, 14 deletions
diff --git a/src/client/app/mobile/views/components/note-detail.vue b/src/client/app/mobile/views/components/note-detail.vue index c56d10093d..472c18088d 100644 --- a/src/client/app/mobile/views/components/note-detail.vue +++ b/src/client/app/mobile/views/components/note-detail.vue @@ -223,8 +223,6 @@ export default Vue.extend({ </script> <style lang="stylus" scoped> - - root(isDark) overflow hidden width 100% @@ -248,22 +246,22 @@ root(isDark) text-align center color #999 cursor pointer - background isDark ? #21242d : #fafafa + background var(--subNoteBg) outline none border none - border-bottom solid 1px isDark ? #1c2023 : #eef0f2 + border-bottom solid 1px var(--faceDivider) border-radius 6px 6px 0 0 box-shadow none &:hover - background isDark ? #16181d : #f6f6f6 + box-shadow 0 0 0 100px inset rgba(0, 0, 0, 0.05) - &:disabled - color #ccc + &:active + box-shadow 0 0 0 100px inset rgba(0, 0, 0, 0.1) > .conversation > * - border-bottom 1px solid isDark ? #1c2023 : #eef0f2 + border-bottom 1px solid var(--faceDivider) > .renote color var(--renoteText) @@ -290,7 +288,7 @@ root(isDark) padding-top 8px > .reply-to - border-bottom 1px solid isDark ? #1c2023 : #eef0f2 + border-bottom 1px solid var(--faceDivider) > article padding 14px 16px 9px 16px @@ -323,7 +321,7 @@ root(isDark) > .name display inline-block margin .4em 0 - color isDark ? #fff : #627079 + color var(--noteHeaderName) font-size 16px font-weight bold text-align left @@ -407,7 +405,7 @@ root(isDark) border none box-shadow none font-size 1em - color isDark ? #606984 : #ddd + color var(--noteActions) cursor pointer &:not(:last-child) @@ -426,7 +424,7 @@ root(isDark) > .replies > * - border-top 1px solid isDark ? #1c2023 : #eef0f2 + border-top 1px solid var(--faceDivider) .mk-note-detail[data-darkmode] root(true) diff --git a/src/client/app/mobile/views/components/note.sub.vue b/src/client/app/mobile/views/components/note.sub.vue index c25f827dad..2f38c9e97d 100644 --- a/src/client/app/mobile/views/components/note.sub.vue +++ b/src/client/app/mobile/views/components/note.sub.vue @@ -45,7 +45,7 @@ root(isDark) display flex padding 16px font-size 10px - background isDark ? #21242d : #fcfcfc + background var(--subNoteBg) @media (min-width 350px) font-size 12px diff --git a/src/client/app/mobile/views/components/note.vue b/src/client/app/mobile/views/components/note.vue index 8b7c559997..859fc88043 100644 --- a/src/client/app/mobile/views/components/note.vue +++ b/src/client/app/mobile/views/components/note.vue @@ -442,7 +442,7 @@ root(isDark) border none box-shadow none font-size 1em - color isDark ? #606984 : #ddd + color var(--noteActions) cursor pointer &:not(:last-child) |