Merge branch 'fix/page-firefox-drag' into 'develop'

fix: page block not draggable on Firefox

Co-authored-by: sup39 <dev@sup39.dev>

Closes #9925

See merge request firefish/firefish!10653
This commit is contained in:
naskya 2023-12-24 06:22:34 +00:00
commit 6ac3169996

View File

@ -7,9 +7,9 @@
<button v-if="removable" class="_button" @click="remove()">
<i :class="icon('ph-trash')"></i>
</button>
<button v-if="draggable" class="drag-handle _button">
<div v-if="draggable" class="drag-handle _button">
<i :class="icon('ph-list')"></i>
</button>
</div>
<button class="_button" @click="toggleContent(!showBody)">
<template v-if="showBody"
><i :class="icon('ph-caret-up')"></i
@ -139,11 +139,12 @@ export default defineComponent({
top: 0;
right: 0;
> button {
> ._button {
padding: 0;
width: 42px;
font-size: 0.9em;
line-height: 42px;
text-align: center;
}
.drag-handle {