From 3043b2f619906a14dd9add3ad81e9d78549624e2 Mon Sep 17 00:00:00 2001 From: syuilo Date: Tue, 10 Jan 2023 20:21:39 +0900 Subject: [PATCH] =?UTF-8?q?fix(client):=20=E7=94=BB=E9=9D=A2=E3=81=AE?= =?UTF-8?q?=E5=B9=85=E3=81=8C=E7=8B=AD=E3=81=84=E3=81=A8=E3=82=A6=E3=82=A3?= =?UTF-8?q?=E3=82=B8=E3=82=A7=E3=83=83=E3=83=88=E3=83=89=E3=83=AD=E3=83=AF?= =?UTF-8?q?=E3=83=BC=E3=82=92=E9=96=89=E3=81=98=E3=82=8B=E6=89=8B=E6=AE=B5?= =?UTF-8?q?=E3=81=8C=E3=81=AA=E3=81=8F=E3=81=AA=E3=82=8B=E3=81=AE=E3=82=92?= =?UTF-8?q?=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fix #7191 --- CHANGELOG.md | 1 + packages/frontend/src/ui/universal.vue | 13 +++++++++++++ 2 files changed, 14 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index d2b5ffde3..63da0a5fe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -112,6 +112,7 @@ You should also include the user name that made the change. - Server: アンテナタイムライン(ストリーミング)が、フォローしていないユーザーの鍵投稿も拾ってしまう @syuilo - Client: 日付形式の文字列などがカスタム絵文字として表示されるのを修正 @syuilo - Client: case insensitive emoji search @saschanaz +- Client: 画面の幅が狭いとウィジェットドロワーを閉じる手段がなくなるのを修正 @syuilo - Client: InAppウィンドウが操作できなくなることがあるのを修正 @tamaina - Client: use proxied image for instance icon @syuilo - Client: Webhookの編集画面で、内容を保存することができない問題を修正 @m-hayabusa diff --git a/packages/frontend/src/ui/universal.vue b/packages/frontend/src/ui/universal.vue index a292379fe..079a797f4 100644 --- a/packages/frontend/src/ui/universal.vue +++ b/packages/frontend/src/ui/universal.vue @@ -74,6 +74,7 @@ :leave-to-class="$store.state.animation ? $style.transition_widgetsDrawer_leaveTo : ''" >
+
@@ -310,6 +311,18 @@ $widgets-hide-threshold: 1090px; background: var(--bg); } +.widgetsCloseButton { + padding: 8px; + display: block; + margin: 0 auto; +} + +@media (min-width: 370px) { + .widgetsCloseButton { + display: none; + } +} + .nav { position: fixed; z-index: 1000;