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

64 lines
1.2 KiB
Plaintext

@import '../../../scss/styles.scss';
@layer payload-default {
.section-title {
position: relative;
min-width: base(4);
max-width: 100%;
pointer-events: all;
display: flex;
overflow: hidden;
&:after {
display: block;
content: attr(data-value) ' ';
visibility: hidden;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
max-width: 100%;
}
&:after,
&__input {
font-family: var(--font-body);
font-weight: 600;
font-size: base(0.625);
padding: 0;
width: 100%;
}
&__input {
color: var(--theme-elevation-800);
background-color: transparent;
border: none;
min-width: min-content;
width: 100%;
max-width: 100%;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
resize: none;
appearance: none;
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
&:hover {
box-shadow: inset 0px -2px 0px -1px var(--theme-elevation-150);
}
&:hover,
&:focus {
outline: 0;
}
&:focus {
box-shadow: none;
}
}
}
}