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:
@@ -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) {
|
||||||
|
|||||||
Reference in New Issue
Block a user