diff --git a/frontend/src/components/modal/ImageCanvas.vue b/frontend/src/components/modal/ImageCanvas.vue index 52cbb17..7cd986a 100644 --- a/frontend/src/components/modal/ImageCanvas.vue +++ b/frontend/src/components/modal/ImageCanvas.vue @@ -33,7 +33,9 @@ watch(() => props.src, () => panZoom.reset()) .fc-canvas { flex: 1; position: relative; - background: rgb(var(--v-theme-background)); + /* Transparent so the viewer's haze shows through to the image area + instead of a solid panel sitting on top of it. */ + background: transparent; overflow: hidden; cursor: zoom-in; user-select: none; diff --git a/frontend/src/components/modal/ImageViewer.vue b/frontend/src/components/modal/ImageViewer.vue index 99ef9e8..195037f 100644 --- a/frontend/src/components/modal/ImageViewer.vue +++ b/frontend/src/components/modal/ImageViewer.vue @@ -123,7 +123,11 @@ function isTextEntry(el) {