Restore the type squares in the results grids - #1025
Merged
Conversation
#1017 removed the infrastructure tier and took the other four type colours with it. All five lived on a single line: .tsq-flagship{...} .tsq-emerging{...} .tsq-experimental{...} .tsq-engine{...} .tsq-infrastructure{...} so deleting "the infrastructure badge rule" deleted the line. Every other removal in that commit was correctly scoped -- the filter pill, the tooltip, the abbreviation, the localStorage whitelist, the isScored branch and .b-infrastructure were all infrastructure-only. This one wasn't, because the line was shared. .tsq kept its width, height and border-radius but lost every background, so each square rendered as a 10x10 transparent box. Both grid renderers still emit `class="tsq tsq-<type>"`, so nothing was wrong with the markup -- there was simply no colour to paint. The yellow tuned ring kept showing because it is a ::after with its own background, which is why the squares looked like they vanished from beside an otherwise intact marker. Restores the four surviving colours at their original values, unchanged and still matching the .b-* badge and filter-pill palette (flagship #2e9e6a, emerging #3b73c4, experimental #d98e2b, engine #cb5f51). One rule per line now, so removing a tier can't silently take the others again. Verified in headless Chrome against the real data files, on this branch and on main for comparison: main this branch flagship + emerging 51/51 transparent 0/51, correct colours engine 26/26 transparent 0/26, rgb(203,95,81) experimental 2/2 transparent 0/2, rgb(217,142,43) Checked in both grid renderers (composite table and profile grid) and in dark mode; the tuned ring still renders.
MDA2AV
added a commit
to Kaliumhexacyanoferrat/HttpArena
that referenced
this pull request
Jul 24, 2026
Resolves the conflict GitHub reported against this PR. Nothing conflicted textually: the PR renames site/static/new-leaderboard/index.html to site/leaderboard/index.html while main modified it in place, and GitHub's mergeability check does not apply rename detection, so it reported the pair as a modify/delete conflict. `git merge-tree --write-tree` exits 0 and both merge directions are clean locally. Carries in the three changes main made to that file since this branch forked at 6bcf729: MDA2AV#1024 the Knowledge Base page search in the left menu (#navq, #navTree, buildSearchIndex) — note buildNav() now clears #navTree, not #nav MDA2AV#1025 the .tsq-* type square colours, which MDA2AV#1017 had deleted by way of a shared CSS line MDA2AV#1018 the type-rules "standard" attribute rename in the generator all of which land in the renamed file and the renamed generator.
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.
#1017 removed the infrastructure tier and took the other four type colours with it. All five lived on a single line:
.tsq-flagship{...} .tsq-emerging{...} .tsq-experimental{...}
.tsq-engine{...} .tsq-infrastructure{...}
so deleting "the infrastructure badge rule" deleted the line. Every other removal in that commit was correctly scoped -- the filter pill, the tooltip, the abbreviation, the localStorage whitelist, the isScored branch and .b-infrastructure were all infrastructure-only. This one wasn't, because the line was shared.
.tsq kept its width, height and border-radius but lost every background, so each square rendered as a 10x10 transparent box. Both grid renderers still emit
class="tsq tsq-<type>", so nothing was wrong with the markup -- there was simply no colour to paint. The yellow tuned ring kept showing because it is a ::after with its own background, which is why the squares looked like they vanished from beside an otherwise intact marker.Restores the four surviving colours at their original values, unchanged and still matching the .b-* badge and filter-pill palette (flagship #2e9e6a, emerging #3b73c4, experimental #d98e2b, engine #cb5f51). One rule per line now, so removing a tier can't silently take the others again.
Verified in headless Chrome against the real data files, on this branch and on main for comparison:
flagship + emerging 51/51 transparent 0/51, correct colours
engine 26/26 transparent 0/26, rgb(203,95,81)
experimental 2/2 transparent 0/2, rgb(217,142,43)
Checked in both grid renderers (composite table and profile grid) and in dark mode; the tuned ring still renders.
Description
PR Commands — comment on this PR to trigger (requires collaborator approval):
/benchmark -f <framework>/benchmark -f <framework> -t <test>/benchmark -f <framework> --saveAlways specify
-f <framework>. Results are automatically compared against the current leaderboard.Run benchmarks locally
You can validate and benchmark your framework locally with the lite script — no CPU pinning, fixed connection counts, all load generators run in Docker.
Requirements: Docker Engine on Linux. Load generators (gcannon, h2load, h2load-h3, wrk, ghz) are built as self-contained Docker images on first run.