-
Notifications
You must be signed in to change notification settings - Fork 3.8k
fix(desktop): keep page headers clear of the traffic lights #6098
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
ea9a748
fix(desktop): keep page headers clear of the traffic lights
b3eeca8
fix(desktop): cover the Resource header bar too
d5b1606
fix(desktop): cover fullscreen routes, spare embedded panels
75eccb9
fix(desktop): size the peek card to its content, soften the overlay s…
waleedlatif1 8cbdccf
fix(desktop): stop the login page scrolling, drop the pane border at …
waleedlatif1 11aa4bf
docs(desktop): correct the peek card chrome comment
waleedlatif1 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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
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
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
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
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
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,25 @@ | ||
| /** | ||
| * Top padding for a bar sitting at the very top of the workspace content pane. | ||
| * | ||
| * Folds in `--workspace-content-title-bar-inset`, the height that pane must leave | ||
| * clear for the desktop shell's inset title bar. That variable is `0px` everywhere | ||
| * except the macOS desktop app with the sidebar collapsed — the one arrangement where | ||
| * the pane, rather than the sidebar, sits beneath the traffic lights and the sidebar | ||
| * expander. Without it a top bar draws underneath both, which hides its controls and | ||
| * can leave them unclickable. | ||
| * | ||
| * Compose this rather than writing `pt-[8.5px]`: the app has two top-bar geometries | ||
| * ({@link PAGE_HEADER_BAR} and the `Resource` header's bordered variant), and the lane | ||
| * math has to stay identical across them. | ||
| */ | ||
| export const TITLE_BAR_LANE_PT = 'pt-[calc(8.5px+var(--workspace-content-title-bar-inset))]' | ||
|
|
||
| /** | ||
| * The top-of-page header bar worn by the surfaces that put a back chip, tab switcher, | ||
| * or page actions above their content. `Resource`-based pages (tables, files, logs, | ||
| * knowledge, scheduled tasks) use their own bordered bar and compose | ||
| * {@link TITLE_BAR_LANE_PT} directly. | ||
| * | ||
| * Single source of truth for this geometry — never re-derive it per page. | ||
| */ | ||
| export const PAGE_HEADER_BAR = `flex flex-shrink-0 items-center bg-[var(--bg)] px-4 ${TITLE_BAR_LANE_PT} pb-[8.5px]` |
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
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.