- Notifications
You must be signed in to change notification settings - Fork 0
UI: Surgically implement CSS and motion audit recommendations (Antigravity)#1297
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
Uh oh!
There was an error while loading. Please reload this page.
Merged
Changes from all commits
Commits
Show all changes
30 commits
Select commit
Hold shift + click to select a range
4d9cacd
UI: Surgically implement CSS and motion audit recommendations
BigSimmo df2d499
merge: sync origin/main into motion-audit-fixes-clean
cursoragent cdde82e
fix(ui): complete motion-audit shimmer and stagger wiring
cursoragent 9fcac0b
docs(ledger): record PR #1297 motion-audit CI babysit
cursoragent 9154d6e
fix(ci): skip local RAM floor in hosted Next builds
cursoragent 58727c5
docs(ledger): record PR #1297 CI RAM-gate Build fix
cursoragent e09f1bb
fix(ci): allow Next builds inside low-RAM containers
cursoragent 2ab54c8
docs(ledger): record PR #1297 container RAM-gate fix
cursoragent 2a07c10
docs(ledger): pin PR #1297 tip SHA after container fix
cursoragent 8e92eb9
style: prettier-format guard-next-build.mjs
cursoragent 189f897
chore: retrigger CI after prettier tip
cursoragent b1318a4
chore: retrigger required CI on current tip
cursoragent 7233177
docs(ledger): record tip awaiting exact-head CI for #1297
cursoragent c5a145d
merge: sync origin/main; adopt main RAM-guard fix
cursoragent 4a9cc6f
docs(ledger): close out PR #1297 CI/Bugbot babysit
cursoragent 68b3d1d
fix(a11y): halt skeleton shimmer under reduced motion
cursoragent 44ebec6
docs(ledger): record PR #1297 review-thread disposition
cursoragent 1793723
merge: sync origin/main (ledger union; no product conflicts)
cursoragent 9997ac9
docs(ledger): dedupe #1306 row after merge=union sync
cursoragent 885eda9
docs(ledger): pin #1297 dedupe tip SHA
cursoragent 0fe6a3b
merge: sync origin/main before overlap flake fix
cursoragent 8ef0c1b
test(ui): stabilize header#search wait against remount flicker
cursoragent b3b558d
docs(ledger): mark PR #1297 ready after green PR required
cursoragent 2becc74
merge: sync origin/main after green product tip
cursoragent f68ece8
Merge branch 'main' into motion-audit-fixes-clean
BigSimmo 5c7c4ff
Merge remote-tracking branch 'origin/main' into codex/pr1297-review-sync
BigSimmo dc99c4f
docs: record PR 1297 review
BigSimmo 72f1380
Merge remote-tracking branch 'origin/main' into codex/pr1297-review-sync
BigSimmo c0cefd3
Merge branch 'main' into motion-audit-fixes-clean
BigSimmo 9454c30
Merge branch 'main' into motion-audit-fixes-clean
BigSimmo File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Uh oh!
There was an error while loading. Please reload this page.
Jump to
Jump to file
Failed to load files.
Loading
Uh oh!
There was an error while loading. Please reload this page.
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -2481,11 +2481,31 @@ html[data-motion="reduced"] .pwa-notice-card { | ||
| right: -10px; | ||
| } | ||
| /* Premium Skeleton Shimmer animation with custom easing and GPU compositing layer hints */ | ||
| /* Premium skeleton shimmer: GPU translateX sweep on ::after (IMP-04). | ||
| The highlight rides the compositor; the host keeps a solid fill so call sites | ||
| only need background colour + this class. Entrance stagger can still use the | ||
| host `animation` via .stagger-item without fighting the sweep. */ | ||
| .animate-skeleton-shimmer { | ||
| will-change: transform, opacity; | ||
| position: relative; | ||
| overflow: hidden; | ||
| isolation: isolate; | ||
| transform: translateZ(0); | ||
| animation: skeleton-pulse 2s cubic-bezier(0.4, 0, 0.2, 1) infinite; | ||
| } | ||
| .animate-skeleton-shimmer::after { | ||
| content: ""; | ||
| position: absolute; | ||
| inset: 0; | ||
| transform: translateX(-100%); | ||
| background: linear-gradient( | ||
| 100deg, | ||
| transparent 20%, | ||
| color-mix(in srgb, var(--surface-highlight) 55%, transparent) 50%, | ||
| transparent 80% | ||
| ); | ||
| will-change: transform; | ||
| animation: shimmer-sweep 1.4s linear infinite; | ||
| pointer-events: none; | ||
| } | ||
| /* Premium Double-Ring Focus style */ | ||
| @@ -2590,16 +2610,45 @@ html[data-motion="reduced"] .pwa-notice-card { | ||
| } | ||
| } | ||
| @keyframes skeleton-pulse { | ||
| 0%, | ||
| /* IMP-04: Compositor-thread sweep used by .animate-skeleton-shimmer::after. */ | ||
| @keyframes shimmer-sweep { | ||
| 100% { | ||
| transform: translateX(100%); | ||
| } | ||
cursor[bot] marked this conversation as resolved.
Uh oh!There was an error while loading. Please reload this page. | ||
| } | ||
| /* IMP-02: Staggered cascade entrance for search results and card grids. | ||
| Apply .stagger-item to each list child and set --stagger-index via inline style | ||
| or a :nth-child selector to sequence each card entrance at 35ms intervals. | ||
| Reduced-motion guard stops the animation while keeping items fully visible. */ | ||
| @keyframes cascade-fade-up { | ||
| from { | ||
| opacity: 0; | ||
| transform: translateY(6px); | ||
| } | ||
| to { | ||
| opacity: 1; | ||
| transform: translateY(0); | ||
| } | ||
| 50% { | ||
| opacity: 0.35; | ||
| } | ||
| .stagger-item { | ||
| animation: cascade-fade-up 200ms var(--ease-out-soft) both; | ||
| animation-delay: calc(var(--stagger-index, 0) * 35ms); | ||
| } | ||
| @media (prefers-reduced-motion: reduce) { | ||
| .animate-skeleton-shimmer::after, | ||
| .stagger-item { | ||
| animation: none !important; | ||
| } | ||
| } | ||
| html[data-motion="reduced"] .animate-skeleton-shimmer::after, | ||
| html[data-motion="reduced"] .stagger-item { | ||
| animation: none !important; | ||
| } | ||
| /* User preference and alternate output modes */ | ||
| @media (prefers-reduced-motion: reduce) { | ||
| *, | ||
Oops, something went wrong.
Uh oh!
There was an error while loading. Please reload this page.
Oops, something went wrong.
Uh oh!
There was an error while loading. Please reload this page.
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.