Fix Starlight release-notes ToC being obscured by page footer#10695
Draft
Copilot wants to merge 2 commits into
Draft
Fix Starlight release-notes ToC being obscured by page footer#10695Copilot wants to merge 2 commits into
Copilot wants to merge 2 commits into
Conversation
4 tasks
Co-authored-by: witemple-msft <77019085+witemple-msft@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Fix website: Starlight ToC clipping footer issue
Fix Starlight release-notes ToC being obscured by page footer
May 14, 2026
Contributor
|
/azp run typespec - PR Tools |
|
Azure Pipelines successfully started running 1 pipeline(s). |
|
You can try these changes here
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Bug Fix
Long Starlight table-of-contents content on release notes/docs pages could render underneath the footer, obscuring the last entries. This was reproducible on the
typespec-1-12-0release notes page.What was the bug?
The custom Starlight
PageFrameoverride positioned the footer absolutely, causing it to overlay page content instead of participating in normal document flow.How did you fix it?
Updated
website/src/components/starlight-overrides/PageFrame.astroto keep the footer in normal flow by removing absolute positioning from the footer wrapper style.Implementation details
.footer {position: absolute;
z-index: 100;
width: 100%;
}