fix: lightbox, breadcrumbs, navbar, uninstall

This commit is contained in:
David Ralph
2026-01-03 17:52:10 +00:00
parent 7c2e17b44d
commit 7807462c7b
6 changed files with 91 additions and 163 deletions

View File

@@ -49,8 +49,8 @@ function ModalTopBar({
// Get the last breadcrumb item (the item name)
const lastCrumb = iframeBreadcrumbs[iframeBreadcrumbs.length - 1];
// Add current section if available
if (currentSection) {
// Add current section if available and different from the last crumb
if (currentSection && currentSection !== lastCrumb.label) {
breadcrumbPath.push({
label: currentSection,
onClick: () => onBack(), // Clickable to go back

View File

@@ -1,11 +1,21 @@
@use 'scss/variables' as *;
.modalTopBar {
position: sticky;
top: 0;
z-index: 10;
display: flex;
align-items: center;
justify-content: space-between;
padding: 1.5rem 1.5rem;
// width: 100%;
@include themed {
background: t($modal);
}
backdrop-filter: blur(10px);
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
.topBarLeft {
display: flex;