fix(bulk): Select toggle in a right-aligned toolbar, not floated over the nav health marker

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-05-16 18:48:59 -04:00
parent 35e26d6226
commit 85b6f37e3d
+10 -9
View File
@@ -1,12 +1,13 @@
<template> <template>
<v-container fluid class="py-6"> <v-container fluid class="py-6">
<v-btn <div class="fc-gallery-toolbar">
class="fc-select-toggle" <v-btn
:color="sel.isSelectMode ? 'accent' : undefined" :color="sel.isSelectMode ? 'accent' : undefined"
:variant="sel.isSelectMode ? 'flat' : 'tonal'" :variant="sel.isSelectMode ? 'flat' : 'tonal'"
size="small" size="small"
@click="sel.isSelectMode ? sel.exitSelectMode() : sel.enterSelectMode()" @click="sel.isSelectMode ? sel.exitSelectMode() : sel.enterSelectMode()"
>{{ sel.isSelectMode ? 'Done' : 'Select' }}</v-btn> >{{ sel.isSelectMode ? 'Done' : 'Select' }}</v-btn>
</div>
<div class="fc-gallery-layout"> <div class="fc-gallery-layout">
<div class="fc-gallery-layout__main"> <div class="fc-gallery-layout__main">
@@ -82,8 +83,8 @@ function closeImage() {
} }
.fc-gallery-layout__main { flex: 1; min-width: 0; } .fc-gallery-layout__main { flex: 1; min-width: 0; }
.fc-gallery-layout__sidebar { flex-shrink: 0; } .fc-gallery-layout__sidebar { flex-shrink: 0; }
.fc-select-toggle { .fc-gallery-toolbar {
position: absolute; top: 12px; right: 16px; z-index: 1101; display: flex; justify-content: flex-end; margin-bottom: 12px;
} }
@media (max-width: 900px) { @media (max-width: 900px) {