Files
klz-cables.com/.pnpm-store/v10/files/f2/49b678c4227f727de614dcbee0dc28c3a9356c78fd53b092d8ebdb996bbdad29e00b38f2f181198122af4609bd16cd8c473324a0d68f1fa561246c965efa39
Marc Mintel 5397309103
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01:00

50 lines
1.0 KiB
Plaintext

@import '../../scss/styles.scss';
@layer payload-default {
.combobox {
&__content {
display: flex;
flex-direction: column;
}
&__search-wrapper {
padding-top: var(--popup-padding);
padding-bottom: calc(var(--base) * 0.5);
border-bottom: 1px solid var(--theme-elevation-150);
margin-bottom: calc(var(--base) * 0.5);
&--no-results {
border-bottom: none;
margin-bottom: 0;
}
}
&__search-input {
width: 100%;
background: var(--theme-elevation-50);
color: var(--theme-text);
border: none;
border-radius: var(--style-radius-s);
padding: calc(var(--base) * 0.25) calc(var(--base) * 0.5);
outline: none;
box-shadow: none;
&::placeholder {
color: var(--theme-elevation-400);
}
&:focus,
&:focus-visible {
background: var(--theme-elevation-100);
outline: none;
border: none;
box-shadow: none;
}
}
&__entry {
cursor: pointer;
}
}
}