Widen individual page navigator sidebar from 33% to 40%

Overrides Bootstrap col-sm-4/col-sm-8 grid to 40/60 split on the
individual page sidebar. Stacks to full-width below the md breakpoint.
This commit is contained in:
2026-03-16 15:26:15 +01:00
parent 5f00f1977d
commit cb218c4a3b
4 changed files with 11051 additions and 0 deletions

3278
associted_events.html Normal file

File diff suppressed because one or more lines are too long

4322
no_round_pfp.html Normal file

File diff suppressed because one or more lines are too long

View File

@@ -1739,6 +1739,30 @@ div[id^=caldiv] {
}
// Individual page
// Widen the navigator sidebar (default is col-sm-4 = 33%)
.row:has(> .col-sm-4 > .wt-sidebar) {
> .col-sm-8,
> .col-sm-4 {
@media (max-width: map.get($grid-breakpoints, "md") - 0.02px) {
flex: 0 0 auto;
width: 100%;
}
}
@media (min-width: map.get($grid-breakpoints, "md")) {
> .col-sm-8 {
flex: 0 0 auto;
width: 60%;
}
> .col-sm-4 {
flex: 0 0 auto;
width: 40%;
}
}
}
[dir] .img-thumbnail {
text-align: center;
}

3427
with_family_events.html Normal file

File diff suppressed because one or more lines are too long