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

163 lines
2.8 KiB
Plaintext

@import '../../scss/styles.scss';
@layer payload-default {
.collection-folder-list {
width: 100%;
&__step-nav-icon-label,
&__step-nav-icon-label .btn__label {
margin: 0;
display: flex;
align-items: center;
gap: calc(var(--base) * 0.25);
.icon {
height: 18px;
}
}
&__step-nav-droppable.droppable-button {
&--hover {
opacity: 0.3;
}
}
&__wrap {
padding-bottom: var(--spacing-view-bottom);
& > *:not(:last-child) {
margin-bottom: var(--base);
}
}
.cell-with-icon {
display: flex;
align-items: center;
gap: calc(var(--base) * 0.5);
}
.list-header {
a {
text-decoration: none;
}
}
&__sub-header {
flex-basis: 100%;
}
.table {
table {
width: 100%;
overflow: auto;
[class^='cell'] > p,
[class^='cell'] > span,
[class^='cell'] > a {
line-clamp: 4;
-webkit-box-orient: vertical;
-webkit-line-clamp: 4;
overflow: hidden;
display: -webkit-box;
max-width: 100vw;
}
}
}
&__no-results {
display: flex;
flex-direction: column;
align-items: flex-start;
gap: var(--base);
& > * {
margin: 0;
}
}
&__page-controls {
width: 100%;
display: flex;
align-items: center;
}
.paginator {
margin-bottom: 0;
}
&__page-info {
[dir='ltr'] & {
margin-right: base(1);
margin-left: auto;
}
[dir='rtl'] & {
margin-left: base(1);
margin-right: auto;
}
}
&__shimmer {
margin-top: base(1.75);
width: 100%;
> div {
margin-top: 8px;
}
}
@include mid-break {
margin-top: base(0.25);
&__wrap {
padding-top: 0;
padding-bottom: 0;
}
&__header {
gap: base(0.5);
}
&__sub-header {
margin-top: 0;
}
&__search-input {
margin: 0;
}
// on mobile, extend the table all the way to the viewport edges
// this is to visually indicate overflowing content
.table {
display: flex;
width: calc(100% + calc(var(--gutter-h) * 2));
max-width: unset;
left: calc(var(--gutter-h) * -1);
position: relative;
padding-left: var(--gutter-h);
&::after {
content: '';
height: 1px;
padding-right: var(--gutter-h);
}
}
&__page-controls {
flex-wrap: wrap;
}
&__page-info {
margin-left: 0;
}
.paginator {
width: 100%;
margin-bottom: $baseline;
}
}
@include small-break {
margin-bottom: base(2.4);
}
}
}