From 911dedf3d7a1342758b35d24ab63758aa82a907c Mon Sep 17 00:00:00 2001 From: syuilo Date: Tue, 16 Feb 2021 22:17:13 +0900 Subject: [PATCH] wip --- locales/ja-JP.yml | 1 + src/client/components/ui/tooltip.vue | 40 +++++-- src/client/components/widgets.vue | 153 ++++++++++++++++++++++++++ src/client/directives/tooltip.ts | 5 +- src/client/style.scss | 13 --- src/client/ui/chat/index.vue | 31 ++++-- src/client/ui/chat/side.vue | 6 +- src/client/ui/chat/store.ts | 13 +++ src/client/ui/chat/widgets.vue | 61 ++++++++++ src/client/ui/deck/widgets-column.vue | 113 +++---------------- src/client/ui/default.widgets.vue | 112 +++---------------- 11 files changed, 315 insertions(+), 233 deletions(-) create mode 100644 src/client/components/widgets.vue create mode 100644 src/client/ui/chat/store.ts create mode 100644 src/client/ui/chat/widgets.vue diff --git a/locales/ja-JP.yml b/locales/ja-JP.yml index 394577f37..680e70f61 100644 --- a/locales/ja-JP.yml +++ b/locales/ja-JP.yml @@ -97,6 +97,7 @@ cantRenote: "この投稿はRenoteできません。" cantReRenote: "RenoteをRenoteすることはできません。" quote: "引用" pinnedNote: "ピン留めされたノート" +pinned: "ピン留め" you: "あなた" clickToShow: "クリックして表示" sensitive: "閲覧注意" diff --git a/src/client/components/ui/tooltip.vue b/src/client/components/ui/tooltip.vue index 6ea344c54..b220fe5d8 100644 --- a/src/client/components/ui/tooltip.vue +++ b/src/client/components/ui/tooltip.vue @@ -1,6 +1,6 @@