major styling additions & refinements; offloaded navbar from base.html into its own partial, core/_partials/_navbar.html, alongside new _footer.html; 0006 dash migrations fix 0003 & 0005 theme-switcher handling and rename more fluidly to palette; added remaining realm-swatches to palette applet choices & updated test_views accordingly
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
Disco DeDisco
2026-03-07 15:05:49 -05:00
parent 672de8a994
commit 314da3e246
17 changed files with 304 additions and 81 deletions

View File

@@ -26,24 +26,40 @@ body {
padding: 0.75rem 0;
border-bottom: 0.1rem solid rgba(var(--secUser), 0.4);
.container-fluid {
display: flex;
align-items: center;
gap: 1rem;
}
.navbar-brand {
margin-right: auto;
h1 {
font-size: 2rem;
}
}
.container-fluid {
display: flex;
align-items: center;
gap: 1rem;
> form { flex-shrink: 0; margin-left: auto; }
}
.navbar-text,
.navbar-link {
color: rgba(var(--quaUser), 1);
font-size: 0.875rem;
flex: 1;
min-width: 0;
text-align: center;
.navbar-label {
display: block;
color: rgba(var(--secUser), 0.7);
font-size: 0.75rem;
}
.navbar-identity {
display: block;
color: rgba(var(--quaUser), 1);
font-size: 0.875rem;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
}
}
@@ -133,4 +149,18 @@ body {
}
}
}
}
#id_footer {
flex-shrink: 0;
height: 3rem;
display: flex;
align-items: center;
justify-content: center;
border-top: 0.1rem solid rgba(var(--secUser), 0.3);
background: linear-gradient(
to top,
rgba(var(--priUser), 1) 25%,
transparent 100%
);
}