-
Notifications
You must be signed in to change notification settings - Fork 0
fix: correct Roby's wordmark colors #173
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 49 commits
Commits
Show all changes
80 commits
Select commit
Hold shift + click to select a range
dc6ee9f
fix: close compact wordmark delivery tail
safal207 7c9b80d
test: bind reviewed compact wordmark visuals
safal207 58486ed
ci: apply wordmark review fixes once
safal207 6893392
chore: remove inactive temporary workflow
safal207 44dec66
fix: make wordmark stylesheet injection idempotent
safal207 d1be792
refactor: consume shared wordmark layout tokens
safal207 90cdf63
fix: precache exact wordmark stylesheet revision
safal207 a5aaf94
fix: restore approved wordmark sizing
safal207 7a62adc
test: assert wordmark stylesheet behavior
safal207 d9e2777
ci: regenerate wordmark integrity once
safal207 f4fe2fe
ci: run wordmark integrity regeneration on PR
safal207 8b536a4
ci: capture focused wordmark contract result
safal207 e028de1
test: match standalone CSS rules exactly
safal207 96758b3
ci: generate verified wordmark integrity artifact
safal207 780fc7e
ci: retain wordmark contract diagnostics
safal207 2a37d3b
test: parse exact CSS selector rules
safal207 9b1dcaf
ci: rerun wordmark integrity artifact generation
safal207 e23d182
chore: regenerate wordmark integrity manifest
safal207 2861def
chore: remove one-time wordmark integrity workflow
safal207 7e8bff1
ci: diagnose exact wordmark build once
safal207 254e6d0
chore: remove one-time wordmark build diagnostic
safal207 f5c4420
fix: restore revisioned service-worker cache marker
safal207 a390a37
ci: regenerate corrected wordmark manifest once
safal207 581c2d0
chore: regenerate integrity after cache marker fix
safal207 4724de4
chore: remove one-time manifest workflow
safal207 0d393f6
test: protect offline wordmark cache revisioning
safal207 70bebcf
test: decouple poster cache gate from release label
safal207 263ab1a
qa: bind visual evidence to current guard
safal207 223673f
ci: capture poster gate result once
safal207 d1f53a4
test: restore escaped poster source assertion
safal207 6a4222d
chore: remove one-time poster diagnostic
safal207 f2ca546
ci: recapture poster gate result
safal207 20d2b97
test: decouple PR140 cache gate from release label
safal207 d03d3f1
chore: remove poster diagnostic workflow
safal207 00d7c68
test: require exact standalone wordmark CSS rules
safal207 d092a6e
ci: accept durable exact-head AI evidence surfaces
safal207 efa0a16
ci: model AI review provenance honestly
safal207 f529969
ci: require native exact-head AI identities
safal207 f74a887
ci: require exact-head CodeRabbit review objects
safal207 6f96c58
ci: model available AI reviewer capabilities
safal207 22da4ba
docs: require exact-head AI review requests
safal207 4ac0c85
docs: align AI cooperation policy with reviewer capabilities
safal207 f791edd
ci: bind AI request freshness to PR update run
safal207 1a8fa64
ci: document AI review actions permission
safal207 99a2d92
ci: trim AI review permissions
safal207 3758d4f
ci: accept exact-head CodeRabbit clean summaries
safal207 aff736a
fix: align wordmark with production brand reference
github-actions[bot] f512013
fix: add exact-head AI review verifier
safal207 b39d405
fix: run exact-head AI review verifier
safal207 4ae00a4
fix: verify native exact-head review without checkout
safal207 dab408e
fix: load Discover wordmark CSS before offline runtime
safal207 4c21687
chore: refresh integrity after Discover delivery fix
safal207 842e215
chore: attach canonical CI integrity manifest
safal207 95ba509
test: update visual binding
safal207 391b90e
fix: align wordmark with production brand reference
github-actions[bot] cfb48b9
fix: require active exact-head review evidence
safal207 dc3996d
fix: finalize active exact-head review gate
safal207 561c368
fix: retry transient review API failures
safal207 77d1667
fix: prevent 320px menu header overflow
safal207 86be346
test: bind 320px menu overflow fix
safal207 cc4bff5
fix: close 412px menu header breakpoint gap
safal207 8a2fa02
test: bind 412px menu overflow fix
safal207 5993c24
chore: attach canonical final wordmark manifest
safal207 2a47c1f
chore: preserve canonical manifest newline
safal207 366d030
fix: bind review evidence to fresh exact-head request
safal207 eebb512
fix: require submitted exact-head review evidence
safal207 ed2d879
fix: support native exact-head CodeRabbit status evidence
safal207 48d43e7
fix: run capability-aware exact-head verifier
safal207 fb6724e
fix: bind CodeRabbit status to fresh request
safal207 4851d4d
fix: checkout exact pull-request head
safal207 28ddd0f
fix: match CodeRabbit status context
safal207 ab77d19
test: inspect delegated AI review verifier
safal207 41fe7fe
test: inspect delegated AI review contract
safal207 9ae0f7f
fix: use observed CodeRabbit status context
safal207 6b9aa79
fix: bind automatic status to head update
safal207 dceea1f
ci: align verifier with trusted main
safal207 1acd301
ci: execute verifier from immutable base
safal207 d9ed128
ci: pin trusted verifier bootstrap
safal207 e0d18de
ci: align verifier with trusted timestamp patch
safal207 ed9b736
ci: pin trusted timestamp verifier
safal207 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,2 +1,12 @@ | ||
| // Compatibility placeholder: the Discover interaction guard is bundled into | ||
| // discover-journeys-v2.js, which is already part of the service-worker precache. | ||
| const WORDMARK_STYLESHEET_ID = "robys-wordmark-responsive"; | ||
| const WORDMARK_STYLESHEET_HREF = "wordmark-responsive.css?v=20260704-1"; | ||
|
safal207 marked this conversation as resolved.
|
||
|
|
||
| if (!document.getElementById(WORDMARK_STYLESHEET_ID)) { | ||
| const wordmarkStylesheet = document.createElement("link"); | ||
| wordmarkStylesheet.id = WORDMARK_STYLESHEET_ID; | ||
| wordmarkStylesheet.rel = "stylesheet"; | ||
| wordmarkStylesheet.href = WORDMARK_STYLESHEET_HREF; | ||
| document.head.appendChild(wordmarkStylesheet); | ||
|
qodo-code-review[bot] marked this conversation as resolved.
|
||
| } | ||
Oops, something went wrong.
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.