Files
klz-cables.com/.pnpm-store/v10/files/9c/19d0c2a1871f175df613394f20ebaa8f2ab72ea571d91fdf9f1915fa2e90cb18c07aa82da5322c5a235f7ad0c45ae9d37c7877bbdb0d47ea8f9d6c9ae7fbb3
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

88 lines
1.5 KiB
Plaintext

@import '../../scss/styles.scss';
@layer payload-default {
.radio-group {
.tooltip:not([aria-hidden='true']) {
right: auto;
position: static;
margin-bottom: 0.2em;
max-width: fit-content;
}
&--layout-horizontal {
ul {
display: flex;
flex-wrap: wrap;
}
li {
flex-shrink: 0;
[dir='ltr'] & {
padding-right: $baseline;
}
[dir='rtl'] & {
padding-left: $baseline;
}
}
}
ul {
list-style: none;
padding: 0;
margin: 0;
}
}
.radio-group--read-only {
.radio-input {
cursor: default;
&:hover {
border-color: var(--theme-elevation-50);
}
&__label {
color: var(--theme-elevation-400);
}
&--is-selected {
.radio-input__styled-radio {
&:before {
background-color: var(--theme-elevation-250);
}
}
}
&:not(.radio-input--is-selected) {
&:hover {
.radio-input__styled-radio {
&:before {
opacity: 0;
}
}
}
}
}
}
html[data-theme='light'] {
.radio-group {
&.error {
.radio-input__styled-radio {
@include lightInputError;
}
}
}
}
html[data-theme='dark'] {
.radio-group {
&.error {
.radio-input__styled-radio {
@include darkInputError;
}
}
}
}
}