Files
klz-cables.com/.pnpm-store/v10/files/1a/b93e908ad925ffe6086d568f3cf826f331aa0bbcaf945c5ac1a72f29d4f11f3ada383a65bb8650578547200061eedb758e64d6098c039c733711ebd22d279f
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

138 lines
2.5 KiB
Plaintext

@import '../../scss/styles.scss';
@layer payload-default {
.blocks-field {
display: flex;
flex-direction: column;
gap: calc(var(--base) / 2);
&__header {
h3 {
margin: 0;
}
}
&__header-wrap {
display: flex;
align-items: flex-end;
width: 100%;
justify-content: space-between;
}
&__heading-with-error {
display: flex;
align-items: center;
gap: base(0.5);
}
&--has-no-error {
> .array-field__header .array-field__heading-with-error {
color: var(--theme-text);
}
}
&--has-error {
> .array-field__header {
color: var(--theme-error-500);
}
}
&__error-pill {
align-self: center;
}
&__header-actions {
list-style: none;
margin: 0;
padding: 0;
display: flex;
}
&__header-action {
@extend %btn-reset;
cursor: pointer;
margin-left: base(0.5);
&:hover,
&:focus-visible {
text-decoration: underline;
}
}
&__block-header {
display: inline-flex;
max-width: 100%;
width: 100%;
overflow: hidden;
gap: base(0.375);
}
&__block-number {
flex-shrink: 0;
}
&__block-pill {
flex-shrink: 0;
display: block;
line-height: unset;
}
&__rows {
display: flex;
flex-direction: column;
gap: calc(var(--base) / 2);
}
&__drawer-toggler {
background-color: transparent;
margin: 0;
padding: 0;
border: none;
align-self: flex-start;
.btn {
color: var(--theme-elevation-400);
margin: 0;
&:hover {
color: var(--theme-elevation-800);
}
}
}
}
html[data-theme='light'] {
.blocks-field--has-error {
.section-title__input,
.blocks-field__heading-with-error {
color: var(--theme-error-750);
}
.blocks-field__row--no-errors,
.blocks-field--has-no-error {
.section-title__input,
.blocks-field__heading-with-error {
color: var(--theme-text);
}
}
}
}
html[data-theme='dark'] {
.blocks-field--has-error {
.section-title__input,
.blocks-field__heading-with-error {
color: var(--theme-error-500);
}
.blocks-field__row--no-errors,
.blocks-field--has-no-error {
.section-title__input,
.blocks-field__heading-with-error {
color: var(--theme-text);
}
}
}
}
}