_content: fix solutions pages subnavigation

When the header was made unsticky the subnav for the
usecase page was not adjusted. This change fixes
the positioning and initialization of the subnav.

Change-Id: I48569fc6c4e21b782ed30269db17083b7b5eea74
Reviewed-on: https://go-review.googlesource.com/c/website/+/391538
Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
Trust: Jamal Carvalho <jamalcarvalho@google.com>
This commit is contained in:
Jamal Carvalho 2022-03-10 12:11:28 -05:00 коммит произвёл Jamal Carvalho
Родитель 2b642b0b55
Коммит cbc2ed29a6
2 изменённых файлов: 6 добавлений и 15 удалений

Просмотреть файл

@ -662,6 +662,8 @@ h1 + h2.subtitle {
}
.BreadcrumbNav-inner {
display: flex;
flex-wrap: wrap;
gap: 0.5rem 0;
justify-content: start;
list-style: none;
margin: 0 auto;
@ -1413,10 +1415,6 @@ a.GettingStartedGo-resourceItemTitle {
margin: 0;
}
.FeaturedUsers table tbody tr td img {
bottom: 0;
margin: auto;
position: absolute;
top: 0;
width: 5rem;
}
.FeaturedUsers-moreProjectsBtn {
@ -1434,9 +1432,9 @@ a.GettingStartedGo-resourceItemTitle {
margin-bottom: 1rem;
width: auto;
}
.FeaturedUsers--hiddenMobile,
.FeaturedUsers--hiddenMobile {
display: none;
vertical-align: middle !important;
}
@media only screen and (max-width: 48rem) {
.FeaturedUsers table tbody tr td:last-of-type {
@ -1445,7 +1443,6 @@ a.GettingStartedGo-resourceItemTitle {
}
}
@media only screen and (min-width: 48rem) {
.FeaturedUsers--hiddenMobile,
.FeaturedUsers--hiddenMobile {
display: table-cell;
}
@ -3247,6 +3244,7 @@ p.BackgroundQuote-body {
background-color: var(--color-background);
box-shadow: 0 0.125rem 0.125rem rgba(171, 171, 171, 0.405239);
position: fixed;
top: 0;
width: 100%;
z-index: 10;
}
@ -3359,7 +3357,7 @@ p.BackgroundQuote-body {
}
.UseCaseSubNav-anchorLinks--sticky {
position: fixed;
top: 5.5rem;
top: 2rem;
}
a.UseCase-anchorLink {
background: transparent;

Просмотреть файл

@ -32,7 +32,7 @@
const headerHeightPx = 56;
const sectionHeadings = Array.from(
document.querySelectorAll('.sectionHeading')
).map(h => h.firstChild);
);
let distanceFromTop =
window.pageYOffset +
contentBody.getBoundingClientRect().top -
@ -151,13 +151,6 @@
scrollPosition = siteHeader.clientHeight + header.clientHeight;
}
}
sectionHeadings.forEach((sectionHeading) => {
sectionHeading.setAttribute('style', `
margin-bottom: -${scrollPosition}px;
padding-top: ${scrollPosition}px;
`)
});
}
function setStickyNav() {