From d3b4b70bfc4b86ba283b46b4fb95954450854190 Mon Sep 17 00:00:00 2001 From: syuilo Date: Sat, 14 Aug 2021 22:35:15 +0900 Subject: [PATCH] :art: --- CHANGELOG.md | 1 + src/client/components/date-separated-list.vue | 4 ++-- src/client/components/notes.vue | 12 +++++++++--- src/client/pages/api-console.vue | 2 +- src/client/pages/timeline.vue | 8 +++++--- src/client/ui/universal.vue | 9 +++++++-- 6 files changed, 25 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ef3b99a34..33657e99a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,7 @@ ### Improvements - Misskey更新時にダイアログを表示するように - ジョブキューウィジェットに警報音を鳴らす設定を追加 +‐ UIデザインの調整 ### Bugfixes - ActivityPub: 長いユーザーの名前や自己紹介の対応 diff --git a/src/client/components/date-separated-list.vue b/src/client/components/date-separated-list.vue index 7a4cc5ef9..fa0b6d669 100644 --- a/src/client/components/date-separated-list.vue +++ b/src/client/components/date-separated-list.vue @@ -93,13 +93,13 @@ export default defineComponent({ }); return h(this.$store.state.animation ? TransitionGroup : 'div', this.$store.state.animation ? { - class: 'sqadhkmv' + (this.noGap ? ' noGap _block' : ''), + class: 'sqadhkmv' + (this.noGap ? ' noGap' : ''), name: 'list', tag: 'div', 'data-direction': this.direction, 'data-reversed': this.reversed ? 'true' : 'false', } : { - class: 'sqadhkmv' + (this.noGap ? ' noGap _block' : ''), + class: 'sqadhkmv' + (this.noGap ? ' noGap' : ''), }, { default: renderChildren }); diff --git a/src/client/components/notes.vue b/src/client/components/notes.vue index e90102921..560441ba6 100644 --- a/src/client/components/notes.vue +++ b/src/client/components/notes.vue @@ -9,7 +9,7 @@
{{ $ts.noNotes }}
-
+
@@ -17,8 +17,8 @@
- - + +
@@ -108,4 +108,10 @@ export default defineComponent({ .fade-leave-to { opacity: 0; } + +.giivymft { + > .notes { + background: var(--panel); + } +} diff --git a/src/client/pages/api-console.vue b/src/client/pages/api-console.vue index adae17658..c6d459fd6 100644 --- a/src/client/pages/api-console.vue +++ b/src/client/pages/api-console.vue @@ -1,7 +1,7 @@