1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-07-28 06:24:38 +02:00

fix(frontend/imagegallery): ボタンの当たり判定がまだ小さいのを修正 (#17697)

* wip

* fix

* fix

* 🎨

* fix

* fix: Video要素をpropsで渡すのをやめる

* 🎨

* fix

* wip

* fix

* fix: 画面外にドラッグできるのを修正

* fix lint

* fix

* fix

* fix

* refactor

* add comment

* fix: 画像を新しいタブで開くが機能しなくなっていた問題を修正

* fix

* clean up

* attempt to fix

* fix

* enhance: ブラウザの戻るボタンで閉じる

* Revert "fix: 画面外にドラッグできるのを修正"

This reverts commit ea2ddc2620.

* Reapply "fix: 画面外にドラッグできるのを修正"

This reverts commit 87171980a7.

* fix

* fix: 存在しない要素がsourceElementのときに閉じると画像が飛んでいく問題を修正

* fix: clampに余白を追加

* fix duplicated condition

* fix

* fix typo

* fix
This commit is contained in:
かっこかり
2026-07-12 00:11:01 +09:00
committed by GitHub
parent 520ede4d63
commit 37213d1c43

View File

@@ -109,11 +109,11 @@ SPDX-License-Identifier: AGPL-3.0-only
<div :class="[$style.header, { [$style.infoShowing]: infoShowing && !isZooming }]">
<div :class="$style.title" class="_acrylic">
<button class="_button" :class="$style.titleButton"><i class="ti ti-dots" @click="openMenu"></i></button>
<button class="_button" :class="$style.titleButton" @click="openMenu"><i class="ti ti-dots"></i></button>
<div :class="$style.titleText">
<MkCondensedLine :minScale="0.5">{{ content.filename }}</MkCondensedLine>
</div>
<button class="_button" :class="$style.titleButton"><i class="ti ti-x" @click="closeThis"></i></button>
<button class="_button" :class="$style.titleButton" @click="closeThis"><i class="ti ti-x"></i></button>
</div>
</div>