diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-12-28 04:30:37 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-12-28 04:30:37 +0900 |
| commit | f0dafa04a538e446d7a4cfa41d926fbe212d42d2 (patch) | |
| tree | 07e12f585d47bca0efad61b1726c99ef1238bb45 | |
| parent | :art: (diff) | |
| download | misskey-f0dafa04a538e446d7a4cfa41d926fbe212d42d2.tar.gz misskey-f0dafa04a538e446d7a4cfa41d926fbe212d42d2.tar.bz2 misskey-f0dafa04a538e446d7a4cfa41d926fbe212d42d2.zip | |
:art:
4 files changed, 8 insertions, 4 deletions
diff --git a/src/client/app/desktop/views/components/note-detail.vue b/src/client/app/desktop/views/components/note-detail.vue index f2d46a6eed..05dd10fe05 100644 --- a/src/client/app/desktop/views/components/note-detail.vue +++ b/src/client/app/desktop/views/components/note-detail.vue @@ -338,7 +338,8 @@ export default Vue.extend({ > .count display inline margin 0 0 0 8px - color #999 + color var(--text) + opacity 0.7 &.reacted, &.reacted:hover color var(--noteActionsReactionHover) diff --git a/src/client/app/desktop/views/components/note.vue b/src/client/app/desktop/views/components/note.vue index 9e3e8dfcb6..50142e50bd 100644 --- a/src/client/app/desktop/views/components/note.vue +++ b/src/client/app/desktop/views/components/note.vue @@ -303,7 +303,8 @@ export default Vue.extend({ > .count display inline margin 0 0 0 8px - color #999 + color var(--text) + opacity 0.7 &.reacted, &.reacted:hover color var(--noteActionsReactionHover) diff --git a/src/client/app/mobile/views/components/note-detail.vue b/src/client/app/mobile/views/components/note-detail.vue index 05c770a59b..61274a246a 100644 --- a/src/client/app/mobile/views/components/note-detail.vue +++ b/src/client/app/mobile/views/components/note-detail.vue @@ -331,7 +331,8 @@ export default Vue.extend({ > .count display inline margin 0 0 0 8px - color #999 + color var(--text) + opacity 0.7 &.reacted color var(--primary) diff --git a/src/client/app/mobile/views/components/note.vue b/src/client/app/mobile/views/components/note.vue index 6c17d77cd9..6fb0f56dbf 100644 --- a/src/client/app/mobile/views/components/note.vue +++ b/src/client/app/mobile/views/components/note.vue @@ -258,7 +258,8 @@ export default Vue.extend({ > .count display inline margin 0 0 0 8px - color #999 + color var(--text) + opacity 0.7 &.reacted color var(--primary) |