8e6b6d0cdd
Build / Build & Release draft (push) Failing after 0s
PHP tests / PHP Syntax check 5.6 => 8.1 (push) Failing after 33s
PHP tests / PHPStan (1.7.1.2) (push) Has been cancelled
PHP tests / PHPStan (1.7.2.5) (push) Has been cancelled
PHP tests / PHPStan (1.7.3.4) (push) Has been cancelled
PHP tests / PHPStan (1.7.4.4) (push) Has been cancelled
PHP tests / PHPStan (1.7.5.1) (push) Has been cancelled
PHP tests / PHPStan (1.7.6) (push) Has been cancelled
PHP tests / PHPStan (1.7.7) (push) Has been cancelled
PHP tests / PHPStan (1.7.8) (push) Has been cancelled
PHP tests / PHPStan (latest) (push) Has been cancelled
PHP tests / PHP-CS-Fixer (push) Has been cancelled
584 lines
11 KiB
CSS
584 lines
11 KiB
CSS
.adv-megamenu {
|
||
position: relative;
|
||
z-index: 500;
|
||
color: #2d241d;
|
||
display: inline-block;
|
||
width: auto;
|
||
max-width: 100%;
|
||
vertical-align: top;
|
||
}
|
||
|
||
.adv-megamenu__root-list,
|
||
.adv-megamenu__category-tree,
|
||
.adv-megamenu__manual-tree,
|
||
.adv-megamenu__mobile-list {
|
||
list-style: none;
|
||
margin: 0;
|
||
padding: 0;
|
||
}
|
||
|
||
.adv-megamenu__desktop {
|
||
position: relative;
|
||
display: inline-block;
|
||
width: auto;
|
||
max-width: 100%;
|
||
color: #2d241d;
|
||
overflow: visible;
|
||
}
|
||
|
||
.adv-megamenu__root-list {
|
||
width: auto;
|
||
display: flex;
|
||
align-items: stretch;
|
||
gap: 0.25rem;
|
||
flex-wrap: nowrap;
|
||
white-space: nowrap;
|
||
padding: 0 0.25rem;
|
||
}
|
||
|
||
.adv-megamenu__root-item {
|
||
position: static;
|
||
}
|
||
|
||
.adv-megamenu .adv-megamenu__root-link,
|
||
.adv-megamenu .adv-megamenu__root-link:link,
|
||
.adv-megamenu .adv-megamenu__root-link:visited {
|
||
display: flex;
|
||
align-items: center;
|
||
gap: 0.55rem;
|
||
min-height: 58px;
|
||
padding: 0 1rem;
|
||
color: #2d241d;
|
||
font-weight: 600;
|
||
text-decoration: none;
|
||
background: transparent;
|
||
}
|
||
|
||
.adv-megamenu__root-item.is-current > .adv-megamenu__root-link,
|
||
.adv-megamenu__root-item:hover > .adv-megamenu__root-link,
|
||
.adv-megamenu__root-item.is-open > .adv-megamenu__root-link {
|
||
color: var(--bs-primary);
|
||
}
|
||
|
||
.adv-megamenu__root-item.is-open > .adv-megamenu__root-link {
|
||
position: relative;
|
||
z-index: 560;
|
||
}
|
||
|
||
.adv-megamenu__panel {
|
||
position: absolute;
|
||
z-index: 550;
|
||
top: calc(100% + 3px);
|
||
left: var(--adv-panel-left, 0px);
|
||
right: auto;
|
||
width: var(--adv-panel-width, min(1440px, calc(100vw - 2rem)));
|
||
min-width: var(--adv-panel-width, min(1440px, calc(100vw - 2rem)));
|
||
opacity: 0;
|
||
visibility: hidden;
|
||
transform: translateY(10px);
|
||
transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
|
||
}
|
||
|
||
.adv-megamenu__root-item.is-open > .adv-megamenu__panel {
|
||
opacity: 1;
|
||
visibility: visible;
|
||
transform: translateY(0);
|
||
}
|
||
|
||
.adv-megamenu__root-item.is-open > .adv-megamenu__panel::before {
|
||
content: '';
|
||
position: absolute;
|
||
top: -4px;
|
||
left: var(--adv-bridge-left, 1rem);
|
||
width: var(--adv-bridge-width, 8rem);
|
||
height: 4px;
|
||
pointer-events: none;
|
||
background: var(--bs-primary);
|
||
border-radius: 999px;
|
||
}
|
||
|
||
.adv-megamenu__panel-inner {
|
||
display: grid;
|
||
grid-template-columns: minmax(280px, 320px) 1fr;
|
||
gap: 2rem;
|
||
padding: 1.5rem;
|
||
background: #fffdfa;
|
||
color: #2d241d;
|
||
border: 1px solid #ddd3c3;
|
||
border-top: 0;
|
||
box-shadow: 0 18px 42px rgba(45, 36, 29, 0.14);
|
||
}
|
||
|
||
.adv-megamenu__panel-nav {
|
||
padding-right: 1rem;
|
||
border-right: 1px solid #ebe2d6;
|
||
}
|
||
|
||
.adv-megamenu__manual-tree li {
|
||
border-bottom: 1px solid #ebe2d6;
|
||
}
|
||
|
||
.adv-megamenu__manual-tree li.has-submenu > a {
|
||
position: relative;
|
||
padding-bottom: 0.75rem;
|
||
padding-right: 1.5rem;
|
||
border-bottom: 3px solid transparent;
|
||
font-weight: 600;
|
||
}
|
||
|
||
.adv-megamenu__manual-tree li.has-submenu > a::after {
|
||
content: '›';
|
||
position: absolute;
|
||
top: 50%;
|
||
right: 0.15rem;
|
||
transform: translateY(-50%);
|
||
color: var(--bs-primary);
|
||
}
|
||
|
||
.adv-megamenu .adv-megamenu__manual-tree li.is-active > a,
|
||
.adv-megamenu .adv-megamenu__manual-tree li.is-active > a:link,
|
||
.adv-megamenu .adv-megamenu__manual-tree li.is-active > a:visited {
|
||
color: var(--bs-primary);
|
||
border-bottom-color: var(--bs-primary);
|
||
}
|
||
|
||
.adv-megamenu__panel-content {
|
||
display: flex;
|
||
flex-direction: column;
|
||
gap: 1.5rem;
|
||
min-width: 0;
|
||
white-space: normal;
|
||
}
|
||
|
||
.adv-megamenu__submenu-content {
|
||
position: relative;
|
||
min-height: 100%;
|
||
}
|
||
|
||
.adv-megamenu__submenu-pane {
|
||
display: none;
|
||
}
|
||
|
||
.adv-megamenu__submenu-pane.is-active {
|
||
display: block;
|
||
}
|
||
|
||
.adv-megamenu__submenu-title {
|
||
margin: 0 0 1rem;
|
||
font-size: 1.1rem;
|
||
font-weight: 700;
|
||
color: #241a13;
|
||
}
|
||
|
||
.adv-megamenu__rich-intro {
|
||
display: flex;
|
||
align-items: flex-start;
|
||
gap: 1.25rem;
|
||
margin-bottom: 1.5rem;
|
||
padding: 1.25rem;
|
||
border-radius: 18px;
|
||
background: #f7f1ea;
|
||
}
|
||
|
||
.adv-megamenu__rich-intro-media {
|
||
flex: 0 0 220px;
|
||
max-width: 220px;
|
||
}
|
||
|
||
.adv-megamenu__rich-intro-media img {
|
||
display: block;
|
||
width: 100%;
|
||
height: auto;
|
||
border-radius: 14px;
|
||
}
|
||
|
||
.adv-megamenu__rich-intro-body {
|
||
display: flex;
|
||
flex: 1 1 auto;
|
||
flex-direction: column;
|
||
gap: 0.85rem;
|
||
min-width: 0;
|
||
}
|
||
|
||
.adv-megamenu__rich-intro-title {
|
||
margin: 0;
|
||
font-size: 1.35rem;
|
||
font-weight: 700;
|
||
color: #241a13;
|
||
}
|
||
|
||
.adv-megamenu__rich-intro-description {
|
||
color: #5a4b3f;
|
||
line-height: 1.6;
|
||
}
|
||
|
||
.adv-megamenu__rich-intro-description > :last-child {
|
||
margin-bottom: 0;
|
||
}
|
||
|
||
.adv-megamenu .adv-megamenu__rich-intro-link,
|
||
.adv-megamenu .adv-megamenu__rich-intro-link:link,
|
||
.adv-megamenu .adv-megamenu__rich-intro-link:visited {
|
||
display: inline-flex;
|
||
align-self: flex-start;
|
||
align-items: center;
|
||
justify-content: center;
|
||
text-decoration: none;
|
||
}
|
||
|
||
.adv-megamenu .adv-megamenu__submenu-pane,
|
||
.adv-megamenu .adv-megamenu__submenu-pane a,
|
||
.adv-megamenu .adv-megamenu__submenu-pane a:link,
|
||
.adv-megamenu .adv-megamenu__submenu-pane a:visited {
|
||
color: #2d241d;
|
||
}
|
||
|
||
.adv-megamenu__panel-tree,
|
||
.adv-megamenu__panel-tree ul {
|
||
list-style: none;
|
||
margin: 0;
|
||
padding: 0;
|
||
}
|
||
|
||
.adv-megamenu__panel-tree {
|
||
display: grid;
|
||
gap: 0.5rem;
|
||
}
|
||
|
||
.adv-megamenu__panel-tree ul {
|
||
margin-top: 0.45rem;
|
||
margin-left: 1rem;
|
||
}
|
||
|
||
.adv-megamenu .adv-megamenu__panel-tree a,
|
||
.adv-megamenu .adv-megamenu__panel-tree a:link,
|
||
.adv-megamenu .adv-megamenu__panel-tree a:visited {
|
||
display: inline-block;
|
||
padding: 0.15rem 0;
|
||
color: #3d3026;
|
||
text-decoration: none;
|
||
}
|
||
|
||
.adv-megamenu .adv-megamenu__panel-tree a:hover {
|
||
color: #8a3c1f;
|
||
}
|
||
|
||
.adv-megamenu .adv-megamenu__category-tree a,
|
||
.adv-megamenu .adv-megamenu__category-tree a:link,
|
||
.adv-megamenu .adv-megamenu__category-tree a:visited,
|
||
.adv-megamenu .adv-megamenu__manual-tree a,
|
||
.adv-megamenu .adv-megamenu__manual-tree a:link,
|
||
.adv-megamenu .adv-megamenu__manual-tree a:visited {
|
||
display: block;
|
||
padding: 0.35rem 0;
|
||
color: #3d3026;
|
||
text-decoration: none;
|
||
}
|
||
|
||
.adv-megamenu .adv-megamenu__category-tree a:hover,
|
||
.adv-megamenu .adv-megamenu__manual-tree a:hover {
|
||
color: #8a3c1f;
|
||
}
|
||
|
||
.adv-megamenu__category-tree ul,
|
||
.adv-megamenu__manual-tree ul {
|
||
margin-left: 1rem;
|
||
}
|
||
|
||
.adv-megamenu__panel-content .row {
|
||
row-gap: 1rem;
|
||
}
|
||
|
||
.adv-megamenu__manual-tree li.has-children > ul,
|
||
.adv-megamenu__category-tree li.has-children > ul {
|
||
display: none;
|
||
}
|
||
|
||
.adv-megamenu__manual-tree li.is-expanded > ul,
|
||
.adv-megamenu__category-tree li.is-expanded > ul {
|
||
display: block;
|
||
}
|
||
|
||
.adv-megamenu__manual-tree li.has-children > a,
|
||
.adv-megamenu__category-tree li.has-children > a {
|
||
cursor: pointer;
|
||
}
|
||
|
||
.adv-megamenu__promo {
|
||
height: 100%;
|
||
padding: 1rem;
|
||
border-radius: 18px;
|
||
background: var(--adv-promo-bg, #f3ede5);
|
||
color: #2d241d;
|
||
}
|
||
|
||
.adv-megamenu__layout-row {
|
||
row-gap: 1rem;
|
||
}
|
||
|
||
.adv-megamenu__layout-card {
|
||
overflow: hidden;
|
||
border: 0;
|
||
box-shadow: 0 10px 24px rgba(45, 36, 29, 0.08);
|
||
}
|
||
|
||
.adv-megamenu__layout-card-body {
|
||
display: flex;
|
||
flex-direction: column;
|
||
gap: 0.85rem;
|
||
}
|
||
|
||
.adv-megamenu__layout-card .card-title {
|
||
margin: 0;
|
||
font-size: 1.1rem;
|
||
font-weight: 700;
|
||
color: #241a13;
|
||
}
|
||
|
||
.adv-megamenu__layout-card .card-text {
|
||
margin: 0;
|
||
color: #5a4b3f;
|
||
line-height: 1.5;
|
||
}
|
||
|
||
.adv-megamenu__promo-media {
|
||
margin-bottom: 0.9rem;
|
||
overflow: hidden;
|
||
}
|
||
|
||
.adv-megamenu__promo-media img {
|
||
display: block;
|
||
width: 100%;
|
||
height: auto;
|
||
}
|
||
|
||
.adv-megamenu__products {
|
||
display: grid;
|
||
grid-template-columns: repeat(2, minmax(0, 1fr));
|
||
gap: 0.75rem;
|
||
}
|
||
|
||
.adv-megamenu__product-card {
|
||
background: rgba(255, 255, 255, 0.82);
|
||
color: #2d241d;
|
||
}
|
||
|
||
.adv-megamenu .adv-megamenu__product-link,
|
||
.adv-megamenu .adv-megamenu__product-link:link,
|
||
.adv-megamenu .adv-megamenu__product-link:visited {
|
||
display: flex;
|
||
flex-direction: column;
|
||
gap: 0.5rem;
|
||
padding: 0.75rem;
|
||
color: #2d241d;
|
||
text-decoration: none;
|
||
}
|
||
|
||
.adv-megamenu__product-link img {
|
||
width: 100%;
|
||
height: auto;
|
||
border-radius: 10px;
|
||
}
|
||
|
||
.adv-megamenu__product-name {
|
||
font-size: 0.9rem;
|
||
line-height: 1.35;
|
||
}
|
||
|
||
.adv-megamenu__product-price {
|
||
font-weight: 700;
|
||
color: #8a3c1f;
|
||
}
|
||
|
||
.adv-megamenu__mobile {
|
||
display: none;
|
||
}
|
||
|
||
.adv-megamenu__toggle {
|
||
display: inline-flex;
|
||
align-items: center;
|
||
gap: 0.5rem;
|
||
padding: 0.8rem 1rem;
|
||
border: 0;
|
||
background: #f3efe8;
|
||
color: #2d241d;
|
||
font-weight: 700;
|
||
}
|
||
|
||
.adv-megamenu__overlay {
|
||
position: fixed;
|
||
inset: 0;
|
||
z-index: 2000;
|
||
display: none;
|
||
background: rgba(30, 22, 17, 0.4);
|
||
}
|
||
|
||
.adv-megamenu__overlay.is-open {
|
||
display: block;
|
||
}
|
||
|
||
.adv-megamenu__drawer {
|
||
width: min(88vw, 380px);
|
||
height: 100%;
|
||
background: #fffdfa;
|
||
box-shadow: 20px 0 50px rgba(0, 0, 0, 0.16);
|
||
transform: translateX(-100%);
|
||
transition: transform 220ms ease;
|
||
}
|
||
|
||
.adv-megamenu__overlay.is-open .adv-megamenu__drawer {
|
||
transform: translateX(0);
|
||
}
|
||
|
||
.adv-megamenu__mobile-head,
|
||
.adv-megamenu__mobile-bar {
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: space-between;
|
||
min-height: 56px;
|
||
padding: 0 1rem;
|
||
border-bottom: 1px solid #ebe2d6;
|
||
color: #2d241d;
|
||
background: #fffdfa;
|
||
}
|
||
|
||
.adv-megamenu__close,
|
||
.adv-megamenu__mobile-back,
|
||
.adv-megamenu__mobile-link-row button {
|
||
border: 0;
|
||
background: transparent;
|
||
color: #8a3c1f;
|
||
font-weight: 700;
|
||
}
|
||
|
||
.adv-megamenu__mobile-viewport {
|
||
position: relative;
|
||
height: calc(100% - 56px);
|
||
overflow: hidden;
|
||
}
|
||
|
||
.adv-megamenu__mobile-panel {
|
||
position: absolute;
|
||
inset: 0;
|
||
overflow-y: auto;
|
||
background: #fffdfa;
|
||
transform: translateX(100%);
|
||
transition: transform 220ms ease;
|
||
}
|
||
|
||
.adv-megamenu__mobile-panel.is-active {
|
||
transform: translateX(0);
|
||
}
|
||
|
||
.adv-megamenu__mobile-panel.is-left {
|
||
transform: translateX(-100%);
|
||
}
|
||
|
||
.adv-megamenu__mobile-link-row {
|
||
display: grid;
|
||
grid-template-columns: 1fr auto;
|
||
align-items: center;
|
||
gap: 0.5rem;
|
||
padding: 0.85rem 1rem;
|
||
border-bottom: 1px solid #f0e9df;
|
||
background: #fffdfa;
|
||
}
|
||
|
||
.adv-megamenu .adv-megamenu__mobile-link-row a,
|
||
.adv-megamenu .adv-megamenu__mobile-link-row a:link,
|
||
.adv-megamenu .adv-megamenu__mobile-link-row a:visited {
|
||
color: #2d241d;
|
||
text-decoration: none;
|
||
}
|
||
|
||
@media (max-width: 991px) {
|
||
.adv-megamenu {
|
||
display: block;
|
||
width: 100%;
|
||
}
|
||
|
||
.adv-megamenu__desktop {
|
||
display: none;
|
||
}
|
||
|
||
.adv-megamenu__mobile {
|
||
display: block;
|
||
}
|
||
|
||
.adv-megamenu__rich-intro {
|
||
flex-direction: column;
|
||
}
|
||
|
||
.adv-megamenu__rich-intro-media {
|
||
flex-basis: auto;
|
||
max-width: 100%;
|
||
}
|
||
}
|
||
|
||
|
||
.adv-megamenu__node-card-row {
|
||
row-gap: 1rem;
|
||
}
|
||
|
||
.adv-megamenu__node-card {
|
||
height: 100%;
|
||
border: 1px solid #ebe2d6;
|
||
box-shadow: 0 10px 24px rgba(45, 36, 29, 0.08);
|
||
background: #fffdfa;
|
||
}
|
||
|
||
.adv-megamenu__node-card .card-img-top {
|
||
display: block;
|
||
width: 250px;
|
||
height: 250px;
|
||
max-width: 100%;
|
||
margin: 0 auto;
|
||
object-fit: contain;
|
||
background: #ffffff;
|
||
}
|
||
|
||
.adv-megamenu__node-card .card-body {
|
||
display: flex;
|
||
flex-direction: column;
|
||
gap: 0.65rem;
|
||
}
|
||
|
||
.adv-megamenu__node-card .card-title,
|
||
.adv-megamenu__node-card .card-text {
|
||
color: #2d241d;
|
||
}
|
||
|
||
.adv-megamenu__node-card .card-title {
|
||
margin: 0;
|
||
font-size: 1rem;
|
||
font-weight: 700;
|
||
text-align: center;
|
||
}
|
||
|
||
.adv-megamenu .adv-megamenu__node-card .card-title a,
|
||
.adv-megamenu .adv-megamenu__node-card .card-title a:link,
|
||
.adv-megamenu .adv-megamenu__node-card .card-title a:visited {
|
||
color: #2d241d;
|
||
text-decoration: none;
|
||
}
|
||
|
||
.adv-megamenu .adv-megamenu__node-card .card-title a:hover {
|
||
color: #8a3c1f;
|
||
}
|
||
|
||
.adv-megamenu__node-card .card-text {
|
||
margin: 0;
|
||
line-height: 1.45;
|
||
}
|
||
|
||
.adv-megamenu__submenu-pane,
|
||
.adv-megamenu__panel-tree,
|
||
.adv-megamenu__layout-card,
|
||
.adv-megamenu__node-card,
|
||
.adv-megamenu__node-card .card-title a,
|
||
.adv-megamenu__node-card .card-text,
|
||
.adv-megamenu__layout-card .card-title,
|
||
.adv-megamenu__layout-card .card-text {
|
||
white-space: normal;
|
||
}
|