diff --git a/docs/layouts/partials/header.html b/docs/layouts/partials/header.html index 802b377d7..d1f44d7f2 100644 --- a/docs/layouts/partials/header.html +++ b/docs/layouts/partials/header.html @@ -12,10 +12,10 @@ + - diff --git a/docs/layouts/partials/search.html b/docs/layouts/partials/search.html index accbe4c2b..6a58160cc 100644 --- a/docs/layouts/partials/search.html +++ b/docs/layouts/partials/search.html @@ -1,61 +1 @@ - - \ No newline at end of file diff --git a/docs/static/css/style.css b/docs/static/css/style.css index 3d5a5abc4..02032cf6b 100644 --- a/docs/static/css/style.css +++ b/docs/static/css/style.css @@ -642,3 +642,63 @@ i.freebsd-19px:before { font-size: medium; font-style: italic; } + + +/* Search form */ +#search-input { + width: 100%; + border: 1px solid #B3B3B3; + border-radius: 3px; + padding: 5px; +} + +#search-input:focus { + border-color: #F04A9C; +} + +/* Search result wrapper */ +.algolia-autocomplete { + width: 100%; +} + +/* List of search results */ +.aa-dropdown-menu { + box-sizing: border-box; + width: 100%; + background-color: #FFFFFF; + border: 1px solid #B3B3B3; + padding: 0; + font-size: 16px; + margin: 4 0 4 0; +} + +/* Highlight terms in search result headers */ +.algolia-docsearch-suggestion--category-header .algolia-docsearch-suggestion--highlight { + background-color: #F04A9C; +} + +/* Highlight terms in search result body */ +.algolia-docsearch-suggestion--highlight { + color: #F04A9C; + font-weight: 900; +} + +/* Currently selected search result */ +.aa-cursor .algolia-docsearch-suggestion--content { + color: inherit; +} + +.aa-cursor .algolia-docsearch-suggestion { + background: #EFEFEF; + color: #353B44; +} + +.algolia-docsearch-suggestion { + font-size: 16px; + color: #9AA2AB; +} + +.algolia-docsearch-suggestion--category-header, +.algolia-docsearch-suggestion--subcategory-column { + display: none !important; +} \ No newline at end of file