From 3c51f88ea7c9c6421c139ea661af530dd8bf9888 Mon Sep 17 00:00:00 2001 From: 0xlukem Date: Wed, 8 Apr 2026 17:37:42 -0300 Subject: [PATCH 1/8] add video library to header --- material-overrides/assets/stylesheets/kluster.css | 6 ++++++ material-overrides/partials/header.html | 10 +++++++++- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/material-overrides/assets/stylesheets/kluster.css b/material-overrides/assets/stylesheets/kluster.css index ad5bae42..3b3e69b4 100644 --- a/material-overrides/assets/stylesheets/kluster.css +++ b/material-overrides/assets/stylesheets/kluster.css @@ -499,6 +499,12 @@ input.md-search__input[placeholder="Search"]::placeholder { [data-md-toggle="search"]:checked ~ .md-header .md-search__form { background-color: var(--search-input-bg-color); } + + /* Keep compact utility controls visible when desktop search expands. */ + [data-md-toggle="search"]:checked ~ .md-header .md-header__option { + max-width: 100%; + opacity: 1; + } } /* --- Footer --- */ diff --git a/material-overrides/partials/header.html b/material-overrides/partials/header.html index 0688b872..21176884 100644 --- a/material-overrides/partials/header.html +++ b/material-overrides/partials/header.html @@ -71,6 +71,14 @@ {% endif %} {% endif %} + + + {% include ".icons/material/movie-open-play-outline.svg" %} + {% if config.repo_url %} @@ -79,4 +87,4 @@ {% endif %} - \ No newline at end of file + From a6fec7d51c96dd3051d14033c8b831163b76f593 Mon Sep 17 00:00:00 2001 From: 0xlukem Date: Wed, 8 Apr 2026 18:03:10 -0300 Subject: [PATCH 2/8] add new custom icon for changelog --- material-overrides/.icons/custom/history.svg | 1 + 1 file changed, 1 insertion(+) create mode 100644 material-overrides/.icons/custom/history.svg diff --git a/material-overrides/.icons/custom/history.svg b/material-overrides/.icons/custom/history.svg new file mode 100644 index 00000000..5d597f09 --- /dev/null +++ b/material-overrides/.icons/custom/history.svg @@ -0,0 +1 @@ + \ No newline at end of file From e3ad4be7505a11c32df961a9b46b30635113641c Mon Sep 17 00:00:00 2001 From: 0xlukem Date: Fri, 10 Apr 2026 20:02:35 -0300 Subject: [PATCH 3/8] add redirects --- redirects.json | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/redirects.json b/redirects.json index 5436fd5a..92e0ad39 100644 --- a/redirects.json +++ b/redirects.json @@ -156,9 +156,17 @@ "key": "/code-reviews/quickstart/manual-review/", "value": "/code-reviews/ide-reviews/human-written-code/on-demand-reviews/" }, + { + "key": "/code-reviews/reference/mcp-tools/", + "value": "/code-reviews/reference/" + }, + { + "key": "/code-reviews/reference/response-schema/", + "value": "/code-reviews/reference/" + }, { "key": "/code-reviews/tools/", - "value": "/code-reviews/reference/mcp-tools/" + "value": "/code-reviews/reference/" }, { "key": "/get-api-key/", @@ -498,7 +506,7 @@ }, { "key": "/verify/tools/", - "value": "/code-reviews/reference/mcp-tools/" + "value": "/code-reviews/reference/" } ] } From 5016d48755022b91f0a8513d992852a2294ca9f4 Mon Sep 17 00:00:00 2001 From: 0xlukem Date: Fri, 10 Apr 2026 20:02:42 -0300 Subject: [PATCH 4/8] add reference icon --- material-overrides/.icons/custom/file.svg | 1 + 1 file changed, 1 insertion(+) create mode 100644 material-overrides/.icons/custom/file.svg diff --git a/material-overrides/.icons/custom/file.svg b/material-overrides/.icons/custom/file.svg new file mode 100644 index 00000000..73c3763c --- /dev/null +++ b/material-overrides/.icons/custom/file.svg @@ -0,0 +1 @@ + \ No newline at end of file From 5fbc4b319f233e44711cdc92134e41db2cfa501d Mon Sep 17 00:00:00 2001 From: 0xlukem Date: Fri, 10 Apr 2026 20:52:23 -0300 Subject: [PATCH 5/8] footer syling --- .../assets/stylesheets/kluster.css | 23 +++++++++++-------- 1 file changed, 13 insertions(+), 10 deletions(-) diff --git a/material-overrides/assets/stylesheets/kluster.css b/material-overrides/assets/stylesheets/kluster.css index 3b3e69b4..d7485a90 100644 --- a/material-overrides/assets/stylesheets/kluster.css +++ b/material-overrides/assets/stylesheets/kluster.css @@ -599,26 +599,29 @@ html .md-footer-meta.md-typeset .papermoon a { } /* Mobile Footer styling */ -@media screen and (max-width: 1024px) and (min-width: 768px) { +@media screen and (max-width: 1024px) and (min-width: 426px) { .md-sidebar__scrollwrap, .md-main { - padding-bottom: 5.5rem; + padding-bottom: 3rem; } .md-footer-meta__inner.md-grid { - grid-template-columns: 1fr; - justify-content: center; - row-gap: 0.2rem; + grid-template-columns: 1fr auto 1fr; + gap: 0.35rem; } .md-footer__buttons { - grid-column: 1 / -1; - justify-content: center; - padding: 0; + min-width: 0; + justify-content: flex-start; + padding: 0 0.3rem 0 0; + } + + .md-footer__center-column { + justify-self: center; } .md-footer__social { - justify-content: center; + justify-content: flex-end; } } @@ -629,7 +632,7 @@ html .md-footer-meta.md-typeset .papermoon a { } } -@media screen and (max-width: 767px) { +@media screen and (max-width: 425px) { .md-main__inner { padding-bottom: 7rem; /* footer stacks to 1 column, so taller */ } From 6c46b5931c339cd4af43d105785afcb2076b1caa Mon Sep 17 00:00:00 2001 From: 0xlukem Date: Tue, 14 Apr 2026 22:14:36 -0300 Subject: [PATCH 6/8] feedback --- material-overrides/assets/stylesheets/kluster.css | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/material-overrides/assets/stylesheets/kluster.css b/material-overrides/assets/stylesheets/kluster.css index d7485a90..f22f33b2 100644 --- a/material-overrides/assets/stylesheets/kluster.css +++ b/material-overrides/assets/stylesheets/kluster.css @@ -599,7 +599,7 @@ html .md-footer-meta.md-typeset .papermoon a { } /* Mobile Footer styling */ -@media screen and (max-width: 1024px) and (min-width: 426px) { +@media screen and (max-width: 1024px) and (min-width: 509px) { .md-sidebar__scrollwrap, .md-main { padding-bottom: 3rem; @@ -611,8 +611,6 @@ html .md-footer-meta.md-typeset .papermoon a { } .md-footer__buttons { - min-width: 0; - justify-content: flex-start; padding: 0 0.3rem 0 0; } @@ -620,6 +618,10 @@ html .md-footer-meta.md-typeset .papermoon a { justify-self: center; } + .md-copyright { + width: auto; + } + .md-footer__social { justify-content: flex-end; } @@ -632,7 +634,7 @@ html .md-footer-meta.md-typeset .papermoon a { } } -@media screen and (max-width: 425px) { +@media screen and (max-width: 508px) { .md-main__inner { padding-bottom: 7rem; /* footer stacks to 1 column, so taller */ } @@ -640,7 +642,6 @@ html .md-footer-meta.md-typeset .papermoon a { .md-footer-meta__inner.md-grid { grid-template-columns: 1fr; justify-items: center; - padding: 0.5rem; } .md-footer__buttons { From e76b59dc86b0346a43a97c4c461307598b9b4115 Mon Sep 17 00:00:00 2001 From: Lucas Malizia <131050418+0xlukem@users.noreply.github.com> Date: Wed, 15 Apr 2026 10:24:55 -0300 Subject: [PATCH 7/8] Update material-overrides/partials/header.html Co-authored-by: Erin Shaben --- material-overrides/partials/header.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/material-overrides/partials/header.html b/material-overrides/partials/header.html index 21176884..4ace338d 100644 --- a/material-overrides/partials/header.html +++ b/material-overrides/partials/header.html @@ -74,9 +74,9 @@ + aria-label="Video library"> {% include ".icons/material/movie-open-play-outline.svg" %} From c6ac1997364adfe23cf8886310f5ac707ee01cde Mon Sep 17 00:00:00 2001 From: Lucas Malizia <131050418+0xlukem@users.noreply.github.com> Date: Wed, 15 Apr 2026 10:25:44 -0300 Subject: [PATCH 8/8] Update material-overrides/assets/stylesheets/kluster.css Co-authored-by: Erin Shaben --- material-overrides/assets/stylesheets/kluster.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/material-overrides/assets/stylesheets/kluster.css b/material-overrides/assets/stylesheets/kluster.css index f22f33b2..7d3ca00b 100644 --- a/material-overrides/assets/stylesheets/kluster.css +++ b/material-overrides/assets/stylesheets/kluster.css @@ -611,7 +611,7 @@ html .md-footer-meta.md-typeset .papermoon a { } .md-footer__buttons { - padding: 0 0.3rem 0 0; + padding: 0 0.3rem 0 0.6rem; } .md-footer__center-column {