Files
klz-cables.com/.pnpm-store/v10/files/2e/ff60c341efa1b24c46ab4ed236fa2ecb6ee6162b1c5b4588c7006c049e9829d65a479627903cca2d2ebb0f6ef31d86e3d5d8a1b3bf515bb0add29654e8bbfc
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

67 lines
1.2 KiB
Plaintext

@import '../../scss/styles.scss';
@layer payload-default {
.field-type.relationship {
position: relative;
}
.relationship {
&__wrap {
display: flex;
width: 100%;
div.react-select {
width: 100%;
min-width: 0;
}
}
&__error-loading {
border: 1px solid var(--theme-error-500);
min-height: base(2);
padding: base(0.5) base(0.75);
background-color: var(--theme-error-500);
color: var(--theme-elevation-0);
}
&--allow-create {
.rs__control {
border-top-right-radius: 0;
border-bottom-right-radius: 0;
}
}
}
html[data-theme='light'] {
.relationship {
&.error {
> .relationship__wrap {
.rs__control {
@include lightInputError;
}
}
button.relationship-add-new__add-button {
@include lightInputError;
}
}
}
}
html[data-theme='dark'] {
.relationship {
&.error {
> .relationship__wrap {
.rs__control {
@include darkInputError;
}
}
button.relationship-add-new__add-button {
@include darkInputError;
}
}
}
}
}