Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: Using the GitHub MCP Server
intro: 'Learn how to use the GitHub Model Context Protocol (MCP) server to extend {% data variables.copilot.copilot_chat_short %}.'
intro: 'Learn how to use the GitHub Model Context Protocol (MCP) server to interact with repositories, issues, pull requests, and other GitHub features, directly from {% data variables.copilot.copilot_chat_short %}.'
shortTitle: Use the GitHub MCP Server
versions:
feature: copilot
Expand Down
5 changes: 0 additions & 5 deletions src/frame/components/page-header/Header.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,6 @@
display: unset;
}

// Need children of portal root to be higher z-index to show dropdown
.portalRoot * {
z-index: 3 !important;
}

// Contains the logo and version picker and used when the smaller width search
// input UI is closed.
.logoWithClosedSearch {
Expand Down
2 changes: 1 addition & 1 deletion src/frame/components/page-header/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ export const Header = () => {
{error !== '404' && <HeaderNotifications />}
<header
className={cx(
'color-bg-default p-2 position-sticky top-0 z-1 border-bottom',
'color-bg-default p-2 position-sticky top-0 z-2 border-bottom',
scroll && 'color-shadow-small',
)}
role="banner"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
thead {
position: sticky;
top: 105px; // 88 + 8 + 8 + 1, space for the site header
z-index: 1; // Ensure header stays above content including superscripts

@include breakpoint-xxl {
top: 65px !important; // 48 + 8 + 8 + 1, space for the site header
Expand Down
5 changes: 5 additions & 0 deletions src/frame/stylesheets/dialog-overrides.scss
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,8 @@
visibility: hidden !important;
}
}

// Fix z-index for ActionMenu overlays (version picker, etc.) to appear above site header
#__primerPortalRoot__ * {
z-index: 3 !important;
}
Loading