From 38d032c7aab21257b9bca87ae71eb0ba3d8c9e97 Mon Sep 17 00:00:00 2001 From: Suman Mandal Date: Sat, 31 Jan 2026 07:41:07 +0000 Subject: [PATCH 1/9] Fix header search overlapping nav items --- docs/stylesheets/extra.css | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/docs/stylesheets/extra.css b/docs/stylesheets/extra.css index 50759088d5..dec5481210 100644 --- a/docs/stylesheets/extra.css +++ b/docs/stylesheets/extra.css @@ -158,6 +158,8 @@ a.md-header__button.md-logo img { background-color: white; border: black 1px solid; border-radius: 10px; + width: 100%; + } .md-search__input::placeholder { @@ -693,4 +695,10 @@ article.md-search-result__article p:not(.md-search-result__meta) { -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; -} \ No newline at end of file +} + + +.md-search__inner { + max-width: 30rem; +} + From 7ef4ceb79ba0151c36ee37ea700ff3a5b2df7435 Mon Sep 17 00:00:00 2001 From: Suman Mandal Date: Thu, 5 Feb 2026 10:06:01 +0000 Subject: [PATCH 2/9] updated config/redirects.yml --- config/redirects.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/redirects.yml b/config/redirects.yml index 00ad24ec92..05bc326bb6 100644 --- a/config/redirects.yml +++ b/config/redirects.yml @@ -1,7 +1,7 @@ plugins: redirects: redirect_maps: - versioned/contributing/about.md: community/contributing.md + versioned/contributing/about.md: community/README.md versioned/eventing/experimental-features/README.md: versioned/eventing/features/README.md versioned/eventing/experimental-features/delivery-timeout.md: versioned/eventing/features/delivery-timeout.md versioned/eventing/experimental-features/delivery-retryafter.md: versioned/eventing/features/delivery-retryafter.md From d848542c0bcc99ed3ec6e8f23170991cacf991d9 Mon Sep 17 00:00:00 2001 From: Suman Mandal Date: Fri, 6 Feb 2026 03:58:27 +0000 Subject: [PATCH 3/9] updated stylesheets/extra.css --- docs/stylesheets/extra.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/stylesheets/extra.css b/docs/stylesheets/extra.css index dec5481210..1fd2fbea85 100644 --- a/docs/stylesheets/extra.css +++ b/docs/stylesheets/extra.css @@ -702,3 +702,6 @@ article.md-search-result__article p:not(.md-search-result__meta) { max-width: 30rem; } +.md-header[data-md-state="search"] .md-version { + display: none; +} From ad1e778023829aeef6ca28c64bad49d6f28be286 Mon Sep 17 00:00:00 2001 From: Suman Mandal Date: Sat, 7 Feb 2026 09:31:47 +0000 Subject: [PATCH 4/9] fixes:version_selector overlay --- docs/stylesheets/extra.css | 21 +++++++++++++++------ 1 file changed, 15 insertions(+), 6 deletions(-) diff --git a/docs/stylesheets/extra.css b/docs/stylesheets/extra.css index 1fd2fbea85..311f7f5d33 100644 --- a/docs/stylesheets/extra.css +++ b/docs/stylesheets/extra.css @@ -154,6 +154,10 @@ a.md-header__button.md-logo img { border-radius: 10px; } +.md-search__inner { + max-width: 30rem; +} + .md-search__input { background-color: white; border: black 1px solid; @@ -583,6 +587,13 @@ a.md-header__button.md-logo img { } } +@media screen and (min-width: 60em) { + [data-md-toggle="search"]:checked ~ .md-header .md-version { + visibility: hidden; + pointer-events: none; + } +} + @media (max-width: 630px) { [dir=ltr] ul.md-tabs__list { margin-left: 3rem; @@ -698,10 +709,8 @@ article.md-search-result__article p:not(.md-search-result__meta) { } -.md-search__inner { - max-width: 30rem; -} -.md-header[data-md-state="search"] .md-version { - display: none; -} + + + + From 9a88be17378f5276b42d1cfbec151307ccd9a3ab Mon Sep 17 00:00:00 2001 From: Suman Mandal Date: Tue, 10 Feb 2026 20:44:54 +0000 Subject: [PATCH 5/9] staic header fixes --- docs/stylesheets/extra.css | 35 +++++++++++++++++++++++++++++------ 1 file changed, 29 insertions(+), 6 deletions(-) diff --git a/docs/stylesheets/extra.css b/docs/stylesheets/extra.css index 311f7f5d33..3e724baaf4 100644 --- a/docs/stylesheets/extra.css +++ b/docs/stylesheets/extra.css @@ -155,7 +155,7 @@ a.md-header__button.md-logo img { } .md-search__inner { - max-width: 30rem; + max-width: 20rem; } .md-search__input { @@ -477,6 +477,34 @@ a.md-header__button.md-logo img { color: black; } + +/* Give title (Knative + version) a minimum readable width */ +.md-header__title { + flex: 0 0 auto !important; + min-width: 11rem; + max-width: 16rem; + margin-right: 0.75rem; +} + +/* Let ellipsis container actually size to content */ +.md-header__ellipsis { + width: auto !important; + max-width: 100% !important; +} + +/* Cap search so it doesn't steal too much space */ +.md-search { + flex: 1 1 auto !important; + max-width: 28rem; + min-width: 18rem; + margin-left: auto; +} + +/* tighten nav just a hair more if needed */ +.md-header__list { + gap: 0.75rem; +} + /* Testimonials */ .testimonials h1, .testimonials h2, @@ -709,8 +737,3 @@ article.md-search-result__article p:not(.md-search-result__meta) { } - - - - - From 808960e988b934142c6a0f0318679091a270331a Mon Sep 17 00:00:00 2001 From: Suman Mandal Date: Tue, 10 Feb 2026 20:50:48 +0000 Subject: [PATCH 6/9] version selector fix --- docs/stylesheets/extra.css | 6 ------ 1 file changed, 6 deletions(-) diff --git a/docs/stylesheets/extra.css b/docs/stylesheets/extra.css index 3e724baaf4..5d6d3e5c2a 100644 --- a/docs/stylesheets/extra.css +++ b/docs/stylesheets/extra.css @@ -615,12 +615,6 @@ a.md-header__button.md-logo img { } } -@media screen and (min-width: 60em) { - [data-md-toggle="search"]:checked ~ .md-header .md-version { - visibility: hidden; - pointer-events: none; - } -} @media (max-width: 630px) { [dir=ltr] ul.md-tabs__list { From d3d363dadeefabfa86187b915a11d0dc1e6cbf91 Mon Sep 17 00:00:00 2001 From: Suman Mandal Date: Wed, 11 Feb 2026 03:36:01 +0000 Subject: [PATCH 7/9] updated style.css --- docs/stylesheets/extra.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/stylesheets/extra.css b/docs/stylesheets/extra.css index 5d6d3e5c2a..71314c2189 100644 --- a/docs/stylesheets/extra.css +++ b/docs/stylesheets/extra.css @@ -155,7 +155,7 @@ a.md-header__button.md-logo img { } .md-search__inner { - max-width: 20rem; + max-width: 19rem; } .md-search__input { From 73ade6c47b24499c9917ab307abb7d04ea23f388 Mon Sep 17 00:00:00 2001 From: Suman Mandal Date: Wed, 11 Feb 2026 07:05:40 +0000 Subject: [PATCH 8/9] fix(docs): keep header items static when search expands --- docs/stylesheets/extra.css | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/docs/stylesheets/extra.css b/docs/stylesheets/extra.css index 71314c2189..5ae5a06318 100644 --- a/docs/stylesheets/extra.css +++ b/docs/stylesheets/extra.css @@ -148,6 +148,13 @@ a.md-header__button.md-logo img { .md-header__source { color: var(--md-primary-fg-color--dark); + flex: 0 0 auto !important; + margin-left: 1rem; +} + +[data-md-toggle="search"]:checked ~ .md-header .md-header__source { + transform: none !important; + margin-left: 1rem !important; } .md-search__form { @@ -731,3 +738,5 @@ article.md-search-result__article p:not(.md-search-result__meta) { } + + From 04450bf003591020bc1ef1d5b23fdaa396f27177 Mon Sep 17 00:00:00 2001 From: Suman Mandal Date: Sun, 22 Feb 2026 13:21:01 +0000 Subject: [PATCH 9/9] fixes viewport breakpoints --- docs/stylesheets/extra.css | 99 ++++++++++++++++++++------------------ 1 file changed, 52 insertions(+), 47 deletions(-) diff --git a/docs/stylesheets/extra.css b/docs/stylesheets/extra.css index 5ae5a06318..8e975055e5 100644 --- a/docs/stylesheets/extra.css +++ b/docs/stylesheets/extra.css @@ -148,29 +148,16 @@ a.md-header__button.md-logo img { .md-header__source { color: var(--md-primary-fg-color--dark); - flex: 0 0 auto !important; - margin-left: 1rem; -} - -[data-md-toggle="search"]:checked ~ .md-header .md-header__source { - transform: none !important; - margin-left: 1rem !important; } .md-search__form { border-radius: 10px; } -.md-search__inner { - max-width: 19rem; -} - .md-search__input { background-color: white; border: black 1px solid; border-radius: 10px; - width: 100%; - } .md-search__input::placeholder { @@ -484,34 +471,6 @@ a.md-header__button.md-logo img { color: black; } - -/* Give title (Knative + version) a minimum readable width */ -.md-header__title { - flex: 0 0 auto !important; - min-width: 11rem; - max-width: 16rem; - margin-right: 0.75rem; -} - -/* Let ellipsis container actually size to content */ -.md-header__ellipsis { - width: auto !important; - max-width: 100% !important; -} - -/* Cap search so it doesn't steal too much space */ -.md-search { - flex: 1 1 auto !important; - max-width: 28rem; - min-width: 18rem; - margin-left: auto; -} - -/* tighten nav just a hair more if needed */ -.md-header__list { - gap: 0.75rem; -} - /* Testimonials */ .testimonials h1, .testimonials h2, @@ -622,7 +581,6 @@ a.md-header__button.md-logo img { } } - @media (max-width: 630px) { [dir=ltr] ul.md-tabs__list { margin-left: 3rem; @@ -715,6 +673,57 @@ a.md-header__button.md-logo img { } } +@media (min-width: 1025px) { + .md-header__source { + color: var(--md-primary-fg-color--dark); + flex: 0 0 auto !important; + margin-left: 1rem; + } + + [data-md-toggle="search"]:checked ~ .md-header .md-header__source { + transform: none !important; + margin-left: 1rem !important; + } + + .md-search__form { + border-radius: 10px; + } + + .md-search__inner { + max-width: 19rem; + } + + .md-search__input { + background-color: white; + border: black 1px solid; + border-radius: 10px; + width: 100%; + } + + .md-header__title { + flex: 0 0 auto !important; + min-width: 11rem; + max-width: 16rem; + margin-right: 0.75rem; + } + + .md-header__ellipsis { + width: auto !important; + max-width: 100% !important; + } + + .md-search { + flex: 1 1 auto !important; + max-width: 28rem; + min-width: 18rem; + margin-left: auto; + } + + .md-header__list { + gap: 0.75rem; + } +} + .md-search-result__article { max-height: none; } @@ -735,8 +744,4 @@ article.md-search-result__article p:not(.md-search-result__meta) { -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; -} - - - - +} \ No newline at end of file