Files
klz-cables.com/.pnpm-store/v10/files/35/c3c2113edf076776749b432cb1e4006353a898dcef95fe64317442ac3624d0dddd6e3e233f44c511eafa6b16f1cd2fbbc210fcb0f178b605a81940ad374d87
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

62 lines
1.2 KiB
Plaintext

@import '../../../scss/styles';
@layer payload-default {
.active-query-preset {
&__label {
display: flex;
align-items: center;
}
&__label-text-max-width {
max-width: 100px;
overflow: hidden;
}
&__label-text {
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
}
&__label-and-clear-wrap {
display: flex;
align-items: center;
}
&__shared {
margin-right: 2px;
}
&__clear {
display: flex;
align-items: center;
width: var(--pill-icon-size);
height: var(--pill-icon-size);
}
&--active {
box-shadow: inset 0 0 0 1px var(--theme-elevation-200);
background-color: var(--theme-elevation-0);
padding-right: 4px;
&:hover {
background-color: var(--theme-elevation-100);
}
}
}
html[data-theme='dark'] {
.active-query-preset {
&--active {
box-shadow: inset 0 0 0 1px var(--theme-elevation-300);
color: var(--theme-elevation-0);
background-color: var(--theme-elevation-800);
&:hover {
background-color: var(--theme-elevation-700);
}
}
}
}
}