1
0
mirror of https://github.com/minio/docs.git synced 2025-07-31 18:04:52 +03:00

Add filter to exclude non-docs domains from search results (#1277)

As part of [min.io issue
#2136](https://github.com/miniohq/min.io/issues/2136), the crawler now
includes results from domains such as blog.min.io and resource.min.io.
By default, the search returns results from all these sources. This
update adds a filter to exclude results from domains other than
docs.min.io.

Also, added some minor CSS changes to fix the gray color palette
variables.
This commit is contained in:
Rushan
2024-07-24 02:04:05 +05:30
committed by GitHub
parent 3e5df481f0
commit 2f0fb0aa3d
2 changed files with 9 additions and 5 deletions

View File

@ -104,6 +104,7 @@ window.addEventListener("DOMContentLoaded", () => {
minio: { minio: {
refinementList: { refinementList: {
platform: [activePlatform], platform: [activePlatform],
site: "docs"
}, },
}, },
}, },
@ -286,6 +287,9 @@ window.addEventListener("DOMContentLoaded", () => {
}, },
}, },
}), }),
instantsearch.widgets.configure({
filters: `site:docs`,
})
]); ]);
// Function to clear search field and filters // Function to clear search field and filters

View File

@ -12,8 +12,8 @@ $theme-properties: (
--headings-color: $black #E3EEEF, --headings-color: $black #E3EEEF,
// Theme // Theme
--theme-light-bg: $light-200 $dark-200, --theme-light-bg: $light-100 $dark-200,
--theme-light-hover-bg: $light-300 $dark-300, --theme-light-hover-bg: $light-200 $dark-300,
// Header // Header
--header-bg: $header-light-bg $dark-0, --header-bg: $header-light-bg $dark-0,
@ -62,8 +62,8 @@ $theme-properties: (
--table-border-color: $light-300 $dark-200, --table-border-color: $light-300 $dark-200,
// Code // Code
--code-bg: $light-300 lighten($dark-500, 17.5%), --code-bg: $light-200 lighten($dark-500, 17.5%),
--code-hover-bg: $light-400 #9fa8b9, --code-hover-bg: $light-300 #9fa8b9,
--code-color: $black $dark-0, --code-color: $black $dark-0,
--code-link-color: #006DA0 #12243c, --code-link-color: #006DA0 #12243c,
--code-link-bg: #cde4ff #71a7ed, --code-link-bg: #cde4ff #71a7ed,
@ -124,7 +124,7 @@ $theme-properties: (
--is-hit-icon-color: $black $light-500, --is-hit-icon-color: $black $light-500,
--is-search-bg: $white $dark-100, --is-search-bg: $white $dark-100,
--is-search-icon: url(../img/icons/search-light.svg) url(../img/icons/search-dark.svg), --is-search-icon: url(../img/icons/search-light.svg) url(../img/icons/search-dark.svg),
--is-refine-list-border-color: $light-400 $dark-300, --is-refine-list-border-color: $light-200 $dark-300,
--is-hit-platform-border-color: #c5cad0 $dark-300, --is-hit-platform-border-color: #c5cad0 $dark-300,
--is-loader-circle-stroke: #c2c8d1 $dark-300, --is-loader-circle-stroke: #c2c8d1 $dark-300,
--is-meta-key-border-color: #c5cad0 $dark-400, --is-meta-key-border-color: #c5cad0 $dark-400,