You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
94 lines
1.5 KiB
94 lines
1.5 KiB
.p-megamenu-root-list {
|
|
margin: 0;
|
|
padding: 0;
|
|
list-style: none;
|
|
}
|
|
|
|
.p-megamenu-root-list > .p-menuitem {
|
|
position: relative;
|
|
}
|
|
|
|
.p-megamenu .p-menuitem-link {
|
|
cursor: pointer;
|
|
display: flex;
|
|
align-items: center;
|
|
text-decoration: none;
|
|
overflow: hidden;
|
|
position: relative;
|
|
}
|
|
|
|
.p-megamenu .p-menuitem-text {
|
|
line-height: 1;
|
|
}
|
|
|
|
.p-megamenu-panel {
|
|
display: none;
|
|
position: absolute;
|
|
width: auto;
|
|
z-index: 1;
|
|
}
|
|
|
|
.p-megamenu-root-list > .p-menuitem-active > .p-megamenu-panel {
|
|
display: block;
|
|
}
|
|
|
|
.p-megamenu-submenu {
|
|
margin: 0;
|
|
padding: 0;
|
|
list-style: none;
|
|
}
|
|
|
|
/* Horizontal */
|
|
.p-megamenu-horizontal .p-megamenu-root-list {
|
|
display: flex;
|
|
align-items: center;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
/* Vertical */
|
|
.p-megamenu-vertical .p-megamenu-root-list {
|
|
flex-direction: column;
|
|
}
|
|
|
|
.p-megamenu-vertical .p-megamenu-root-list > .p-menuitem-active > .p-megamenu-panel {
|
|
left: 100%;
|
|
top: 0;
|
|
}
|
|
|
|
.p-megamenu-vertical .p-megamenu-root-list > .p-menuitem > .p-menuitem-link > .p-submenu-icon {
|
|
margin-left: auto;
|
|
}
|
|
|
|
|
|
.p-megamenu-grid {
|
|
display: flex;
|
|
}
|
|
|
|
.p-megamenu-col-2,
|
|
.p-megamenu-col-3,
|
|
.p-megamenu-col-4,
|
|
.p-megamenu-col-6,
|
|
.p-megamenu-col-12 {
|
|
flex: 0 0 auto;
|
|
padding: 0.5rem;
|
|
}
|
|
|
|
.p-megamenu-col-2 {
|
|
width: 16.6667%;
|
|
}
|
|
|
|
.p-megamenu-col-3 {
|
|
width: 25%;
|
|
}
|
|
|
|
.p-megamenu-col-4 {
|
|
width: 33.3333%;
|
|
}
|
|
|
|
.p-megamenu-col-6 {
|
|
width: 50%;
|
|
}
|
|
|
|
.p-megamenu-col-12 {
|
|
width: 100%;
|
|
}
|