fix: サブセットから除外される書き方をしている部分を修正

This commit is contained in:
kakkokari-gtyih 2025-01-26 12:58:50 +09:00
parent 8e8e307a20
commit 84dc996b34
1 changed files with 3 additions and 5 deletions

View File

@ -28,7 +28,7 @@ SPDX-License-Identifier: AGPL-3.0-only
{{ i18n.ts.uploadFolder }} {{ i18n.ts.uploadFolder }}
</p> </p>
<button v-if="selectMode" class="_button" :class="$style.checkboxWrapper" @click.prevent.stop="checkboxClicked"> <button v-if="selectMode" class="_button" :class="$style.checkboxWrapper" @click.prevent.stop="checkboxClicked">
<div :class="[$style.checkbox, { [$style.checked]: isSelected }]"></div> <div :class="[$style.checkbox, { [$style.checked]: isSelected, 'ti ti-check': isSelected }]"></div>
</button> </button>
</div> </div>
</template> </template>
@ -353,16 +353,14 @@ function onContextmenu(ev: MouseEvent) {
border-color: var(--MI_THEME-accent); border-color: var(--MI_THEME-accent);
background: var(--MI_THEME-accent); background: var(--MI_THEME-accent);
&::after { &::before {
content: "\ea5e";
font-family: 'tabler-icons';
position: absolute; position: absolute;
top: 50%; top: 50%;
left: 50%; left: 50%;
transform: translate(-50%, -50%); transform: translate(-50%, -50%);
color: #fff; color: #fff;
font-size: 12px; font-size: 12px;
line-height: 22px; line-height: 18px;
} }
} }
} }