|
1 |
| -// stylelint-disable selector-class-pattern |
| 1 | +/*! |
| 2 | + * CoreUI Docs (https://coreui.io/bootstrap/docs/) |
| 3 | + * Copyright 2025 creativeLabs Łukasz Holeczek |
| 4 | + * Licensed under the Creative Commons Attribution 3.0 Unported License. |
| 5 | + * For details, see https://creativecommons.org/licenses/by/3.0/. |
| 6 | + */ |
| 7 | + |
| 8 | +@use "@coreui/coreui/scss/mixins/border-radius" as *; |
| 9 | +@use "@coreui/coreui/scss/mixins/box-shadow" as *; |
| 10 | +@use "@coreui/coreui/scss/mixins/breakpoints" as *; |
| 11 | +@use "@coreui/coreui/scss/mixins/color-mode" as *; |
| 12 | +@use "@coreui/coreui/scss/mixins/transition" as *; |
| 13 | +@use "@coreui/coreui/scss/vendor/rfs" as *; |
| 14 | +@use "@coreui/coreui/scss/variables" as *; |
| 15 | + |
| 16 | +@forward "@docsearch/css/dist/style"; |
| 17 | + |
2 | 18 |
|
| 19 | +// stylelint-disable selector-class-pattern |
3 | 20 | :root {
|
4 | 21 | --docsearch-primary-color: var(--cui-primary);
|
5 | 22 | --docsearch-logo-color: var(--cui-primary);
|
|
29 | 46 | --docsearch-muted-color: var(--cui-secondary-color);
|
30 | 47 | --docsearch-hit-shadow: none;
|
31 | 48 |
|
| 49 | + position: fixed; |
32 | 50 | z-index: 2000; // Make sure to be over all components showcased in the documentation
|
33 | 51 | cursor: auto; // Needed because of [role="button"] in Algolia search modal. Remove once https://github.com/algolia/docsearch/issues/1370 is tackled.
|
34 | 52 |
|
|
39 | 57 |
|
40 | 58 | .DocSearch-Button {
|
41 | 59 | --docsearch-searchbox-background: #{rgba($black, .1)};
|
42 |
| - // --docsearch-searchbox-color: #{$white}; |
43 | 60 | --docsearch-searchbox-focus-background: #{rgba($black, .25)};
|
44 |
| - // --docsearch-searchbox-shadow: #{0 0 0 .25rem rgba($bd-accent, .4)}; |
45 |
| - // --docsearch-text-color: #{$white}; |
46 |
| - // --docsearch-muted-color: #{rgba($white, .65)}; |
47 | 61 |
|
48 | 62 | min-width: 200px;
|
49 | 63 | min-height: 38px;
|
|
58 | 72 |
|
59 | 73 | // Note: This has no effect on <select>s in some browsers, due to the limited stylability of `<select>`s in CSS.
|
60 | 74 | @include border-radius($btn-border-radius);
|
61 |
| - |
62 | 75 | @include box-shadow($input-box-shadow);
|
63 | 76 | @include transition($input-transition);
|
64 | 77 |
|
|
0 commit comments