| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250 |
- // Algolia Search Styles
-
- // Variables
- $search-width: 600px;
- $search-max-height: 32.9375rem;
- $search-width-md: 450px;
- $search-width-sm: 90%;
-
- // Mixins
- @mixin search-responsive-width($width) {
- inline-size: $width;
- inset-inline-start: calc(50% - calc($width / 2));
- }
-
- // Detached Search Button
- .aa-DetachedSearchButton {
- display: flex;
- align-items: center;
- border: none;
- background: transparent;
- gap: 1rem;
- .aa-DetachedSearchButtonPlaceholder {
- color: var(--#{$prefix}secondary-color);
- @include media-breakpoint-down(md) {
- display: none;
- }
- }
- }
- .aa-InputWrapper {
- ::placeholder {
- color: var(--#{$prefix}secondary-color);
- }
- }
-
- .aa-DetachedSearchButtonIcon,
- .aa-SubmitButton {
- &::before {
- display: block;
- background-color: currentcolor;
- content: "";
- margin-block-end: -3px;
- mask-image: var(--svg);
- mask-repeat: no-repeat;
- mask-size: 100% 100%;
- --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M10 18a7.95 7.95 0 0 0 4.897-1.688l4.396 4.396l1.414-1.414l-4.396-4.396A7.95 7.95 0 0 0 18 10c0-4.411-3.589-8-8-8s-8 3.589-8 8s3.589 8 8 8m0-14c3.309 0 6 2.691 6 6s-2.691 6-6 6s-6-2.691-6-6s2.691-6 6-6'/%3E%3C/svg%3E");
- }
- .aa-SubmitIcon {
- display: none;
- }
- }
-
- .aa-DetachedSearchButtonIcon {
- &::before {
- block-size: 22px;
- inline-size: 22px;
- }
- }
-
- .aa-SubmitButton {
- &::before {
- block-size: 24px;
- inline-size: 24px;
- }
- }
-
- .aa-DetachedSearchButtonQuery {
- display: none;
- }
-
- .layout-wrapper:not(.layout-horizontal) .aa-DetachedSearchButtonPlaceholder[hidden] {
- display: block !important;
- }
-
- /* Search Headings */
- .search-headings {
- display: block;
- color: var(--#{$prefix}secondary-color);
- font-size: .75rem;
- letter-spacing: .8px;
- margin-block: 1rem .5rem;
- margin-inline: 0;
- padding-block: 0;
- padding-inline: 1.25rem;
- text-transform: uppercase;
- .suggestion-section & {
- line-height: 14px;
- margin-block: .5rem;
- }
- }
-
- /* Suggestion Items */
- .suggestion-items {
- .suggestion-item {
- color: var(--#{$prefix}heading-color);
- gap: .35rem;
- padding-block: .543rem;
- padding-inline: 1rem;
- text-decoration: none;
- transition: all .2s ease;
- @include border-radius(var(--#{$prefix}border-radius));
-
- &:hover,
- &[aria-selected="true"],
- &.suggestion-item-focused {
- color: var(--#{$prefix}primary);
- }
-
- &:focus,
- &:focus-visible {
- background-color: var(--#{$prefix}primary-bg-subtle);
- color: var(--#{$prefix}primary);
- }
- }
- }
-
- /* Detached Overlay */
- .aa-DetachedOverlay {
- position: fixed;
- z-index: 999999;
- backdrop-filter: blur(3px);
- background: rgba(0, 0, 0, .35);
- block-size: 100vh;
- inset-block-start: 0;
- inset-inline-end: 0;
- inset-inline-start: 0;
-
- .aa-DetachedContainer {
- position: fixed;
- overflow: hidden;
- background: var(--#{$prefix}paper-bg);
- box-shadow: var(--#{$prefix}box-shadow-lg);
- inset-block-start: 4rem;
- max-block-size: $search-max-height;
- @include border-radius($border-radius-lg);
- @include search-responsive-width($search-width);
-
- @include media-breakpoint-down(md) {
- @include search-responsive-width($search-width-md);
- }
-
- @include media-breakpoint-down(sm) {
- inline-size: $search-width-sm;
- inset-inline-start: 50%;
- transform: translateX(-50%);
- }
- }
-
- .search-control {
- background: transparent;
- inline-size: 100%;
-
- &:focus,
- &:focus-visible {
- outline: none;
- }
-
- &::-webkit-search-cancel-button,
- &::-webkit-search-decoration {
- display: none;
- appearance: none;
- }
-
- &::-ms-clear {
- display: none;
- }
- }
-
- .aa-List {
- padding-inline: 0;
- }
-
- .aa-InputWrapperPrefix {
- position: absolute;
- }
-
- .aa-SubmitButton {
- border: 0;
- background: none;
- padding-inline-start: .7rem;
- }
-
- #autocomplete-0-input {
- padding-inline-start: 2.5rem;
- }
-
- .aa-Form,
- .aa-InputWrapper {
- inline-size: 100%;
- }
- .aa-Form {
- padding-block: 1.231rem;
- padding-inline-start: .7rem;
- }
-
- .aa-DetachedCancelButton.btn-search-close {
- display: flex;
- align-items: center;
- justify-content: center;
- border: 0;
- background: none;
- gap: 1rem;
- inline-size: 8rem;
- inset-inline-end: 1.5rem;
- padding-inline-end: 1.75rem;
- }
-
- .aa-SourceHeader {
- margin-block-end: .5rem;
- }
-
- .aa-Item {
- display: flex;
- align-items: center;
-
- .item-wrapper {
- display: flex;
- align-items: center;
- gap: .5rem;
- }
-
- svg {
- color: var(--#{$prefix}secondary-color);
- font-size: 1rem;
- opacity: 0;
- :dir(rtl) & {
- transform: scaleX(-1);
- }
- }
-
- &:hover,
- &[aria-selected="true"] {
- background: var(--#{$prefix}gray-100);
- svg {
- opacity: 1;
- }
- }
-
- a {
- color: var(--#{$prefix}body-color);
- font-size: var(--#{$prefix}body-font-size);
- gap: .5rem;
- padding-block: .543rem;
- padding-inline: 1.25rem;
- }
- }
- }
-
- .search-no-results-wrapper {
- block-size: 28.75rem;
- }
|