Responsive menubar
parent
9ebc5b6a89
commit
d8718af3f8
|
@ -2501,6 +2501,7 @@
|
|||
color: #dedede;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-contextmenu .p-menuitem-link .p-menuitem-text {
|
||||
color: #dedede;
|
||||
|
@ -2553,7 +2554,7 @@
|
|||
}
|
||||
|
||||
.p-megamenu {
|
||||
padding: 0;
|
||||
padding: 0.5rem;
|
||||
background: #252525;
|
||||
color: #dedede;
|
||||
border: 1px solid #191919;
|
||||
|
@ -2564,6 +2565,7 @@
|
|||
color: #dedede;
|
||||
border-radius: 3px;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-megamenu .p-megamenu-root-list > .p-menuitem > .p-menuitem-link .p-menuitem-text {
|
||||
color: #dedede;
|
||||
|
@ -2598,6 +2600,7 @@
|
|||
color: #dedede;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-megamenu .p-menuitem-link .p-menuitem-text {
|
||||
color: #dedede;
|
||||
|
@ -2676,6 +2679,7 @@
|
|||
color: #dedede;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-menu .p-menuitem-link .p-menuitem-text {
|
||||
color: #dedede;
|
||||
|
@ -2723,7 +2727,7 @@
|
|||
}
|
||||
|
||||
.p-menubar {
|
||||
padding: 0;
|
||||
padding: 0.5rem;
|
||||
background: #252525;
|
||||
color: #dedede;
|
||||
border: 1px solid #191919;
|
||||
|
@ -2734,6 +2738,7 @@
|
|||
color: #dedede;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-menubar .p-menuitem-link .p-menuitem-text {
|
||||
color: #dedede;
|
||||
|
@ -2767,6 +2772,7 @@
|
|||
color: #dedede;
|
||||
border-radius: 3px;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link .p-menuitem-text {
|
||||
color: #dedede;
|
||||
|
@ -2820,6 +2826,129 @@
|
|||
color: #212121;
|
||||
}
|
||||
|
||||
@media screen and (max-width: 960px) {
|
||||
.p-menubar {
|
||||
position: relative;
|
||||
}
|
||||
.p-menubar .p-menubar-button {
|
||||
display: flex;
|
||||
color: #888888;
|
||||
background: transparent;
|
||||
border: 0 none;
|
||||
width: 2rem;
|
||||
height: 2rem;
|
||||
border-radius: 3px;
|
||||
transition: box-shadow 0.2s;
|
||||
}
|
||||
.p-menubar .p-menubar-button i {
|
||||
font-size: 1rem;
|
||||
}
|
||||
.p-menubar .p-menubar-button:focus {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 0.2rem #ffe8b3;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list {
|
||||
position: absolute;
|
||||
display: none;
|
||||
padding: 0;
|
||||
background: #252525;
|
||||
border: 1px solid #191919;
|
||||
box-shadow: 0 0px 6px 0 rgba(0, 0, 0, 0.16);
|
||||
width: 100%;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-menu-separator {
|
||||
border-top: 1px solid #585858;
|
||||
margin: 0;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-submenu-icon {
|
||||
font-size: 0.75rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem {
|
||||
width: 100%;
|
||||
position: static;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link {
|
||||
padding: 0.857rem;
|
||||
color: #dedede;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link .p-menuitem-text {
|
||||
color: #dedede;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link .p-menuitem-icon {
|
||||
color: #dedede;
|
||||
margin-right: 0.5rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link .p-submenu-icon {
|
||||
color: #dedede;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover {
|
||||
background: #4c4c4c;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover .p-menuitem-text {
|
||||
color: #dedede;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover .p-menuitem-icon {
|
||||
color: #dedede;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover .p-submenu-icon {
|
||||
color: #dedede;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:focus {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: inset 0 0 0 0.2rem #ffe8b3;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link > .p-submenu-icon {
|
||||
margin-left: auto;
|
||||
transition: transform 0.2s;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem.p-menuitem-active > .p-menuitem-link > .p-submenu-icon {
|
||||
transform: rotate(-180deg);
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-submenu-list {
|
||||
width: 100%;
|
||||
position: static;
|
||||
box-shadow: none;
|
||||
border: 0 none;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-submenu-list .p-submenu-icon {
|
||||
transition: transform 0.2s;
|
||||
transform: rotate(90deg);
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-submenu-list .p-menuitem-active > .p-menuitem-link > .p-submenu-icon {
|
||||
transform: rotate(-90deg);
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-menuitem {
|
||||
width: 100%;
|
||||
position: static;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list ul li a {
|
||||
padding-left: 2.571rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list ul li ul li a {
|
||||
padding-left: 4.285rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list ul li ul li ul li a {
|
||||
padding-left: 5.999rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list ul li ul li ul li ul li a {
|
||||
padding-left: 7.713rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list ul li ul li ul li ul li ul li a {
|
||||
padding-left: 9.427rem;
|
||||
}
|
||||
.p-menubar.p-menubar-mobile-active .p-menubar-root-list {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
top: 100%;
|
||||
left: 0;
|
||||
z-index: 1;
|
||||
}
|
||||
}
|
||||
.p-panelmenu .p-panelmenu-header > a {
|
||||
padding: 0.857rem 1rem;
|
||||
border: 1px solid #191919;
|
||||
|
@ -2877,6 +3006,7 @@
|
|||
color: #dedede;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-panelmenu .p-panelmenu-content .p-menuitem .p-menuitem-link .p-menuitem-text {
|
||||
color: #dedede;
|
||||
|
@ -3014,6 +3144,7 @@
|
|||
color: #dedede;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-tieredmenu .p-menuitem-link .p-menuitem-text {
|
||||
color: #dedede;
|
||||
|
|
|
@ -2501,6 +2501,7 @@
|
|||
color: #dedede;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-contextmenu .p-menuitem-link .p-menuitem-text {
|
||||
color: #dedede;
|
||||
|
@ -2553,7 +2554,7 @@
|
|||
}
|
||||
|
||||
.p-megamenu {
|
||||
padding: 0;
|
||||
padding: 0.5rem;
|
||||
background: #252525;
|
||||
color: #dedede;
|
||||
border: 1px solid #191919;
|
||||
|
@ -2564,6 +2565,7 @@
|
|||
color: #dedede;
|
||||
border-radius: 3px;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-megamenu .p-megamenu-root-list > .p-menuitem > .p-menuitem-link .p-menuitem-text {
|
||||
color: #dedede;
|
||||
|
@ -2598,6 +2600,7 @@
|
|||
color: #dedede;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-megamenu .p-menuitem-link .p-menuitem-text {
|
||||
color: #dedede;
|
||||
|
@ -2676,6 +2679,7 @@
|
|||
color: #dedede;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-menu .p-menuitem-link .p-menuitem-text {
|
||||
color: #dedede;
|
||||
|
@ -2723,7 +2727,7 @@
|
|||
}
|
||||
|
||||
.p-menubar {
|
||||
padding: 0;
|
||||
padding: 0.5rem;
|
||||
background: #252525;
|
||||
color: #dedede;
|
||||
border: 1px solid #191919;
|
||||
|
@ -2734,6 +2738,7 @@
|
|||
color: #dedede;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-menubar .p-menuitem-link .p-menuitem-text {
|
||||
color: #dedede;
|
||||
|
@ -2767,6 +2772,7 @@
|
|||
color: #dedede;
|
||||
border-radius: 3px;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link .p-menuitem-text {
|
||||
color: #dedede;
|
||||
|
@ -2820,6 +2826,129 @@
|
|||
color: #ffffff;
|
||||
}
|
||||
|
||||
@media screen and (max-width: 960px) {
|
||||
.p-menubar {
|
||||
position: relative;
|
||||
}
|
||||
.p-menubar .p-menubar-button {
|
||||
display: flex;
|
||||
color: #888888;
|
||||
background: transparent;
|
||||
border: 0 none;
|
||||
width: 2rem;
|
||||
height: 2rem;
|
||||
border-radius: 3px;
|
||||
transition: box-shadow 0.2s;
|
||||
}
|
||||
.p-menubar .p-menubar-button i {
|
||||
font-size: 1rem;
|
||||
}
|
||||
.p-menubar .p-menubar-button:focus {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 0.2rem #88e9aa;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list {
|
||||
position: absolute;
|
||||
display: none;
|
||||
padding: 0;
|
||||
background: #252525;
|
||||
border: 1px solid #191919;
|
||||
box-shadow: 0 0px 6px 0 rgba(0, 0, 0, 0.16);
|
||||
width: 100%;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-menu-separator {
|
||||
border-top: 1px solid #585858;
|
||||
margin: 0;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-submenu-icon {
|
||||
font-size: 0.75rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem {
|
||||
width: 100%;
|
||||
position: static;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link {
|
||||
padding: 0.857rem;
|
||||
color: #dedede;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link .p-menuitem-text {
|
||||
color: #dedede;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link .p-menuitem-icon {
|
||||
color: #dedede;
|
||||
margin-right: 0.5rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link .p-submenu-icon {
|
||||
color: #dedede;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover {
|
||||
background: #4c4c4c;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover .p-menuitem-text {
|
||||
color: #dedede;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover .p-menuitem-icon {
|
||||
color: #dedede;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover .p-submenu-icon {
|
||||
color: #dedede;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:focus {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: inset 0 0 0 0.2rem #88e9aa;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link > .p-submenu-icon {
|
||||
margin-left: auto;
|
||||
transition: transform 0.2s;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem.p-menuitem-active > .p-menuitem-link > .p-submenu-icon {
|
||||
transform: rotate(-180deg);
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-submenu-list {
|
||||
width: 100%;
|
||||
position: static;
|
||||
box-shadow: none;
|
||||
border: 0 none;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-submenu-list .p-submenu-icon {
|
||||
transition: transform 0.2s;
|
||||
transform: rotate(90deg);
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-submenu-list .p-menuitem-active > .p-menuitem-link > .p-submenu-icon {
|
||||
transform: rotate(-90deg);
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-menuitem {
|
||||
width: 100%;
|
||||
position: static;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list ul li a {
|
||||
padding-left: 2.571rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list ul li ul li a {
|
||||
padding-left: 4.285rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list ul li ul li ul li a {
|
||||
padding-left: 5.999rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list ul li ul li ul li ul li a {
|
||||
padding-left: 7.713rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list ul li ul li ul li ul li ul li a {
|
||||
padding-left: 9.427rem;
|
||||
}
|
||||
.p-menubar.p-menubar-mobile-active .p-menubar-root-list {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
top: 100%;
|
||||
left: 0;
|
||||
z-index: 1;
|
||||
}
|
||||
}
|
||||
.p-panelmenu .p-panelmenu-header > a {
|
||||
padding: 0.857rem 1rem;
|
||||
border: 1px solid #191919;
|
||||
|
@ -2877,6 +3006,7 @@
|
|||
color: #dedede;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-panelmenu .p-panelmenu-content .p-menuitem .p-menuitem-link .p-menuitem-text {
|
||||
color: #dedede;
|
||||
|
@ -3014,6 +3144,7 @@
|
|||
color: #dedede;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-tieredmenu .p-menuitem-link .p-menuitem-text {
|
||||
color: #dedede;
|
||||
|
|
|
@ -2501,6 +2501,7 @@
|
|||
color: #dedede;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-contextmenu .p-menuitem-link .p-menuitem-text {
|
||||
color: #dedede;
|
||||
|
@ -2553,7 +2554,7 @@
|
|||
}
|
||||
|
||||
.p-megamenu {
|
||||
padding: 0;
|
||||
padding: 0.5rem;
|
||||
background: #252525;
|
||||
color: #dedede;
|
||||
border: 1px solid #191919;
|
||||
|
@ -2564,6 +2565,7 @@
|
|||
color: #dedede;
|
||||
border-radius: 3px;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-megamenu .p-megamenu-root-list > .p-menuitem > .p-menuitem-link .p-menuitem-text {
|
||||
color: #dedede;
|
||||
|
@ -2598,6 +2600,7 @@
|
|||
color: #dedede;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-megamenu .p-menuitem-link .p-menuitem-text {
|
||||
color: #dedede;
|
||||
|
@ -2676,6 +2679,7 @@
|
|||
color: #dedede;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-menu .p-menuitem-link .p-menuitem-text {
|
||||
color: #dedede;
|
||||
|
@ -2723,7 +2727,7 @@
|
|||
}
|
||||
|
||||
.p-menubar {
|
||||
padding: 0;
|
||||
padding: 0.5rem;
|
||||
background: #252525;
|
||||
color: #dedede;
|
||||
border: 1px solid #191919;
|
||||
|
@ -2734,6 +2738,7 @@
|
|||
color: #dedede;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-menubar .p-menuitem-link .p-menuitem-text {
|
||||
color: #dedede;
|
||||
|
@ -2767,6 +2772,7 @@
|
|||
color: #dedede;
|
||||
border-radius: 3px;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link .p-menuitem-text {
|
||||
color: #dedede;
|
||||
|
@ -2820,6 +2826,129 @@
|
|||
color: #ffffff;
|
||||
}
|
||||
|
||||
@media screen and (max-width: 960px) {
|
||||
.p-menubar {
|
||||
position: relative;
|
||||
}
|
||||
.p-menubar .p-menubar-button {
|
||||
display: flex;
|
||||
color: #888888;
|
||||
background: transparent;
|
||||
border: 0 none;
|
||||
width: 2rem;
|
||||
height: 2rem;
|
||||
border-radius: 3px;
|
||||
transition: box-shadow 0.2s;
|
||||
}
|
||||
.p-menubar .p-menubar-button i {
|
||||
font-size: 1rem;
|
||||
}
|
||||
.p-menubar .p-menubar-button:focus {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 0.2rem #f1b6c8;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list {
|
||||
position: absolute;
|
||||
display: none;
|
||||
padding: 0;
|
||||
background: #252525;
|
||||
border: 1px solid #191919;
|
||||
box-shadow: 0 0px 6px 0 rgba(0, 0, 0, 0.16);
|
||||
width: 100%;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-menu-separator {
|
||||
border-top: 1px solid #585858;
|
||||
margin: 0;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-submenu-icon {
|
||||
font-size: 0.75rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem {
|
||||
width: 100%;
|
||||
position: static;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link {
|
||||
padding: 0.857rem;
|
||||
color: #dedede;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link .p-menuitem-text {
|
||||
color: #dedede;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link .p-menuitem-icon {
|
||||
color: #dedede;
|
||||
margin-right: 0.5rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link .p-submenu-icon {
|
||||
color: #dedede;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover {
|
||||
background: #4c4c4c;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover .p-menuitem-text {
|
||||
color: #dedede;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover .p-menuitem-icon {
|
||||
color: #dedede;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover .p-submenu-icon {
|
||||
color: #dedede;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:focus {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: inset 0 0 0 0.2rem #f1b6c8;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link > .p-submenu-icon {
|
||||
margin-left: auto;
|
||||
transition: transform 0.2s;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem.p-menuitem-active > .p-menuitem-link > .p-submenu-icon {
|
||||
transform: rotate(-180deg);
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-submenu-list {
|
||||
width: 100%;
|
||||
position: static;
|
||||
box-shadow: none;
|
||||
border: 0 none;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-submenu-list .p-submenu-icon {
|
||||
transition: transform 0.2s;
|
||||
transform: rotate(90deg);
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-submenu-list .p-menuitem-active > .p-menuitem-link > .p-submenu-icon {
|
||||
transform: rotate(-90deg);
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-menuitem {
|
||||
width: 100%;
|
||||
position: static;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list ul li a {
|
||||
padding-left: 2.571rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list ul li ul li a {
|
||||
padding-left: 4.285rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list ul li ul li ul li a {
|
||||
padding-left: 5.999rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list ul li ul li ul li ul li a {
|
||||
padding-left: 7.713rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list ul li ul li ul li ul li ul li a {
|
||||
padding-left: 9.427rem;
|
||||
}
|
||||
.p-menubar.p-menubar-mobile-active .p-menubar-root-list {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
top: 100%;
|
||||
left: 0;
|
||||
z-index: 1;
|
||||
}
|
||||
}
|
||||
.p-panelmenu .p-panelmenu-header > a {
|
||||
padding: 0.857rem 1rem;
|
||||
border: 1px solid #191919;
|
||||
|
@ -2877,6 +3006,7 @@
|
|||
color: #dedede;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-panelmenu .p-panelmenu-content .p-menuitem .p-menuitem-link .p-menuitem-text {
|
||||
color: #dedede;
|
||||
|
@ -3014,6 +3144,7 @@
|
|||
color: #dedede;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-tieredmenu .p-menuitem-link .p-menuitem-text {
|
||||
color: #dedede;
|
||||
|
|
|
@ -2501,6 +2501,7 @@
|
|||
color: #333333;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-contextmenu .p-menuitem-link .p-menuitem-text {
|
||||
color: #333333;
|
||||
|
@ -2553,7 +2554,7 @@
|
|||
}
|
||||
|
||||
.p-megamenu {
|
||||
padding: 0;
|
||||
padding: 0.5rem;
|
||||
background: #ffffff;
|
||||
color: #333333;
|
||||
border: 1px solid #c8c8c8;
|
||||
|
@ -2564,6 +2565,7 @@
|
|||
color: #333333;
|
||||
border-radius: 3px;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-megamenu .p-megamenu-root-list > .p-menuitem > .p-menuitem-link .p-menuitem-text {
|
||||
color: #333333;
|
||||
|
@ -2598,6 +2600,7 @@
|
|||
color: #333333;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-megamenu .p-menuitem-link .p-menuitem-text {
|
||||
color: #333333;
|
||||
|
@ -2676,6 +2679,7 @@
|
|||
color: #333333;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-menu .p-menuitem-link .p-menuitem-text {
|
||||
color: #333333;
|
||||
|
@ -2723,7 +2727,7 @@
|
|||
}
|
||||
|
||||
.p-menubar {
|
||||
padding: 0;
|
||||
padding: 0.5rem;
|
||||
background: #ffffff;
|
||||
color: #333333;
|
||||
border: 1px solid #c8c8c8;
|
||||
|
@ -2734,6 +2738,7 @@
|
|||
color: #333333;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-menubar .p-menuitem-link .p-menuitem-text {
|
||||
color: #333333;
|
||||
|
@ -2767,6 +2772,7 @@
|
|||
color: #333333;
|
||||
border-radius: 3px;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link .p-menuitem-text {
|
||||
color: #333333;
|
||||
|
@ -2820,6 +2826,129 @@
|
|||
color: #333333;
|
||||
}
|
||||
|
||||
@media screen and (max-width: 960px) {
|
||||
.p-menubar {
|
||||
position: relative;
|
||||
}
|
||||
.p-menubar .p-menubar-button {
|
||||
display: flex;
|
||||
color: #ffffff;
|
||||
background: transparent;
|
||||
border: 0 none;
|
||||
width: 2rem;
|
||||
height: 2rem;
|
||||
border-radius: 3px;
|
||||
transition: box-shadow 0.2s;
|
||||
}
|
||||
.p-menubar .p-menubar-button i {
|
||||
font-size: 1rem;
|
||||
}
|
||||
.p-menubar .p-menubar-button:focus {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 0.2rem #8dcdff;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list {
|
||||
position: absolute;
|
||||
display: none;
|
||||
padding: 0;
|
||||
background: #ffffff;
|
||||
border: 1px solid #c8c8c8;
|
||||
box-shadow: 0 0px 6px 0 rgba(0, 0, 0, 0.16);
|
||||
width: 100%;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-menu-separator {
|
||||
border-top: 1px solid #d8dae2;
|
||||
margin: 0;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-submenu-icon {
|
||||
font-size: 0.75rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem {
|
||||
width: 100%;
|
||||
position: static;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link {
|
||||
padding: 0.857rem;
|
||||
color: #333333;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link .p-menuitem-text {
|
||||
color: #333333;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link .p-menuitem-icon {
|
||||
color: #333333;
|
||||
margin-right: 0.5rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link .p-submenu-icon {
|
||||
color: #333333;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover {
|
||||
background: #eaeaea;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover .p-menuitem-text {
|
||||
color: #333333;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover .p-menuitem-icon {
|
||||
color: #333333;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover .p-submenu-icon {
|
||||
color: #333333;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:focus {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: inset 0 0 0 0.2rem #8dcdff;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link > .p-submenu-icon {
|
||||
margin-left: auto;
|
||||
transition: transform 0.2s;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem.p-menuitem-active > .p-menuitem-link > .p-submenu-icon {
|
||||
transform: rotate(-180deg);
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-submenu-list {
|
||||
width: 100%;
|
||||
position: static;
|
||||
box-shadow: none;
|
||||
border: 0 none;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-submenu-list .p-submenu-icon {
|
||||
transition: transform 0.2s;
|
||||
transform: rotate(90deg);
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-submenu-list .p-menuitem-active > .p-menuitem-link > .p-submenu-icon {
|
||||
transform: rotate(-90deg);
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-menuitem {
|
||||
width: 100%;
|
||||
position: static;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list ul li a {
|
||||
padding-left: 2.571rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list ul li ul li a {
|
||||
padding-left: 4.285rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list ul li ul li ul li a {
|
||||
padding-left: 5.999rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list ul li ul li ul li ul li a {
|
||||
padding-left: 7.713rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list ul li ul li ul li ul li ul li a {
|
||||
padding-left: 9.427rem;
|
||||
}
|
||||
.p-menubar.p-menubar-mobile-active .p-menubar-root-list {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
top: 100%;
|
||||
left: 0;
|
||||
z-index: 1;
|
||||
}
|
||||
}
|
||||
.p-panelmenu .p-panelmenu-header > a {
|
||||
padding: 0.857rem 1rem;
|
||||
border: 1px solid #007ad9;
|
||||
|
@ -2877,6 +3006,7 @@
|
|||
color: #333333;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-panelmenu .p-panelmenu-content .p-menuitem .p-menuitem-link .p-menuitem-text {
|
||||
color: #333333;
|
||||
|
@ -3014,6 +3144,7 @@
|
|||
color: #333333;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-tieredmenu .p-menuitem-link .p-menuitem-text {
|
||||
color: #333333;
|
||||
|
|
|
@ -2501,6 +2501,7 @@
|
|||
color: #333333;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-contextmenu .p-menuitem-link .p-menuitem-text {
|
||||
color: #333333;
|
||||
|
@ -2553,7 +2554,7 @@
|
|||
}
|
||||
|
||||
.p-megamenu {
|
||||
padding: 0;
|
||||
padding: 0.5rem;
|
||||
background: #ffffff;
|
||||
color: #333333;
|
||||
border: 1px solid #c8c8c8;
|
||||
|
@ -2564,6 +2565,7 @@
|
|||
color: #333333;
|
||||
border-radius: 3px;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-megamenu .p-megamenu-root-list > .p-menuitem > .p-menuitem-link .p-menuitem-text {
|
||||
color: #333333;
|
||||
|
@ -2598,6 +2600,7 @@
|
|||
color: #333333;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-megamenu .p-menuitem-link .p-menuitem-text {
|
||||
color: #333333;
|
||||
|
@ -2676,6 +2679,7 @@
|
|||
color: #333333;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-menu .p-menuitem-link .p-menuitem-text {
|
||||
color: #333333;
|
||||
|
@ -2723,7 +2727,7 @@
|
|||
}
|
||||
|
||||
.p-menubar {
|
||||
padding: 0;
|
||||
padding: 0.5rem;
|
||||
background: #ffffff;
|
||||
color: #333333;
|
||||
border: 1px solid #c8c8c8;
|
||||
|
@ -2734,6 +2738,7 @@
|
|||
color: #333333;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-menubar .p-menuitem-link .p-menuitem-text {
|
||||
color: #333333;
|
||||
|
@ -2767,6 +2772,7 @@
|
|||
color: #333333;
|
||||
border-radius: 3px;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link .p-menuitem-text {
|
||||
color: #333333;
|
||||
|
@ -2820,6 +2826,129 @@
|
|||
color: #333333;
|
||||
}
|
||||
|
||||
@media screen and (max-width: 960px) {
|
||||
.p-menubar {
|
||||
position: relative;
|
||||
}
|
||||
.p-menubar .p-menubar-button {
|
||||
display: flex;
|
||||
color: #ffffff;
|
||||
background: transparent;
|
||||
border: 0 none;
|
||||
width: 2rem;
|
||||
height: 2rem;
|
||||
border-radius: 3px;
|
||||
transition: box-shadow 0.2s;
|
||||
}
|
||||
.p-menubar .p-menubar-button i {
|
||||
font-size: 1rem;
|
||||
}
|
||||
.p-menubar .p-menubar-button:focus {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 0.2rem #8dcdff;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list {
|
||||
position: absolute;
|
||||
display: none;
|
||||
padding: 0;
|
||||
background: #ffffff;
|
||||
border: 1px solid #c8c8c8;
|
||||
box-shadow: 0 0px 6px 0 rgba(0, 0, 0, 0.16);
|
||||
width: 100%;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-menu-separator {
|
||||
border-top: 1px solid #d8dae2;
|
||||
margin: 0;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-submenu-icon {
|
||||
font-size: 0.75rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem {
|
||||
width: 100%;
|
||||
position: static;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link {
|
||||
padding: 0.857rem;
|
||||
color: #333333;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link .p-menuitem-text {
|
||||
color: #333333;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link .p-menuitem-icon {
|
||||
color: #333333;
|
||||
margin-right: 0.5rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link .p-submenu-icon {
|
||||
color: #333333;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover {
|
||||
background: #eaeaea;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover .p-menuitem-text {
|
||||
color: #333333;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover .p-menuitem-icon {
|
||||
color: #333333;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover .p-submenu-icon {
|
||||
color: #333333;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:focus {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: inset 0 0 0 0.2rem #8dcdff;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link > .p-submenu-icon {
|
||||
margin-left: auto;
|
||||
transition: transform 0.2s;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem.p-menuitem-active > .p-menuitem-link > .p-submenu-icon {
|
||||
transform: rotate(-180deg);
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-submenu-list {
|
||||
width: 100%;
|
||||
position: static;
|
||||
box-shadow: none;
|
||||
border: 0 none;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-submenu-list .p-submenu-icon {
|
||||
transition: transform 0.2s;
|
||||
transform: rotate(90deg);
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-submenu-list .p-menuitem-active > .p-menuitem-link > .p-submenu-icon {
|
||||
transform: rotate(-90deg);
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-menuitem {
|
||||
width: 100%;
|
||||
position: static;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list ul li a {
|
||||
padding-left: 2.571rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list ul li ul li a {
|
||||
padding-left: 4.285rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list ul li ul li ul li a {
|
||||
padding-left: 5.999rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list ul li ul li ul li ul li a {
|
||||
padding-left: 7.713rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list ul li ul li ul li ul li ul li a {
|
||||
padding-left: 9.427rem;
|
||||
}
|
||||
.p-menubar.p-menubar-mobile-active .p-menubar-root-list {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
top: 100%;
|
||||
left: 0;
|
||||
z-index: 1;
|
||||
}
|
||||
}
|
||||
.p-panelmenu .p-panelmenu-header > a {
|
||||
padding: 0.857rem 1rem;
|
||||
border: 1px solid #333333;
|
||||
|
@ -2877,6 +3006,7 @@
|
|||
color: #333333;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-panelmenu .p-panelmenu-content .p-menuitem .p-menuitem-link .p-menuitem-text {
|
||||
color: #333333;
|
||||
|
@ -3014,6 +3144,7 @@
|
|||
color: #333333;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-tieredmenu .p-menuitem-link .p-menuitem-text {
|
||||
color: #333333;
|
||||
|
|
|
@ -2501,6 +2501,7 @@
|
|||
color: #333333;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-contextmenu .p-menuitem-link .p-menuitem-text {
|
||||
color: #333333;
|
||||
|
@ -2553,7 +2554,7 @@
|
|||
}
|
||||
|
||||
.p-megamenu {
|
||||
padding: 0;
|
||||
padding: 0.5rem;
|
||||
background: #ffffff;
|
||||
color: #333333;
|
||||
border: 1px solid #c8c8c8;
|
||||
|
@ -2564,6 +2565,7 @@
|
|||
color: #333333;
|
||||
border-radius: 3px;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-megamenu .p-megamenu-root-list > .p-menuitem > .p-menuitem-link .p-menuitem-text {
|
||||
color: #333333;
|
||||
|
@ -2598,6 +2600,7 @@
|
|||
color: #333333;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-megamenu .p-menuitem-link .p-menuitem-text {
|
||||
color: #333333;
|
||||
|
@ -2676,6 +2679,7 @@
|
|||
color: #333333;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-menu .p-menuitem-link .p-menuitem-text {
|
||||
color: #333333;
|
||||
|
@ -2723,7 +2727,7 @@
|
|||
}
|
||||
|
||||
.p-menubar {
|
||||
padding: 0;
|
||||
padding: 0.5rem;
|
||||
background: #ffffff;
|
||||
color: #333333;
|
||||
border: 1px solid #c8c8c8;
|
||||
|
@ -2734,6 +2738,7 @@
|
|||
color: #333333;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-menubar .p-menuitem-link .p-menuitem-text {
|
||||
color: #333333;
|
||||
|
@ -2767,6 +2772,7 @@
|
|||
color: #333333;
|
||||
border-radius: 3px;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link .p-menuitem-text {
|
||||
color: #333333;
|
||||
|
@ -2820,6 +2826,129 @@
|
|||
color: #333333;
|
||||
}
|
||||
|
||||
@media screen and (max-width: 960px) {
|
||||
.p-menubar {
|
||||
position: relative;
|
||||
}
|
||||
.p-menubar .p-menubar-button {
|
||||
display: flex;
|
||||
color: #848484;
|
||||
background: transparent;
|
||||
border: 0 none;
|
||||
width: 2rem;
|
||||
height: 2rem;
|
||||
border-radius: 3px;
|
||||
transition: box-shadow 0.2s;
|
||||
}
|
||||
.p-menubar .p-menubar-button i {
|
||||
font-size: 1rem;
|
||||
}
|
||||
.p-menubar .p-menubar-button:focus {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 0.2rem #8dcdff;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list {
|
||||
position: absolute;
|
||||
display: none;
|
||||
padding: 0;
|
||||
background: #ffffff;
|
||||
border: 1px solid #c8c8c8;
|
||||
box-shadow: 0 0px 6px 0 rgba(0, 0, 0, 0.16);
|
||||
width: 100%;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-menu-separator {
|
||||
border-top: 1px solid #d8dae2;
|
||||
margin: 0;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-submenu-icon {
|
||||
font-size: 0.75rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem {
|
||||
width: 100%;
|
||||
position: static;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link {
|
||||
padding: 0.857rem;
|
||||
color: #333333;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link .p-menuitem-text {
|
||||
color: #333333;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link .p-menuitem-icon {
|
||||
color: #333333;
|
||||
margin-right: 0.5rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link .p-submenu-icon {
|
||||
color: #333333;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover {
|
||||
background: #eaeaea;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover .p-menuitem-text {
|
||||
color: #333333;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover .p-menuitem-icon {
|
||||
color: #333333;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover .p-submenu-icon {
|
||||
color: #333333;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:focus {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: inset 0 0 0 0.2rem #8dcdff;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link > .p-submenu-icon {
|
||||
margin-left: auto;
|
||||
transition: transform 0.2s;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem.p-menuitem-active > .p-menuitem-link > .p-submenu-icon {
|
||||
transform: rotate(-180deg);
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-submenu-list {
|
||||
width: 100%;
|
||||
position: static;
|
||||
box-shadow: none;
|
||||
border: 0 none;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-submenu-list .p-submenu-icon {
|
||||
transition: transform 0.2s;
|
||||
transform: rotate(90deg);
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-submenu-list .p-menuitem-active > .p-menuitem-link > .p-submenu-icon {
|
||||
transform: rotate(-90deg);
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-menuitem {
|
||||
width: 100%;
|
||||
position: static;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list ul li a {
|
||||
padding-left: 2.571rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list ul li ul li a {
|
||||
padding-left: 4.285rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list ul li ul li ul li a {
|
||||
padding-left: 5.999rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list ul li ul li ul li ul li a {
|
||||
padding-left: 7.713rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list ul li ul li ul li ul li ul li a {
|
||||
padding-left: 9.427rem;
|
||||
}
|
||||
.p-menubar.p-menubar-mobile-active .p-menubar-root-list {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
top: 100%;
|
||||
left: 0;
|
||||
z-index: 1;
|
||||
}
|
||||
}
|
||||
.p-panelmenu .p-panelmenu-header > a {
|
||||
padding: 0.857rem 1rem;
|
||||
border: 1px solid #c8c8c8;
|
||||
|
@ -2877,6 +3006,7 @@
|
|||
color: #333333;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-panelmenu .p-panelmenu-content .p-menuitem .p-menuitem-link .p-menuitem-text {
|
||||
color: #333333;
|
||||
|
@ -3014,6 +3144,7 @@
|
|||
color: #333333;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-tieredmenu .p-menuitem-link .p-menuitem-text {
|
||||
color: #333333;
|
||||
|
|
|
@ -2501,6 +2501,7 @@
|
|||
color: #333333;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-contextmenu .p-menuitem-link .p-menuitem-text {
|
||||
color: #333333;
|
||||
|
@ -2553,7 +2554,7 @@
|
|||
}
|
||||
|
||||
.p-megamenu {
|
||||
padding: 0;
|
||||
padding: 0.5rem;
|
||||
background: #ffffff;
|
||||
color: #333333;
|
||||
border: 1px solid #c8c8c8;
|
||||
|
@ -2564,6 +2565,7 @@
|
|||
color: #333333;
|
||||
border-radius: 3px;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-megamenu .p-megamenu-root-list > .p-menuitem > .p-menuitem-link .p-menuitem-text {
|
||||
color: #333333;
|
||||
|
@ -2598,6 +2600,7 @@
|
|||
color: #333333;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-megamenu .p-menuitem-link .p-menuitem-text {
|
||||
color: #333333;
|
||||
|
@ -2676,6 +2679,7 @@
|
|||
color: #333333;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-menu .p-menuitem-link .p-menuitem-text {
|
||||
color: #333333;
|
||||
|
@ -2723,7 +2727,7 @@
|
|||
}
|
||||
|
||||
.p-menubar {
|
||||
padding: 0;
|
||||
padding: 0.5rem;
|
||||
background: #ffffff;
|
||||
color: #333333;
|
||||
border: 1px solid #c8c8c8;
|
||||
|
@ -2734,6 +2738,7 @@
|
|||
color: #333333;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-menubar .p-menuitem-link .p-menuitem-text {
|
||||
color: #333333;
|
||||
|
@ -2767,6 +2772,7 @@
|
|||
color: #333333;
|
||||
border-radius: 3px;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link .p-menuitem-text {
|
||||
color: #333333;
|
||||
|
@ -2820,6 +2826,129 @@
|
|||
color: #333333;
|
||||
}
|
||||
|
||||
@media screen and (max-width: 960px) {
|
||||
.p-menubar {
|
||||
position: relative;
|
||||
}
|
||||
.p-menubar .p-menubar-button {
|
||||
display: flex;
|
||||
color: #848484;
|
||||
background: transparent;
|
||||
border: 0 none;
|
||||
width: 2rem;
|
||||
height: 2rem;
|
||||
border-radius: 3px;
|
||||
transition: box-shadow 0.2s;
|
||||
}
|
||||
.p-menubar .p-menubar-button i {
|
||||
font-size: 1rem;
|
||||
}
|
||||
.p-menubar .p-menubar-button:focus {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 0.2rem #c2e9d8;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list {
|
||||
position: absolute;
|
||||
display: none;
|
||||
padding: 0;
|
||||
background: #ffffff;
|
||||
border: 1px solid #c8c8c8;
|
||||
box-shadow: 0 0px 6px 0 rgba(0, 0, 0, 0.16);
|
||||
width: 100%;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-menu-separator {
|
||||
border-top: 1px solid #d8dae2;
|
||||
margin: 0;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-submenu-icon {
|
||||
font-size: 0.75rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem {
|
||||
width: 100%;
|
||||
position: static;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link {
|
||||
padding: 0.857rem;
|
||||
color: #333333;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link .p-menuitem-text {
|
||||
color: #333333;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link .p-menuitem-icon {
|
||||
color: #333333;
|
||||
margin-right: 0.5rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link .p-submenu-icon {
|
||||
color: #333333;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover {
|
||||
background: #eaeaea;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover .p-menuitem-text {
|
||||
color: #333333;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover .p-menuitem-icon {
|
||||
color: #333333;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover .p-submenu-icon {
|
||||
color: #333333;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:focus {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: inset 0 0 0 0.2rem #c2e9d8;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link > .p-submenu-icon {
|
||||
margin-left: auto;
|
||||
transition: transform 0.2s;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem.p-menuitem-active > .p-menuitem-link > .p-submenu-icon {
|
||||
transform: rotate(-180deg);
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-submenu-list {
|
||||
width: 100%;
|
||||
position: static;
|
||||
box-shadow: none;
|
||||
border: 0 none;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-submenu-list .p-submenu-icon {
|
||||
transition: transform 0.2s;
|
||||
transform: rotate(90deg);
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-submenu-list .p-menuitem-active > .p-menuitem-link > .p-submenu-icon {
|
||||
transform: rotate(-90deg);
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-menuitem {
|
||||
width: 100%;
|
||||
position: static;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list ul li a {
|
||||
padding-left: 2.571rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list ul li ul li a {
|
||||
padding-left: 4.285rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list ul li ul li ul li a {
|
||||
padding-left: 5.999rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list ul li ul li ul li ul li a {
|
||||
padding-left: 7.713rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list ul li ul li ul li ul li ul li a {
|
||||
padding-left: 9.427rem;
|
||||
}
|
||||
.p-menubar.p-menubar-mobile-active .p-menubar-root-list {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
top: 100%;
|
||||
left: 0;
|
||||
z-index: 1;
|
||||
}
|
||||
}
|
||||
.p-panelmenu .p-panelmenu-header > a {
|
||||
padding: 0.857rem 1rem;
|
||||
border: 1px solid #c8c8c8;
|
||||
|
@ -2877,6 +3006,7 @@
|
|||
color: #333333;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-panelmenu .p-panelmenu-content .p-menuitem .p-menuitem-link .p-menuitem-text {
|
||||
color: #333333;
|
||||
|
@ -3014,6 +3144,7 @@
|
|||
color: #333333;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-tieredmenu .p-menuitem-link .p-menuitem-text {
|
||||
color: #333333;
|
||||
|
|
|
@ -2501,6 +2501,7 @@
|
|||
color: #666666;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-contextmenu .p-menuitem-link .p-menuitem-text {
|
||||
color: #666666;
|
||||
|
@ -2564,6 +2565,7 @@
|
|||
color: #666666;
|
||||
border-radius: 2px;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-megamenu .p-megamenu-root-list > .p-menuitem > .p-menuitem-link .p-menuitem-text {
|
||||
color: #666666;
|
||||
|
@ -2598,6 +2600,7 @@
|
|||
color: #666666;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-megamenu .p-menuitem-link .p-menuitem-text {
|
||||
color: #666666;
|
||||
|
@ -2676,6 +2679,7 @@
|
|||
color: #666666;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-menu .p-menuitem-link .p-menuitem-text {
|
||||
color: #666666;
|
||||
|
@ -2734,6 +2738,7 @@
|
|||
color: #666666;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-menubar .p-menuitem-link .p-menuitem-text {
|
||||
color: #666666;
|
||||
|
@ -2767,6 +2772,7 @@
|
|||
color: #666666;
|
||||
border-radius: 2px;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link .p-menuitem-text {
|
||||
color: #666666;
|
||||
|
@ -2820,6 +2826,129 @@
|
|||
color: #666666;
|
||||
}
|
||||
|
||||
@media screen and (max-width: 960px) {
|
||||
.p-menubar {
|
||||
position: relative;
|
||||
}
|
||||
.p-menubar .p-menubar-button {
|
||||
display: flex;
|
||||
color: #ffffff;
|
||||
background: transparent;
|
||||
border: 0 none;
|
||||
width: 2.5rem;
|
||||
height: 2.5rem;
|
||||
border-radius: 2px;
|
||||
transition: box-shadow 0.2s;
|
||||
}
|
||||
.p-menubar .p-menubar-button i {
|
||||
font-size: 1.5rem;
|
||||
}
|
||||
.p-menubar .p-menubar-button:focus {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 0.2rem #e4e9ec;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list {
|
||||
position: absolute;
|
||||
display: none;
|
||||
padding: 0;
|
||||
background: #ffffff;
|
||||
border: 1px solid #eaeaea;
|
||||
box-shadow: 0 0px 6px 0 rgba(0, 0, 0, 0.16);
|
||||
width: 100%;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-menu-separator {
|
||||
border-top: 1px solid #dadada;
|
||||
margin: 0;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-submenu-icon {
|
||||
font-size: 0.75rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem {
|
||||
width: 100%;
|
||||
position: static;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link {
|
||||
padding: 0.857rem;
|
||||
color: #666666;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link .p-menuitem-text {
|
||||
color: #666666;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link .p-menuitem-icon {
|
||||
color: #666666;
|
||||
margin-right: 0.5rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link .p-submenu-icon {
|
||||
color: #666666;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover {
|
||||
background: #eaeaea;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover .p-menuitem-text {
|
||||
color: #666666;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover .p-menuitem-icon {
|
||||
color: #666666;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover .p-submenu-icon {
|
||||
color: #666666;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:focus {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: inset 0 0 0 0.2rem #e4e9ec;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link > .p-submenu-icon {
|
||||
margin-left: auto;
|
||||
transition: transform 0.2s;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem.p-menuitem-active > .p-menuitem-link > .p-submenu-icon {
|
||||
transform: rotate(-180deg);
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-submenu-list {
|
||||
width: 100%;
|
||||
position: static;
|
||||
box-shadow: none;
|
||||
border: 0 none;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-submenu-list .p-submenu-icon {
|
||||
transition: transform 0.2s;
|
||||
transform: rotate(90deg);
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-submenu-list .p-menuitem-active > .p-menuitem-link > .p-submenu-icon {
|
||||
transform: rotate(-90deg);
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-menuitem {
|
||||
width: 100%;
|
||||
position: static;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list ul li a {
|
||||
padding-left: 2.571rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list ul li ul li a {
|
||||
padding-left: 4.285rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list ul li ul li ul li a {
|
||||
padding-left: 5.999rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list ul li ul li ul li ul li a {
|
||||
padding-left: 7.713rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list ul li ul li ul li ul li ul li a {
|
||||
padding-left: 9.427rem;
|
||||
}
|
||||
.p-menubar.p-menubar-mobile-active .p-menubar-root-list {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
top: 100%;
|
||||
left: 0;
|
||||
z-index: 1;
|
||||
}
|
||||
}
|
||||
.p-panelmenu .p-panelmenu-header > a {
|
||||
padding: 0.857rem 1rem;
|
||||
border: 1px solid #7B95A3;
|
||||
|
@ -2877,6 +3006,7 @@
|
|||
color: #666666;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-panelmenu .p-panelmenu-content .p-menuitem .p-menuitem-link .p-menuitem-text {
|
||||
color: #666666;
|
||||
|
@ -3014,6 +3144,7 @@
|
|||
color: #666666;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-tieredmenu .p-menuitem-link .p-menuitem-text {
|
||||
color: #666666;
|
||||
|
|
|
@ -2518,6 +2518,7 @@
|
|||
color: #495057;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-contextmenu .p-menuitem-link .p-menuitem-text {
|
||||
color: #495057;
|
||||
|
@ -2581,6 +2582,7 @@
|
|||
color: #495057;
|
||||
border-radius: 3px;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-megamenu .p-megamenu-root-list > .p-menuitem > .p-menuitem-link .p-menuitem-text {
|
||||
color: #495057;
|
||||
|
@ -2615,6 +2617,7 @@
|
|||
color: #495057;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-megamenu .p-menuitem-link .p-menuitem-text {
|
||||
color: #495057;
|
||||
|
@ -2693,6 +2696,7 @@
|
|||
color: #495057;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-menu .p-menuitem-link .p-menuitem-text {
|
||||
color: #495057;
|
||||
|
@ -2751,6 +2755,7 @@
|
|||
color: #495057;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-menubar .p-menuitem-link .p-menuitem-text {
|
||||
color: #495057;
|
||||
|
@ -2784,6 +2789,7 @@
|
|||
color: #495057;
|
||||
border-radius: 3px;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link .p-menuitem-text {
|
||||
color: #495057;
|
||||
|
@ -2837,6 +2843,129 @@
|
|||
color: #6c757d;
|
||||
}
|
||||
|
||||
@media screen and (max-width: 960px) {
|
||||
.p-menubar {
|
||||
position: relative;
|
||||
}
|
||||
.p-menubar .p-menubar-button {
|
||||
display: flex;
|
||||
color: #6c757d;
|
||||
background: transparent;
|
||||
border: 1px solid #dee2e6;
|
||||
width: 2.5rem;
|
||||
height: 2.5rem;
|
||||
border-radius: 3px;
|
||||
transition: box-shadow 0.2s;
|
||||
}
|
||||
.p-menubar .p-menubar-button i {
|
||||
font-size: 1.5rem;
|
||||
}
|
||||
.p-menubar .p-menubar-button:focus {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 0.2rem #BBDEFB;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list {
|
||||
position: absolute;
|
||||
display: none;
|
||||
padding: 0.25rem 0;
|
||||
background: #ffffff;
|
||||
border: 0 none;
|
||||
box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.1);
|
||||
width: 100%;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-menu-separator {
|
||||
border-top: 1px solid #dee2e6;
|
||||
margin: 0.25rem 0;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-submenu-icon {
|
||||
font-size: 0.75rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem {
|
||||
width: 100%;
|
||||
position: static;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link {
|
||||
padding: 0.75rem 1rem;
|
||||
color: #495057;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link .p-menuitem-text {
|
||||
color: #495057;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link .p-menuitem-icon {
|
||||
color: #6c757d;
|
||||
margin-right: 0.5rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link .p-submenu-icon {
|
||||
color: #6c757d;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover {
|
||||
background: #e9ecef;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover .p-menuitem-text {
|
||||
color: #495057;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover .p-menuitem-icon {
|
||||
color: #6c757d;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover .p-submenu-icon {
|
||||
color: #6c757d;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:focus {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: inset 0 0 0 0.15rem #BBDEFB;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link > .p-submenu-icon {
|
||||
margin-left: auto;
|
||||
transition: transform 0.2s;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem.p-menuitem-active > .p-menuitem-link > .p-submenu-icon {
|
||||
transform: rotate(-180deg);
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-submenu-list {
|
||||
width: 100%;
|
||||
position: static;
|
||||
box-shadow: none;
|
||||
border: 0 none;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-submenu-list .p-submenu-icon {
|
||||
transition: transform 0.2s;
|
||||
transform: rotate(90deg);
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-submenu-list .p-menuitem-active > .p-menuitem-link > .p-submenu-icon {
|
||||
transform: rotate(-90deg);
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-menuitem {
|
||||
width: 100%;
|
||||
position: static;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list ul li a {
|
||||
padding-left: 2.25rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list ul li ul li a {
|
||||
padding-left: 3.75rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list ul li ul li ul li a {
|
||||
padding-left: 5.25rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list ul li ul li ul li ul li a {
|
||||
padding-left: 6.75rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list ul li ul li ul li ul li ul li a {
|
||||
padding-left: 8.25rem;
|
||||
}
|
||||
.p-menubar.p-menubar-mobile-active .p-menubar-root-list {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
top: 100%;
|
||||
left: 0;
|
||||
z-index: 1;
|
||||
}
|
||||
}
|
||||
.p-panelmenu .p-panelmenu-header > a {
|
||||
padding: 1rem;
|
||||
border: 1px solid #dee2e6;
|
||||
|
@ -2894,6 +3023,7 @@
|
|||
color: #495057;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-panelmenu .p-panelmenu-content .p-menuitem .p-menuitem-link .p-menuitem-text {
|
||||
color: #495057;
|
||||
|
@ -3048,6 +3178,7 @@
|
|||
color: #495057;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-tieredmenu .p-menuitem-link .p-menuitem-text {
|
||||
color: #495057;
|
||||
|
|
|
@ -2518,6 +2518,7 @@
|
|||
color: #495057;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-contextmenu .p-menuitem-link .p-menuitem-text {
|
||||
color: #495057;
|
||||
|
@ -2581,6 +2582,7 @@
|
|||
color: #495057;
|
||||
border-radius: 3px;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-megamenu .p-megamenu-root-list > .p-menuitem > .p-menuitem-link .p-menuitem-text {
|
||||
color: #495057;
|
||||
|
@ -2615,6 +2617,7 @@
|
|||
color: #495057;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-megamenu .p-menuitem-link .p-menuitem-text {
|
||||
color: #495057;
|
||||
|
@ -2693,6 +2696,7 @@
|
|||
color: #495057;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-menu .p-menuitem-link .p-menuitem-text {
|
||||
color: #495057;
|
||||
|
@ -2751,6 +2755,7 @@
|
|||
color: #495057;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-menubar .p-menuitem-link .p-menuitem-text {
|
||||
color: #495057;
|
||||
|
@ -2784,6 +2789,7 @@
|
|||
color: #495057;
|
||||
border-radius: 3px;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link .p-menuitem-text {
|
||||
color: #495057;
|
||||
|
@ -2837,6 +2843,129 @@
|
|||
color: #6c757d;
|
||||
}
|
||||
|
||||
@media screen and (max-width: 960px) {
|
||||
.p-menubar {
|
||||
position: relative;
|
||||
}
|
||||
.p-menubar .p-menubar-button {
|
||||
display: flex;
|
||||
color: #6c757d;
|
||||
background: transparent;
|
||||
border: 1px solid #dee2e6;
|
||||
width: 2.5rem;
|
||||
height: 2.5rem;
|
||||
border-radius: 3px;
|
||||
transition: box-shadow 0.2s;
|
||||
}
|
||||
.p-menubar .p-menubar-button i {
|
||||
font-size: 1.5rem;
|
||||
}
|
||||
.p-menubar .p-menubar-button:focus {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 0.2rem #B2EBF2;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list {
|
||||
position: absolute;
|
||||
display: none;
|
||||
padding: 0.25rem 0;
|
||||
background: #ffffff;
|
||||
border: 0 none;
|
||||
box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.1);
|
||||
width: 100%;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-menu-separator {
|
||||
border-top: 1px solid #dee2e6;
|
||||
margin: 0.25rem 0;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-submenu-icon {
|
||||
font-size: 0.75rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem {
|
||||
width: 100%;
|
||||
position: static;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link {
|
||||
padding: 0.75rem 1rem;
|
||||
color: #495057;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link .p-menuitem-text {
|
||||
color: #495057;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link .p-menuitem-icon {
|
||||
color: #6c757d;
|
||||
margin-right: 0.5rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link .p-submenu-icon {
|
||||
color: #6c757d;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover {
|
||||
background: #e9ecef;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover .p-menuitem-text {
|
||||
color: #495057;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover .p-menuitem-icon {
|
||||
color: #6c757d;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover .p-submenu-icon {
|
||||
color: #6c757d;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:focus {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: inset 0 0 0 0.15rem #B2EBF2;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link > .p-submenu-icon {
|
||||
margin-left: auto;
|
||||
transition: transform 0.2s;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem.p-menuitem-active > .p-menuitem-link > .p-submenu-icon {
|
||||
transform: rotate(-180deg);
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-submenu-list {
|
||||
width: 100%;
|
||||
position: static;
|
||||
box-shadow: none;
|
||||
border: 0 none;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-submenu-list .p-submenu-icon {
|
||||
transition: transform 0.2s;
|
||||
transform: rotate(90deg);
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-submenu-list .p-menuitem-active > .p-menuitem-link > .p-submenu-icon {
|
||||
transform: rotate(-90deg);
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-menuitem {
|
||||
width: 100%;
|
||||
position: static;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list ul li a {
|
||||
padding-left: 2.25rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list ul li ul li a {
|
||||
padding-left: 3.75rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list ul li ul li ul li a {
|
||||
padding-left: 5.25rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list ul li ul li ul li ul li a {
|
||||
padding-left: 6.75rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list ul li ul li ul li ul li ul li a {
|
||||
padding-left: 8.25rem;
|
||||
}
|
||||
.p-menubar.p-menubar-mobile-active .p-menubar-root-list {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
top: 100%;
|
||||
left: 0;
|
||||
z-index: 1;
|
||||
}
|
||||
}
|
||||
.p-panelmenu .p-panelmenu-header > a {
|
||||
padding: 1rem;
|
||||
border: 1px solid #dee2e6;
|
||||
|
@ -2894,6 +3023,7 @@
|
|||
color: #495057;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-panelmenu .p-panelmenu-content .p-menuitem .p-menuitem-link .p-menuitem-text {
|
||||
color: #495057;
|
||||
|
@ -3048,6 +3178,7 @@
|
|||
color: #495057;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-tieredmenu .p-menuitem-link .p-menuitem-text {
|
||||
color: #495057;
|
||||
|
|
|
@ -2518,6 +2518,7 @@
|
|||
color: #495057;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-contextmenu .p-menuitem-link .p-menuitem-text {
|
||||
color: #495057;
|
||||
|
@ -2581,6 +2582,7 @@
|
|||
color: #495057;
|
||||
border-radius: 3px;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-megamenu .p-megamenu-root-list > .p-menuitem > .p-menuitem-link .p-menuitem-text {
|
||||
color: #495057;
|
||||
|
@ -2615,6 +2617,7 @@
|
|||
color: #495057;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-megamenu .p-menuitem-link .p-menuitem-text {
|
||||
color: #495057;
|
||||
|
@ -2693,6 +2696,7 @@
|
|||
color: #495057;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-menu .p-menuitem-link .p-menuitem-text {
|
||||
color: #495057;
|
||||
|
@ -2751,6 +2755,7 @@
|
|||
color: #495057;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-menubar .p-menuitem-link .p-menuitem-text {
|
||||
color: #495057;
|
||||
|
@ -2784,6 +2789,7 @@
|
|||
color: #495057;
|
||||
border-radius: 3px;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link .p-menuitem-text {
|
||||
color: #495057;
|
||||
|
@ -2837,6 +2843,129 @@
|
|||
color: #6c757d;
|
||||
}
|
||||
|
||||
@media screen and (max-width: 960px) {
|
||||
.p-menubar {
|
||||
position: relative;
|
||||
}
|
||||
.p-menubar .p-menubar-button {
|
||||
display: flex;
|
||||
color: #6c757d;
|
||||
background: transparent;
|
||||
border: 1px solid #dee2e6;
|
||||
width: 2.5rem;
|
||||
height: 2.5rem;
|
||||
border-radius: 3px;
|
||||
transition: box-shadow 0.2s;
|
||||
}
|
||||
.p-menubar .p-menubar-button i {
|
||||
font-size: 1.5rem;
|
||||
}
|
||||
.p-menubar .p-menubar-button:focus {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 0.2rem #D1C4E9;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list {
|
||||
position: absolute;
|
||||
display: none;
|
||||
padding: 0.25rem 0;
|
||||
background: #ffffff;
|
||||
border: 0 none;
|
||||
box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.1);
|
||||
width: 100%;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-menu-separator {
|
||||
border-top: 1px solid #dee2e6;
|
||||
margin: 0.25rem 0;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-submenu-icon {
|
||||
font-size: 0.75rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem {
|
||||
width: 100%;
|
||||
position: static;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link {
|
||||
padding: 0.75rem 1rem;
|
||||
color: #495057;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link .p-menuitem-text {
|
||||
color: #495057;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link .p-menuitem-icon {
|
||||
color: #6c757d;
|
||||
margin-right: 0.5rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link .p-submenu-icon {
|
||||
color: #6c757d;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover {
|
||||
background: #e9ecef;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover .p-menuitem-text {
|
||||
color: #495057;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover .p-menuitem-icon {
|
||||
color: #6c757d;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover .p-submenu-icon {
|
||||
color: #6c757d;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:focus {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: inset 0 0 0 0.15rem #D1C4E9;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link > .p-submenu-icon {
|
||||
margin-left: auto;
|
||||
transition: transform 0.2s;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem.p-menuitem-active > .p-menuitem-link > .p-submenu-icon {
|
||||
transform: rotate(-180deg);
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-submenu-list {
|
||||
width: 100%;
|
||||
position: static;
|
||||
box-shadow: none;
|
||||
border: 0 none;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-submenu-list .p-submenu-icon {
|
||||
transition: transform 0.2s;
|
||||
transform: rotate(90deg);
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-submenu-list .p-menuitem-active > .p-menuitem-link > .p-submenu-icon {
|
||||
transform: rotate(-90deg);
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-menuitem {
|
||||
width: 100%;
|
||||
position: static;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list ul li a {
|
||||
padding-left: 2.25rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list ul li ul li a {
|
||||
padding-left: 3.75rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list ul li ul li ul li a {
|
||||
padding-left: 5.25rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list ul li ul li ul li ul li a {
|
||||
padding-left: 6.75rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list ul li ul li ul li ul li ul li a {
|
||||
padding-left: 8.25rem;
|
||||
}
|
||||
.p-menubar.p-menubar-mobile-active .p-menubar-root-list {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
top: 100%;
|
||||
left: 0;
|
||||
z-index: 1;
|
||||
}
|
||||
}
|
||||
.p-panelmenu .p-panelmenu-header > a {
|
||||
padding: 1rem;
|
||||
border: 1px solid #dee2e6;
|
||||
|
@ -2894,6 +3023,7 @@
|
|||
color: #495057;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-panelmenu .p-panelmenu-content .p-menuitem .p-menuitem-link .p-menuitem-text {
|
||||
color: #495057;
|
||||
|
@ -3048,6 +3178,7 @@
|
|||
color: #495057;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-tieredmenu .p-menuitem-link .p-menuitem-text {
|
||||
color: #495057;
|
||||
|
|
|
@ -2518,6 +2518,7 @@
|
|||
color: #495057;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-contextmenu .p-menuitem-link .p-menuitem-text {
|
||||
color: #495057;
|
||||
|
@ -2581,6 +2582,7 @@
|
|||
color: #495057;
|
||||
border-radius: 3px;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-megamenu .p-megamenu-root-list > .p-menuitem > .p-menuitem-link .p-menuitem-text {
|
||||
color: #495057;
|
||||
|
@ -2615,6 +2617,7 @@
|
|||
color: #495057;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-megamenu .p-menuitem-link .p-menuitem-text {
|
||||
color: #495057;
|
||||
|
@ -2693,6 +2696,7 @@
|
|||
color: #495057;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-menu .p-menuitem-link .p-menuitem-text {
|
||||
color: #495057;
|
||||
|
@ -2751,6 +2755,7 @@
|
|||
color: #495057;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-menubar .p-menuitem-link .p-menuitem-text {
|
||||
color: #495057;
|
||||
|
@ -2784,6 +2789,7 @@
|
|||
color: #495057;
|
||||
border-radius: 3px;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link .p-menuitem-text {
|
||||
color: #495057;
|
||||
|
@ -2837,6 +2843,129 @@
|
|||
color: #6c757d;
|
||||
}
|
||||
|
||||
@media screen and (max-width: 960px) {
|
||||
.p-menubar {
|
||||
position: relative;
|
||||
}
|
||||
.p-menubar .p-menubar-button {
|
||||
display: flex;
|
||||
color: #6c757d;
|
||||
background: transparent;
|
||||
border: 1px solid #dee2e6;
|
||||
width: 2.5rem;
|
||||
height: 2.5rem;
|
||||
border-radius: 3px;
|
||||
transition: box-shadow 0.2s;
|
||||
}
|
||||
.p-menubar .p-menubar-button i {
|
||||
font-size: 1.5rem;
|
||||
}
|
||||
.p-menubar .p-menubar-button:focus {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 0.2rem #C8E6C9;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list {
|
||||
position: absolute;
|
||||
display: none;
|
||||
padding: 0.25rem 0;
|
||||
background: #ffffff;
|
||||
border: 0 none;
|
||||
box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.1);
|
||||
width: 100%;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-menu-separator {
|
||||
border-top: 1px solid #dee2e6;
|
||||
margin: 0.25rem 0;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-submenu-icon {
|
||||
font-size: 0.75rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem {
|
||||
width: 100%;
|
||||
position: static;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link {
|
||||
padding: 0.75rem 1rem;
|
||||
color: #495057;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link .p-menuitem-text {
|
||||
color: #495057;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link .p-menuitem-icon {
|
||||
color: #6c757d;
|
||||
margin-right: 0.5rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link .p-submenu-icon {
|
||||
color: #6c757d;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover {
|
||||
background: #e9ecef;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover .p-menuitem-text {
|
||||
color: #495057;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover .p-menuitem-icon {
|
||||
color: #6c757d;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover .p-submenu-icon {
|
||||
color: #6c757d;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:focus {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: inset 0 0 0 0.15rem #C8E6C9;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link > .p-submenu-icon {
|
||||
margin-left: auto;
|
||||
transition: transform 0.2s;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem.p-menuitem-active > .p-menuitem-link > .p-submenu-icon {
|
||||
transform: rotate(-180deg);
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-submenu-list {
|
||||
width: 100%;
|
||||
position: static;
|
||||
box-shadow: none;
|
||||
border: 0 none;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-submenu-list .p-submenu-icon {
|
||||
transition: transform 0.2s;
|
||||
transform: rotate(90deg);
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-submenu-list .p-menuitem-active > .p-menuitem-link > .p-submenu-icon {
|
||||
transform: rotate(-90deg);
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-menuitem {
|
||||
width: 100%;
|
||||
position: static;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list ul li a {
|
||||
padding-left: 2.25rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list ul li ul li a {
|
||||
padding-left: 3.75rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list ul li ul li ul li a {
|
||||
padding-left: 5.25rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list ul li ul li ul li ul li a {
|
||||
padding-left: 6.75rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list ul li ul li ul li ul li ul li a {
|
||||
padding-left: 8.25rem;
|
||||
}
|
||||
.p-menubar.p-menubar-mobile-active .p-menubar-root-list {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
top: 100%;
|
||||
left: 0;
|
||||
z-index: 1;
|
||||
}
|
||||
}
|
||||
.p-panelmenu .p-panelmenu-header > a {
|
||||
padding: 1rem;
|
||||
border: 1px solid #dee2e6;
|
||||
|
@ -2894,6 +3023,7 @@
|
|||
color: #495057;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-panelmenu .p-panelmenu-content .p-menuitem .p-menuitem-link .p-menuitem-text {
|
||||
color: #495057;
|
||||
|
@ -3048,6 +3178,7 @@
|
|||
color: #495057;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-tieredmenu .p-menuitem-link .p-menuitem-text {
|
||||
color: #495057;
|
||||
|
|
|
@ -2518,6 +2518,7 @@
|
|||
color: #495057;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-contextmenu .p-menuitem-link .p-menuitem-text {
|
||||
color: #495057;
|
||||
|
@ -2581,6 +2582,7 @@
|
|||
color: #495057;
|
||||
border-radius: 3px;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-megamenu .p-megamenu-root-list > .p-menuitem > .p-menuitem-link .p-menuitem-text {
|
||||
color: #495057;
|
||||
|
@ -2615,6 +2617,7 @@
|
|||
color: #495057;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-megamenu .p-menuitem-link .p-menuitem-text {
|
||||
color: #495057;
|
||||
|
@ -2693,6 +2696,7 @@
|
|||
color: #495057;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-menu .p-menuitem-link .p-menuitem-text {
|
||||
color: #495057;
|
||||
|
@ -2751,6 +2755,7 @@
|
|||
color: #495057;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-menubar .p-menuitem-link .p-menuitem-text {
|
||||
color: #495057;
|
||||
|
@ -2784,6 +2789,7 @@
|
|||
color: #495057;
|
||||
border-radius: 3px;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link .p-menuitem-text {
|
||||
color: #495057;
|
||||
|
@ -2837,6 +2843,129 @@
|
|||
color: #6c757d;
|
||||
}
|
||||
|
||||
@media screen and (max-width: 960px) {
|
||||
.p-menubar {
|
||||
position: relative;
|
||||
}
|
||||
.p-menubar .p-menubar-button {
|
||||
display: flex;
|
||||
color: #6c757d;
|
||||
background: transparent;
|
||||
border: 1px solid #dee2e6;
|
||||
width: 2.5rem;
|
||||
height: 2.5rem;
|
||||
border-radius: 3px;
|
||||
transition: box-shadow 0.2s;
|
||||
}
|
||||
.p-menubar .p-menubar-button i {
|
||||
font-size: 1.5rem;
|
||||
}
|
||||
.p-menubar .p-menubar-button:focus {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 0.2rem #C5CAE9;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list {
|
||||
position: absolute;
|
||||
display: none;
|
||||
padding: 0.25rem 0;
|
||||
background: #ffffff;
|
||||
border: 0 none;
|
||||
box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.1);
|
||||
width: 100%;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-menu-separator {
|
||||
border-top: 1px solid #dee2e6;
|
||||
margin: 0.25rem 0;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-submenu-icon {
|
||||
font-size: 0.75rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem {
|
||||
width: 100%;
|
||||
position: static;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link {
|
||||
padding: 0.75rem 1rem;
|
||||
color: #495057;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link .p-menuitem-text {
|
||||
color: #495057;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link .p-menuitem-icon {
|
||||
color: #6c757d;
|
||||
margin-right: 0.5rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link .p-submenu-icon {
|
||||
color: #6c757d;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover {
|
||||
background: #e9ecef;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover .p-menuitem-text {
|
||||
color: #495057;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover .p-menuitem-icon {
|
||||
color: #6c757d;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover .p-submenu-icon {
|
||||
color: #6c757d;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:focus {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: inset 0 0 0 0.15rem #C5CAE9;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link > .p-submenu-icon {
|
||||
margin-left: auto;
|
||||
transition: transform 0.2s;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem.p-menuitem-active > .p-menuitem-link > .p-submenu-icon {
|
||||
transform: rotate(-180deg);
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-submenu-list {
|
||||
width: 100%;
|
||||
position: static;
|
||||
box-shadow: none;
|
||||
border: 0 none;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-submenu-list .p-submenu-icon {
|
||||
transition: transform 0.2s;
|
||||
transform: rotate(90deg);
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-submenu-list .p-menuitem-active > .p-menuitem-link > .p-submenu-icon {
|
||||
transform: rotate(-90deg);
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-menuitem {
|
||||
width: 100%;
|
||||
position: static;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list ul li a {
|
||||
padding-left: 2.25rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list ul li ul li a {
|
||||
padding-left: 3.75rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list ul li ul li ul li a {
|
||||
padding-left: 5.25rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list ul li ul li ul li ul li a {
|
||||
padding-left: 6.75rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list ul li ul li ul li ul li ul li a {
|
||||
padding-left: 8.25rem;
|
||||
}
|
||||
.p-menubar.p-menubar-mobile-active .p-menubar-root-list {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
top: 100%;
|
||||
left: 0;
|
||||
z-index: 1;
|
||||
}
|
||||
}
|
||||
.p-panelmenu .p-panelmenu-header > a {
|
||||
padding: 1rem;
|
||||
border: 1px solid #dee2e6;
|
||||
|
@ -2894,6 +3023,7 @@
|
|||
color: #495057;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-panelmenu .p-panelmenu-content .p-menuitem .p-menuitem-link .p-menuitem-text {
|
||||
color: #495057;
|
||||
|
@ -3048,6 +3178,7 @@
|
|||
color: #495057;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-tieredmenu .p-menuitem-link .p-menuitem-text {
|
||||
color: #495057;
|
||||
|
|
|
@ -2518,6 +2518,7 @@
|
|||
color: #495057;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-contextmenu .p-menuitem-link .p-menuitem-text {
|
||||
color: #495057;
|
||||
|
@ -2581,6 +2582,7 @@
|
|||
color: #495057;
|
||||
border-radius: 3px;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-megamenu .p-megamenu-root-list > .p-menuitem > .p-menuitem-link .p-menuitem-text {
|
||||
color: #495057;
|
||||
|
@ -2615,6 +2617,7 @@
|
|||
color: #495057;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-megamenu .p-menuitem-link .p-menuitem-text {
|
||||
color: #495057;
|
||||
|
@ -2693,6 +2696,7 @@
|
|||
color: #495057;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-menu .p-menuitem-link .p-menuitem-text {
|
||||
color: #495057;
|
||||
|
@ -2751,6 +2755,7 @@
|
|||
color: #495057;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-menubar .p-menuitem-link .p-menuitem-text {
|
||||
color: #495057;
|
||||
|
@ -2784,6 +2789,7 @@
|
|||
color: #495057;
|
||||
border-radius: 3px;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link .p-menuitem-text {
|
||||
color: #495057;
|
||||
|
@ -2837,6 +2843,129 @@
|
|||
color: #6c757d;
|
||||
}
|
||||
|
||||
@media screen and (max-width: 960px) {
|
||||
.p-menubar {
|
||||
position: relative;
|
||||
}
|
||||
.p-menubar .p-menubar-button {
|
||||
display: flex;
|
||||
color: #6c757d;
|
||||
background: transparent;
|
||||
border: 1px solid #dee2e6;
|
||||
width: 2.5rem;
|
||||
height: 2.5rem;
|
||||
border-radius: 3px;
|
||||
transition: box-shadow 0.2s;
|
||||
}
|
||||
.p-menubar .p-menubar-button i {
|
||||
font-size: 1.5rem;
|
||||
}
|
||||
.p-menubar .p-menubar-button:focus {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 0.2rem #FFECB3;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list {
|
||||
position: absolute;
|
||||
display: none;
|
||||
padding: 0.25rem 0;
|
||||
background: #ffffff;
|
||||
border: 0 none;
|
||||
box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.1);
|
||||
width: 100%;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-menu-separator {
|
||||
border-top: 1px solid #dee2e6;
|
||||
margin: 0.25rem 0;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-submenu-icon {
|
||||
font-size: 0.75rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem {
|
||||
width: 100%;
|
||||
position: static;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link {
|
||||
padding: 0.75rem 1rem;
|
||||
color: #495057;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link .p-menuitem-text {
|
||||
color: #495057;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link .p-menuitem-icon {
|
||||
color: #6c757d;
|
||||
margin-right: 0.5rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link .p-submenu-icon {
|
||||
color: #6c757d;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover {
|
||||
background: #e9ecef;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover .p-menuitem-text {
|
||||
color: #495057;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover .p-menuitem-icon {
|
||||
color: #6c757d;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover .p-submenu-icon {
|
||||
color: #6c757d;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:focus {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: inset 0 0 0 0.15rem #FFECB3;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link > .p-submenu-icon {
|
||||
margin-left: auto;
|
||||
transition: transform 0.2s;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem.p-menuitem-active > .p-menuitem-link > .p-submenu-icon {
|
||||
transform: rotate(-180deg);
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-submenu-list {
|
||||
width: 100%;
|
||||
position: static;
|
||||
box-shadow: none;
|
||||
border: 0 none;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-submenu-list .p-submenu-icon {
|
||||
transition: transform 0.2s;
|
||||
transform: rotate(90deg);
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-submenu-list .p-menuitem-active > .p-menuitem-link > .p-submenu-icon {
|
||||
transform: rotate(-90deg);
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-menuitem {
|
||||
width: 100%;
|
||||
position: static;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list ul li a {
|
||||
padding-left: 2.25rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list ul li ul li a {
|
||||
padding-left: 3.75rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list ul li ul li ul li a {
|
||||
padding-left: 5.25rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list ul li ul li ul li ul li a {
|
||||
padding-left: 6.75rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list ul li ul li ul li ul li ul li a {
|
||||
padding-left: 8.25rem;
|
||||
}
|
||||
.p-menubar.p-menubar-mobile-active .p-menubar-root-list {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
top: 100%;
|
||||
left: 0;
|
||||
z-index: 1;
|
||||
}
|
||||
}
|
||||
.p-panelmenu .p-panelmenu-header > a {
|
||||
padding: 1rem;
|
||||
border: 1px solid #dee2e6;
|
||||
|
@ -2894,6 +3023,7 @@
|
|||
color: #495057;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-panelmenu .p-panelmenu-content .p-menuitem .p-menuitem-link .p-menuitem-text {
|
||||
color: #495057;
|
||||
|
@ -3048,6 +3178,7 @@
|
|||
color: #495057;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-tieredmenu .p-menuitem-link .p-menuitem-text {
|
||||
color: #495057;
|
||||
|
|
|
@ -2518,6 +2518,7 @@
|
|||
color: #495057;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-contextmenu .p-menuitem-link .p-menuitem-text {
|
||||
color: #495057;
|
||||
|
@ -2581,6 +2582,7 @@
|
|||
color: #495057;
|
||||
border-radius: 3px;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-megamenu .p-megamenu-root-list > .p-menuitem > .p-menuitem-link .p-menuitem-text {
|
||||
color: #495057;
|
||||
|
@ -2615,6 +2617,7 @@
|
|||
color: #495057;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-megamenu .p-menuitem-link .p-menuitem-text {
|
||||
color: #495057;
|
||||
|
@ -2693,6 +2696,7 @@
|
|||
color: #495057;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-menu .p-menuitem-link .p-menuitem-text {
|
||||
color: #495057;
|
||||
|
@ -2751,6 +2755,7 @@
|
|||
color: #495057;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-menubar .p-menuitem-link .p-menuitem-text {
|
||||
color: #495057;
|
||||
|
@ -2784,6 +2789,7 @@
|
|||
color: #495057;
|
||||
border-radius: 3px;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link .p-menuitem-text {
|
||||
color: #495057;
|
||||
|
@ -2837,6 +2843,129 @@
|
|||
color: #6c757d;
|
||||
}
|
||||
|
||||
@media screen and (max-width: 960px) {
|
||||
.p-menubar {
|
||||
position: relative;
|
||||
}
|
||||
.p-menubar .p-menubar-button {
|
||||
display: flex;
|
||||
color: #6c757d;
|
||||
background: transparent;
|
||||
border: 1px solid #dee2e6;
|
||||
width: 2.5rem;
|
||||
height: 2.5rem;
|
||||
border-radius: 3px;
|
||||
transition: box-shadow 0.2s;
|
||||
}
|
||||
.p-menubar .p-menubar-button i {
|
||||
font-size: 1.5rem;
|
||||
}
|
||||
.p-menubar .p-menubar-button:focus {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 0.2rem #E1BEE7;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list {
|
||||
position: absolute;
|
||||
display: none;
|
||||
padding: 0.25rem 0;
|
||||
background: #ffffff;
|
||||
border: 0 none;
|
||||
box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.1);
|
||||
width: 100%;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-menu-separator {
|
||||
border-top: 1px solid #dee2e6;
|
||||
margin: 0.25rem 0;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-submenu-icon {
|
||||
font-size: 0.75rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem {
|
||||
width: 100%;
|
||||
position: static;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link {
|
||||
padding: 0.75rem 1rem;
|
||||
color: #495057;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link .p-menuitem-text {
|
||||
color: #495057;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link .p-menuitem-icon {
|
||||
color: #6c757d;
|
||||
margin-right: 0.5rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link .p-submenu-icon {
|
||||
color: #6c757d;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover {
|
||||
background: #e9ecef;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover .p-menuitem-text {
|
||||
color: #495057;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover .p-menuitem-icon {
|
||||
color: #6c757d;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover .p-submenu-icon {
|
||||
color: #6c757d;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:focus {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: inset 0 0 0 0.15rem #E1BEE7;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link > .p-submenu-icon {
|
||||
margin-left: auto;
|
||||
transition: transform 0.2s;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem.p-menuitem-active > .p-menuitem-link > .p-submenu-icon {
|
||||
transform: rotate(-180deg);
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-submenu-list {
|
||||
width: 100%;
|
||||
position: static;
|
||||
box-shadow: none;
|
||||
border: 0 none;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-submenu-list .p-submenu-icon {
|
||||
transition: transform 0.2s;
|
||||
transform: rotate(90deg);
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-submenu-list .p-menuitem-active > .p-menuitem-link > .p-submenu-icon {
|
||||
transform: rotate(-90deg);
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-menuitem {
|
||||
width: 100%;
|
||||
position: static;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list ul li a {
|
||||
padding-left: 2.25rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list ul li ul li a {
|
||||
padding-left: 3.75rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list ul li ul li ul li a {
|
||||
padding-left: 5.25rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list ul li ul li ul li ul li a {
|
||||
padding-left: 6.75rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list ul li ul li ul li ul li ul li a {
|
||||
padding-left: 8.25rem;
|
||||
}
|
||||
.p-menubar.p-menubar-mobile-active .p-menubar-root-list {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
top: 100%;
|
||||
left: 0;
|
||||
z-index: 1;
|
||||
}
|
||||
}
|
||||
.p-panelmenu .p-panelmenu-header > a {
|
||||
padding: 1rem;
|
||||
border: 1px solid #dee2e6;
|
||||
|
@ -2894,6 +3023,7 @@
|
|||
color: #495057;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-panelmenu .p-panelmenu-content .p-menuitem .p-menuitem-link .p-menuitem-text {
|
||||
color: #495057;
|
||||
|
@ -3048,6 +3178,7 @@
|
|||
color: #495057;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-tieredmenu .p-menuitem-link .p-menuitem-text {
|
||||
color: #495057;
|
||||
|
|
|
@ -2518,6 +2518,7 @@
|
|||
color: #495057;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-contextmenu .p-menuitem-link .p-menuitem-text {
|
||||
color: #495057;
|
||||
|
@ -2581,6 +2582,7 @@
|
|||
color: #495057;
|
||||
border-radius: 3px;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-megamenu .p-megamenu-root-list > .p-menuitem > .p-menuitem-link .p-menuitem-text {
|
||||
color: #495057;
|
||||
|
@ -2615,6 +2617,7 @@
|
|||
color: #495057;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-megamenu .p-menuitem-link .p-menuitem-text {
|
||||
color: #495057;
|
||||
|
@ -2693,6 +2696,7 @@
|
|||
color: #495057;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-menu .p-menuitem-link .p-menuitem-text {
|
||||
color: #495057;
|
||||
|
@ -2751,6 +2755,7 @@
|
|||
color: #495057;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-menubar .p-menuitem-link .p-menuitem-text {
|
||||
color: #495057;
|
||||
|
@ -2784,6 +2789,7 @@
|
|||
color: #495057;
|
||||
border-radius: 3px;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link .p-menuitem-text {
|
||||
color: #495057;
|
||||
|
@ -2837,6 +2843,129 @@
|
|||
color: #6c757d;
|
||||
}
|
||||
|
||||
@media screen and (max-width: 960px) {
|
||||
.p-menubar {
|
||||
position: relative;
|
||||
}
|
||||
.p-menubar .p-menubar-button {
|
||||
display: flex;
|
||||
color: #6c757d;
|
||||
background: transparent;
|
||||
border: 1px solid #dee2e6;
|
||||
width: 2.5rem;
|
||||
height: 2.5rem;
|
||||
border-radius: 3px;
|
||||
transition: box-shadow 0.2s;
|
||||
}
|
||||
.p-menubar .p-menubar-button i {
|
||||
font-size: 1.5rem;
|
||||
}
|
||||
.p-menubar .p-menubar-button:focus {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 0.2rem #B2DFDB;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list {
|
||||
position: absolute;
|
||||
display: none;
|
||||
padding: 0.25rem 0;
|
||||
background: #ffffff;
|
||||
border: 0 none;
|
||||
box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.1);
|
||||
width: 100%;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-menu-separator {
|
||||
border-top: 1px solid #dee2e6;
|
||||
margin: 0.25rem 0;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-submenu-icon {
|
||||
font-size: 0.75rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem {
|
||||
width: 100%;
|
||||
position: static;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link {
|
||||
padding: 0.75rem 1rem;
|
||||
color: #495057;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link .p-menuitem-text {
|
||||
color: #495057;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link .p-menuitem-icon {
|
||||
color: #6c757d;
|
||||
margin-right: 0.5rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link .p-submenu-icon {
|
||||
color: #6c757d;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover {
|
||||
background: #e9ecef;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover .p-menuitem-text {
|
||||
color: #495057;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover .p-menuitem-icon {
|
||||
color: #6c757d;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover .p-submenu-icon {
|
||||
color: #6c757d;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:focus {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: inset 0 0 0 0.15rem #B2DFDB;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link > .p-submenu-icon {
|
||||
margin-left: auto;
|
||||
transition: transform 0.2s;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem.p-menuitem-active > .p-menuitem-link > .p-submenu-icon {
|
||||
transform: rotate(-180deg);
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-submenu-list {
|
||||
width: 100%;
|
||||
position: static;
|
||||
box-shadow: none;
|
||||
border: 0 none;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-submenu-list .p-submenu-icon {
|
||||
transition: transform 0.2s;
|
||||
transform: rotate(90deg);
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-submenu-list .p-menuitem-active > .p-menuitem-link > .p-submenu-icon {
|
||||
transform: rotate(-90deg);
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-menuitem {
|
||||
width: 100%;
|
||||
position: static;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list ul li a {
|
||||
padding-left: 2.25rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list ul li ul li a {
|
||||
padding-left: 3.75rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list ul li ul li ul li a {
|
||||
padding-left: 5.25rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list ul li ul li ul li ul li a {
|
||||
padding-left: 6.75rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list ul li ul li ul li ul li ul li a {
|
||||
padding-left: 8.25rem;
|
||||
}
|
||||
.p-menubar.p-menubar-mobile-active .p-menubar-root-list {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
top: 100%;
|
||||
left: 0;
|
||||
z-index: 1;
|
||||
}
|
||||
}
|
||||
.p-panelmenu .p-panelmenu-header > a {
|
||||
padding: 1rem;
|
||||
border: 1px solid #dee2e6;
|
||||
|
@ -2894,6 +3023,7 @@
|
|||
color: #495057;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-panelmenu .p-panelmenu-content .p-menuitem .p-menuitem-link .p-menuitem-text {
|
||||
color: #495057;
|
||||
|
@ -3048,6 +3178,7 @@
|
|||
color: #495057;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-tieredmenu .p-menuitem-link .p-menuitem-text {
|
||||
color: #495057;
|
||||
|
|
|
@ -2518,6 +2518,7 @@
|
|||
color: #ebedef;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-contextmenu .p-menuitem-link .p-menuitem-text {
|
||||
color: #ebedef;
|
||||
|
@ -2581,6 +2582,7 @@
|
|||
color: #ebedef;
|
||||
border-radius: 3px;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-megamenu .p-megamenu-root-list > .p-menuitem > .p-menuitem-link .p-menuitem-text {
|
||||
color: #ebedef;
|
||||
|
@ -2615,6 +2617,7 @@
|
|||
color: #ebedef;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-megamenu .p-menuitem-link .p-menuitem-text {
|
||||
color: #ebedef;
|
||||
|
@ -2693,6 +2696,7 @@
|
|||
color: #ebedef;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-menu .p-menuitem-link .p-menuitem-text {
|
||||
color: #ebedef;
|
||||
|
@ -2751,6 +2755,7 @@
|
|||
color: #ebedef;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-menubar .p-menuitem-link .p-menuitem-text {
|
||||
color: #ebedef;
|
||||
|
@ -2784,6 +2789,7 @@
|
|||
color: #ebedef;
|
||||
border-radius: 3px;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link .p-menuitem-text {
|
||||
color: #ebedef;
|
||||
|
@ -2837,6 +2843,129 @@
|
|||
color: #ebedef;
|
||||
}
|
||||
|
||||
@media screen and (max-width: 960px) {
|
||||
.p-menubar {
|
||||
position: relative;
|
||||
}
|
||||
.p-menubar .p-menubar-button {
|
||||
display: flex;
|
||||
color: #aeb6bf;
|
||||
background: transparent;
|
||||
border: 1px solid rgba(255, 255, 255, 0.1);
|
||||
width: 2.5rem;
|
||||
height: 2.5rem;
|
||||
border-radius: 3px;
|
||||
transition: box-shadow 0.2s;
|
||||
}
|
||||
.p-menubar .p-menubar-button i {
|
||||
font-size: 1.5rem;
|
||||
}
|
||||
.p-menubar .p-menubar-button:focus {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 0.1rem #BBDEFB;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list {
|
||||
position: absolute;
|
||||
display: none;
|
||||
padding: 0.25rem 0;
|
||||
background: #283747;
|
||||
border: 1px solid #2C3E50;
|
||||
box-shadow: none;
|
||||
width: 100%;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-menu-separator {
|
||||
border-top: 1px solid rgba(255, 255, 255, 0.1);
|
||||
margin: 0.25rem 0;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-submenu-icon {
|
||||
font-size: 0.75rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem {
|
||||
width: 100%;
|
||||
position: static;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link {
|
||||
padding: 0.75rem 1rem;
|
||||
color: #ebedef;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link .p-menuitem-text {
|
||||
color: #ebedef;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link .p-menuitem-icon {
|
||||
color: #aeb6bf;
|
||||
margin-right: 0.5rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link .p-submenu-icon {
|
||||
color: #aeb6bf;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover {
|
||||
background: rgba(255, 255, 255, 0.1);
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover .p-menuitem-text {
|
||||
color: #ebedef;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover .p-menuitem-icon {
|
||||
color: #ebedef;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover .p-submenu-icon {
|
||||
color: #ebedef;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:focus {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: inset 0 0 0 0.15rem #BBDEFB;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link > .p-submenu-icon {
|
||||
margin-left: auto;
|
||||
transition: transform 0.2s;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem.p-menuitem-active > .p-menuitem-link > .p-submenu-icon {
|
||||
transform: rotate(-180deg);
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-submenu-list {
|
||||
width: 100%;
|
||||
position: static;
|
||||
box-shadow: none;
|
||||
border: 0 none;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-submenu-list .p-submenu-icon {
|
||||
transition: transform 0.2s;
|
||||
transform: rotate(90deg);
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-submenu-list .p-menuitem-active > .p-menuitem-link > .p-submenu-icon {
|
||||
transform: rotate(-90deg);
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-menuitem {
|
||||
width: 100%;
|
||||
position: static;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list ul li a {
|
||||
padding-left: 2.25rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list ul li ul li a {
|
||||
padding-left: 3.75rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list ul li ul li ul li a {
|
||||
padding-left: 5.25rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list ul li ul li ul li ul li a {
|
||||
padding-left: 6.75rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list ul li ul li ul li ul li ul li a {
|
||||
padding-left: 8.25rem;
|
||||
}
|
||||
.p-menubar.p-menubar-mobile-active .p-menubar-root-list {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
top: 100%;
|
||||
left: 0;
|
||||
z-index: 1;
|
||||
}
|
||||
}
|
||||
.p-panelmenu .p-panelmenu-header > a {
|
||||
padding: 1rem;
|
||||
border: 1px solid #2C3E50;
|
||||
|
@ -2894,6 +3023,7 @@
|
|||
color: #ebedef;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-panelmenu .p-panelmenu-content .p-menuitem .p-menuitem-link .p-menuitem-text {
|
||||
color: #ebedef;
|
||||
|
@ -3048,6 +3178,7 @@
|
|||
color: #ebedef;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-tieredmenu .p-menuitem-link .p-menuitem-text {
|
||||
color: #ebedef;
|
||||
|
|
|
@ -2518,6 +2518,7 @@
|
|||
color: #ebedef;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-contextmenu .p-menuitem-link .p-menuitem-text {
|
||||
color: #ebedef;
|
||||
|
@ -2581,6 +2582,7 @@
|
|||
color: #ebedef;
|
||||
border-radius: 3px;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-megamenu .p-megamenu-root-list > .p-menuitem > .p-menuitem-link .p-menuitem-text {
|
||||
color: #ebedef;
|
||||
|
@ -2615,6 +2617,7 @@
|
|||
color: #ebedef;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-megamenu .p-menuitem-link .p-menuitem-text {
|
||||
color: #ebedef;
|
||||
|
@ -2693,6 +2696,7 @@
|
|||
color: #ebedef;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-menu .p-menuitem-link .p-menuitem-text {
|
||||
color: #ebedef;
|
||||
|
@ -2751,6 +2755,7 @@
|
|||
color: #ebedef;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-menubar .p-menuitem-link .p-menuitem-text {
|
||||
color: #ebedef;
|
||||
|
@ -2784,6 +2789,7 @@
|
|||
color: #ebedef;
|
||||
border-radius: 3px;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link .p-menuitem-text {
|
||||
color: #ebedef;
|
||||
|
@ -2837,6 +2843,129 @@
|
|||
color: #ebedef;
|
||||
}
|
||||
|
||||
@media screen and (max-width: 960px) {
|
||||
.p-menubar {
|
||||
position: relative;
|
||||
}
|
||||
.p-menubar .p-menubar-button {
|
||||
display: flex;
|
||||
color: #aeb6bf;
|
||||
background: transparent;
|
||||
border: 1px solid rgba(255, 255, 255, 0.1);
|
||||
width: 2.5rem;
|
||||
height: 2.5rem;
|
||||
border-radius: 3px;
|
||||
transition: box-shadow 0.2s;
|
||||
}
|
||||
.p-menubar .p-menubar-button i {
|
||||
font-size: 1.5rem;
|
||||
}
|
||||
.p-menubar .p-menubar-button:focus {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 0.1rem #B2EBF2;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list {
|
||||
position: absolute;
|
||||
display: none;
|
||||
padding: 0.25rem 0;
|
||||
background: #283747;
|
||||
border: 1px solid #2C3E50;
|
||||
box-shadow: none;
|
||||
width: 100%;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-menu-separator {
|
||||
border-top: 1px solid rgba(255, 255, 255, 0.1);
|
||||
margin: 0.25rem 0;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-submenu-icon {
|
||||
font-size: 0.75rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem {
|
||||
width: 100%;
|
||||
position: static;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link {
|
||||
padding: 0.75rem 1rem;
|
||||
color: #ebedef;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link .p-menuitem-text {
|
||||
color: #ebedef;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link .p-menuitem-icon {
|
||||
color: #aeb6bf;
|
||||
margin-right: 0.5rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link .p-submenu-icon {
|
||||
color: #aeb6bf;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover {
|
||||
background: rgba(255, 255, 255, 0.1);
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover .p-menuitem-text {
|
||||
color: #ebedef;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover .p-menuitem-icon {
|
||||
color: #ebedef;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover .p-submenu-icon {
|
||||
color: #ebedef;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:focus {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: inset 0 0 0 0.15rem #B2EBF2;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link > .p-submenu-icon {
|
||||
margin-left: auto;
|
||||
transition: transform 0.2s;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem.p-menuitem-active > .p-menuitem-link > .p-submenu-icon {
|
||||
transform: rotate(-180deg);
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-submenu-list {
|
||||
width: 100%;
|
||||
position: static;
|
||||
box-shadow: none;
|
||||
border: 0 none;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-submenu-list .p-submenu-icon {
|
||||
transition: transform 0.2s;
|
||||
transform: rotate(90deg);
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-submenu-list .p-menuitem-active > .p-menuitem-link > .p-submenu-icon {
|
||||
transform: rotate(-90deg);
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-menuitem {
|
||||
width: 100%;
|
||||
position: static;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list ul li a {
|
||||
padding-left: 2.25rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list ul li ul li a {
|
||||
padding-left: 3.75rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list ul li ul li ul li a {
|
||||
padding-left: 5.25rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list ul li ul li ul li ul li a {
|
||||
padding-left: 6.75rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list ul li ul li ul li ul li ul li a {
|
||||
padding-left: 8.25rem;
|
||||
}
|
||||
.p-menubar.p-menubar-mobile-active .p-menubar-root-list {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
top: 100%;
|
||||
left: 0;
|
||||
z-index: 1;
|
||||
}
|
||||
}
|
||||
.p-panelmenu .p-panelmenu-header > a {
|
||||
padding: 1rem;
|
||||
border: 1px solid #2C3E50;
|
||||
|
@ -2894,6 +3023,7 @@
|
|||
color: #ebedef;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-panelmenu .p-panelmenu-content .p-menuitem .p-menuitem-link .p-menuitem-text {
|
||||
color: #ebedef;
|
||||
|
@ -3048,6 +3178,7 @@
|
|||
color: #ebedef;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-tieredmenu .p-menuitem-link .p-menuitem-text {
|
||||
color: #ebedef;
|
||||
|
|
|
@ -2518,6 +2518,7 @@
|
|||
color: #ebedef;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-contextmenu .p-menuitem-link .p-menuitem-text {
|
||||
color: #ebedef;
|
||||
|
@ -2581,6 +2582,7 @@
|
|||
color: #ebedef;
|
||||
border-radius: 3px;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-megamenu .p-megamenu-root-list > .p-menuitem > .p-menuitem-link .p-menuitem-text {
|
||||
color: #ebedef;
|
||||
|
@ -2615,6 +2617,7 @@
|
|||
color: #ebedef;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-megamenu .p-menuitem-link .p-menuitem-text {
|
||||
color: #ebedef;
|
||||
|
@ -2693,6 +2696,7 @@
|
|||
color: #ebedef;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-menu .p-menuitem-link .p-menuitem-text {
|
||||
color: #ebedef;
|
||||
|
@ -2751,6 +2755,7 @@
|
|||
color: #ebedef;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-menubar .p-menuitem-link .p-menuitem-text {
|
||||
color: #ebedef;
|
||||
|
@ -2784,6 +2789,7 @@
|
|||
color: #ebedef;
|
||||
border-radius: 3px;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link .p-menuitem-text {
|
||||
color: #ebedef;
|
||||
|
@ -2837,6 +2843,129 @@
|
|||
color: #ebedef;
|
||||
}
|
||||
|
||||
@media screen and (max-width: 960px) {
|
||||
.p-menubar {
|
||||
position: relative;
|
||||
}
|
||||
.p-menubar .p-menubar-button {
|
||||
display: flex;
|
||||
color: #aeb6bf;
|
||||
background: transparent;
|
||||
border: 1px solid rgba(255, 255, 255, 0.1);
|
||||
width: 2.5rem;
|
||||
height: 2.5rem;
|
||||
border-radius: 3px;
|
||||
transition: box-shadow 0.2s;
|
||||
}
|
||||
.p-menubar .p-menubar-button i {
|
||||
font-size: 1.5rem;
|
||||
}
|
||||
.p-menubar .p-menubar-button:focus {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 0.1rem #D1C4E9;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list {
|
||||
position: absolute;
|
||||
display: none;
|
||||
padding: 0.25rem 0;
|
||||
background: #283747;
|
||||
border: 1px solid #2C3E50;
|
||||
box-shadow: none;
|
||||
width: 100%;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-menu-separator {
|
||||
border-top: 1px solid rgba(255, 255, 255, 0.1);
|
||||
margin: 0.25rem 0;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-submenu-icon {
|
||||
font-size: 0.75rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem {
|
||||
width: 100%;
|
||||
position: static;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link {
|
||||
padding: 0.75rem 1rem;
|
||||
color: #ebedef;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link .p-menuitem-text {
|
||||
color: #ebedef;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link .p-menuitem-icon {
|
||||
color: #aeb6bf;
|
||||
margin-right: 0.5rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link .p-submenu-icon {
|
||||
color: #aeb6bf;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover {
|
||||
background: rgba(255, 255, 255, 0.1);
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover .p-menuitem-text {
|
||||
color: #ebedef;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover .p-menuitem-icon {
|
||||
color: #ebedef;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover .p-submenu-icon {
|
||||
color: #ebedef;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:focus {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: inset 0 0 0 0.15rem #D1C4E9;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link > .p-submenu-icon {
|
||||
margin-left: auto;
|
||||
transition: transform 0.2s;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem.p-menuitem-active > .p-menuitem-link > .p-submenu-icon {
|
||||
transform: rotate(-180deg);
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-submenu-list {
|
||||
width: 100%;
|
||||
position: static;
|
||||
box-shadow: none;
|
||||
border: 0 none;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-submenu-list .p-submenu-icon {
|
||||
transition: transform 0.2s;
|
||||
transform: rotate(90deg);
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-submenu-list .p-menuitem-active > .p-menuitem-link > .p-submenu-icon {
|
||||
transform: rotate(-90deg);
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-menuitem {
|
||||
width: 100%;
|
||||
position: static;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list ul li a {
|
||||
padding-left: 2.25rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list ul li ul li a {
|
||||
padding-left: 3.75rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list ul li ul li ul li a {
|
||||
padding-left: 5.25rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list ul li ul li ul li ul li a {
|
||||
padding-left: 6.75rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list ul li ul li ul li ul li ul li a {
|
||||
padding-left: 8.25rem;
|
||||
}
|
||||
.p-menubar.p-menubar-mobile-active .p-menubar-root-list {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
top: 100%;
|
||||
left: 0;
|
||||
z-index: 1;
|
||||
}
|
||||
}
|
||||
.p-panelmenu .p-panelmenu-header > a {
|
||||
padding: 1rem;
|
||||
border: 1px solid #2C3E50;
|
||||
|
@ -2894,6 +3023,7 @@
|
|||
color: #ebedef;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-panelmenu .p-panelmenu-content .p-menuitem .p-menuitem-link .p-menuitem-text {
|
||||
color: #ebedef;
|
||||
|
@ -3048,6 +3178,7 @@
|
|||
color: #ebedef;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-tieredmenu .p-menuitem-link .p-menuitem-text {
|
||||
color: #ebedef;
|
||||
|
|
|
@ -2518,6 +2518,7 @@
|
|||
color: #ebedef;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-contextmenu .p-menuitem-link .p-menuitem-text {
|
||||
color: #ebedef;
|
||||
|
@ -2581,6 +2582,7 @@
|
|||
color: #ebedef;
|
||||
border-radius: 3px;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-megamenu .p-megamenu-root-list > .p-menuitem > .p-menuitem-link .p-menuitem-text {
|
||||
color: #ebedef;
|
||||
|
@ -2615,6 +2617,7 @@
|
|||
color: #ebedef;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-megamenu .p-menuitem-link .p-menuitem-text {
|
||||
color: #ebedef;
|
||||
|
@ -2693,6 +2696,7 @@
|
|||
color: #ebedef;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-menu .p-menuitem-link .p-menuitem-text {
|
||||
color: #ebedef;
|
||||
|
@ -2751,6 +2755,7 @@
|
|||
color: #ebedef;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-menubar .p-menuitem-link .p-menuitem-text {
|
||||
color: #ebedef;
|
||||
|
@ -2784,6 +2789,7 @@
|
|||
color: #ebedef;
|
||||
border-radius: 3px;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link .p-menuitem-text {
|
||||
color: #ebedef;
|
||||
|
@ -2837,6 +2843,129 @@
|
|||
color: #ebedef;
|
||||
}
|
||||
|
||||
@media screen and (max-width: 960px) {
|
||||
.p-menubar {
|
||||
position: relative;
|
||||
}
|
||||
.p-menubar .p-menubar-button {
|
||||
display: flex;
|
||||
color: #aeb6bf;
|
||||
background: transparent;
|
||||
border: 1px solid rgba(255, 255, 255, 0.1);
|
||||
width: 2.5rem;
|
||||
height: 2.5rem;
|
||||
border-radius: 3px;
|
||||
transition: box-shadow 0.2s;
|
||||
}
|
||||
.p-menubar .p-menubar-button i {
|
||||
font-size: 1.5rem;
|
||||
}
|
||||
.p-menubar .p-menubar-button:focus {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 0.1rem #C8E6C9;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list {
|
||||
position: absolute;
|
||||
display: none;
|
||||
padding: 0.25rem 0;
|
||||
background: #283747;
|
||||
border: 1px solid #2C3E50;
|
||||
box-shadow: none;
|
||||
width: 100%;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-menu-separator {
|
||||
border-top: 1px solid rgba(255, 255, 255, 0.1);
|
||||
margin: 0.25rem 0;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-submenu-icon {
|
||||
font-size: 0.75rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem {
|
||||
width: 100%;
|
||||
position: static;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link {
|
||||
padding: 0.75rem 1rem;
|
||||
color: #ebedef;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link .p-menuitem-text {
|
||||
color: #ebedef;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link .p-menuitem-icon {
|
||||
color: #aeb6bf;
|
||||
margin-right: 0.5rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link .p-submenu-icon {
|
||||
color: #aeb6bf;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover {
|
||||
background: rgba(255, 255, 255, 0.1);
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover .p-menuitem-text {
|
||||
color: #ebedef;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover .p-menuitem-icon {
|
||||
color: #ebedef;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover .p-submenu-icon {
|
||||
color: #ebedef;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:focus {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: inset 0 0 0 0.15rem #C8E6C9;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link > .p-submenu-icon {
|
||||
margin-left: auto;
|
||||
transition: transform 0.2s;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem.p-menuitem-active > .p-menuitem-link > .p-submenu-icon {
|
||||
transform: rotate(-180deg);
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-submenu-list {
|
||||
width: 100%;
|
||||
position: static;
|
||||
box-shadow: none;
|
||||
border: 0 none;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-submenu-list .p-submenu-icon {
|
||||
transition: transform 0.2s;
|
||||
transform: rotate(90deg);
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-submenu-list .p-menuitem-active > .p-menuitem-link > .p-submenu-icon {
|
||||
transform: rotate(-90deg);
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-menuitem {
|
||||
width: 100%;
|
||||
position: static;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list ul li a {
|
||||
padding-left: 2.25rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list ul li ul li a {
|
||||
padding-left: 3.75rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list ul li ul li ul li a {
|
||||
padding-left: 5.25rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list ul li ul li ul li ul li a {
|
||||
padding-left: 6.75rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list ul li ul li ul li ul li ul li a {
|
||||
padding-left: 8.25rem;
|
||||
}
|
||||
.p-menubar.p-menubar-mobile-active .p-menubar-root-list {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
top: 100%;
|
||||
left: 0;
|
||||
z-index: 1;
|
||||
}
|
||||
}
|
||||
.p-panelmenu .p-panelmenu-header > a {
|
||||
padding: 1rem;
|
||||
border: 1px solid #2C3E50;
|
||||
|
@ -2894,6 +3023,7 @@
|
|||
color: #ebedef;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-panelmenu .p-panelmenu-content .p-menuitem .p-menuitem-link .p-menuitem-text {
|
||||
color: #ebedef;
|
||||
|
@ -3048,6 +3178,7 @@
|
|||
color: #ebedef;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-tieredmenu .p-menuitem-link .p-menuitem-text {
|
||||
color: #ebedef;
|
||||
|
|
|
@ -2518,6 +2518,7 @@
|
|||
color: #ebedef;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-contextmenu .p-menuitem-link .p-menuitem-text {
|
||||
color: #ebedef;
|
||||
|
@ -2581,6 +2582,7 @@
|
|||
color: #ebedef;
|
||||
border-radius: 3px;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-megamenu .p-megamenu-root-list > .p-menuitem > .p-menuitem-link .p-menuitem-text {
|
||||
color: #ebedef;
|
||||
|
@ -2615,6 +2617,7 @@
|
|||
color: #ebedef;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-megamenu .p-menuitem-link .p-menuitem-text {
|
||||
color: #ebedef;
|
||||
|
@ -2693,6 +2696,7 @@
|
|||
color: #ebedef;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-menu .p-menuitem-link .p-menuitem-text {
|
||||
color: #ebedef;
|
||||
|
@ -2751,6 +2755,7 @@
|
|||
color: #ebedef;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-menubar .p-menuitem-link .p-menuitem-text {
|
||||
color: #ebedef;
|
||||
|
@ -2784,6 +2789,7 @@
|
|||
color: #ebedef;
|
||||
border-radius: 3px;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link .p-menuitem-text {
|
||||
color: #ebedef;
|
||||
|
@ -2837,6 +2843,129 @@
|
|||
color: #ebedef;
|
||||
}
|
||||
|
||||
@media screen and (max-width: 960px) {
|
||||
.p-menubar {
|
||||
position: relative;
|
||||
}
|
||||
.p-menubar .p-menubar-button {
|
||||
display: flex;
|
||||
color: #aeb6bf;
|
||||
background: transparent;
|
||||
border: 1px solid rgba(255, 255, 255, 0.1);
|
||||
width: 2.5rem;
|
||||
height: 2.5rem;
|
||||
border-radius: 3px;
|
||||
transition: box-shadow 0.2s;
|
||||
}
|
||||
.p-menubar .p-menubar-button i {
|
||||
font-size: 1.5rem;
|
||||
}
|
||||
.p-menubar .p-menubar-button:focus {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 0.1rem #C5CAE9;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list {
|
||||
position: absolute;
|
||||
display: none;
|
||||
padding: 0.25rem 0;
|
||||
background: #283747;
|
||||
border: 1px solid #2C3E50;
|
||||
box-shadow: none;
|
||||
width: 100%;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-menu-separator {
|
||||
border-top: 1px solid rgba(255, 255, 255, 0.1);
|
||||
margin: 0.25rem 0;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-submenu-icon {
|
||||
font-size: 0.75rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem {
|
||||
width: 100%;
|
||||
position: static;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link {
|
||||
padding: 0.75rem 1rem;
|
||||
color: #ebedef;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link .p-menuitem-text {
|
||||
color: #ebedef;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link .p-menuitem-icon {
|
||||
color: #aeb6bf;
|
||||
margin-right: 0.5rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link .p-submenu-icon {
|
||||
color: #aeb6bf;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover {
|
||||
background: rgba(255, 255, 255, 0.1);
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover .p-menuitem-text {
|
||||
color: #ebedef;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover .p-menuitem-icon {
|
||||
color: #ebedef;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover .p-submenu-icon {
|
||||
color: #ebedef;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:focus {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: inset 0 0 0 0.15rem #C5CAE9;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link > .p-submenu-icon {
|
||||
margin-left: auto;
|
||||
transition: transform 0.2s;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem.p-menuitem-active > .p-menuitem-link > .p-submenu-icon {
|
||||
transform: rotate(-180deg);
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-submenu-list {
|
||||
width: 100%;
|
||||
position: static;
|
||||
box-shadow: none;
|
||||
border: 0 none;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-submenu-list .p-submenu-icon {
|
||||
transition: transform 0.2s;
|
||||
transform: rotate(90deg);
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-submenu-list .p-menuitem-active > .p-menuitem-link > .p-submenu-icon {
|
||||
transform: rotate(-90deg);
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-menuitem {
|
||||
width: 100%;
|
||||
position: static;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list ul li a {
|
||||
padding-left: 2.25rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list ul li ul li a {
|
||||
padding-left: 3.75rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list ul li ul li ul li a {
|
||||
padding-left: 5.25rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list ul li ul li ul li ul li a {
|
||||
padding-left: 6.75rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list ul li ul li ul li ul li ul li a {
|
||||
padding-left: 8.25rem;
|
||||
}
|
||||
.p-menubar.p-menubar-mobile-active .p-menubar-root-list {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
top: 100%;
|
||||
left: 0;
|
||||
z-index: 1;
|
||||
}
|
||||
}
|
||||
.p-panelmenu .p-panelmenu-header > a {
|
||||
padding: 1rem;
|
||||
border: 1px solid #2C3E50;
|
||||
|
@ -2894,6 +3023,7 @@
|
|||
color: #ebedef;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-panelmenu .p-panelmenu-content .p-menuitem .p-menuitem-link .p-menuitem-text {
|
||||
color: #ebedef;
|
||||
|
@ -3048,6 +3178,7 @@
|
|||
color: #ebedef;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-tieredmenu .p-menuitem-link .p-menuitem-text {
|
||||
color: #ebedef;
|
||||
|
|
|
@ -2518,6 +2518,7 @@
|
|||
color: #ebedef;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-contextmenu .p-menuitem-link .p-menuitem-text {
|
||||
color: #ebedef;
|
||||
|
@ -2581,6 +2582,7 @@
|
|||
color: #ebedef;
|
||||
border-radius: 3px;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-megamenu .p-megamenu-root-list > .p-menuitem > .p-menuitem-link .p-menuitem-text {
|
||||
color: #ebedef;
|
||||
|
@ -2615,6 +2617,7 @@
|
|||
color: #ebedef;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-megamenu .p-menuitem-link .p-menuitem-text {
|
||||
color: #ebedef;
|
||||
|
@ -2693,6 +2696,7 @@
|
|||
color: #ebedef;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-menu .p-menuitem-link .p-menuitem-text {
|
||||
color: #ebedef;
|
||||
|
@ -2751,6 +2755,7 @@
|
|||
color: #ebedef;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-menubar .p-menuitem-link .p-menuitem-text {
|
||||
color: #ebedef;
|
||||
|
@ -2784,6 +2789,7 @@
|
|||
color: #ebedef;
|
||||
border-radius: 3px;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link .p-menuitem-text {
|
||||
color: #ebedef;
|
||||
|
@ -2837,6 +2843,129 @@
|
|||
color: #ebedef;
|
||||
}
|
||||
|
||||
@media screen and (max-width: 960px) {
|
||||
.p-menubar {
|
||||
position: relative;
|
||||
}
|
||||
.p-menubar .p-menubar-button {
|
||||
display: flex;
|
||||
color: #aeb6bf;
|
||||
background: transparent;
|
||||
border: 1px solid rgba(255, 255, 255, 0.1);
|
||||
width: 2.5rem;
|
||||
height: 2.5rem;
|
||||
border-radius: 3px;
|
||||
transition: box-shadow 0.2s;
|
||||
}
|
||||
.p-menubar .p-menubar-button i {
|
||||
font-size: 1.5rem;
|
||||
}
|
||||
.p-menubar .p-menubar-button:focus {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 0.1rem #FFECB3;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list {
|
||||
position: absolute;
|
||||
display: none;
|
||||
padding: 0.25rem 0;
|
||||
background: #283747;
|
||||
border: 1px solid #2C3E50;
|
||||
box-shadow: none;
|
||||
width: 100%;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-menu-separator {
|
||||
border-top: 1px solid rgba(255, 255, 255, 0.1);
|
||||
margin: 0.25rem 0;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-submenu-icon {
|
||||
font-size: 0.75rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem {
|
||||
width: 100%;
|
||||
position: static;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link {
|
||||
padding: 0.75rem 1rem;
|
||||
color: #ebedef;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link .p-menuitem-text {
|
||||
color: #ebedef;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link .p-menuitem-icon {
|
||||
color: #aeb6bf;
|
||||
margin-right: 0.5rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link .p-submenu-icon {
|
||||
color: #aeb6bf;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover {
|
||||
background: rgba(255, 255, 255, 0.1);
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover .p-menuitem-text {
|
||||
color: #ebedef;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover .p-menuitem-icon {
|
||||
color: #ebedef;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover .p-submenu-icon {
|
||||
color: #ebedef;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:focus {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: inset 0 0 0 0.15rem #FFECB3;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link > .p-submenu-icon {
|
||||
margin-left: auto;
|
||||
transition: transform 0.2s;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem.p-menuitem-active > .p-menuitem-link > .p-submenu-icon {
|
||||
transform: rotate(-180deg);
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-submenu-list {
|
||||
width: 100%;
|
||||
position: static;
|
||||
box-shadow: none;
|
||||
border: 0 none;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-submenu-list .p-submenu-icon {
|
||||
transition: transform 0.2s;
|
||||
transform: rotate(90deg);
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-submenu-list .p-menuitem-active > .p-menuitem-link > .p-submenu-icon {
|
||||
transform: rotate(-90deg);
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-menuitem {
|
||||
width: 100%;
|
||||
position: static;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list ul li a {
|
||||
padding-left: 2.25rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list ul li ul li a {
|
||||
padding-left: 3.75rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list ul li ul li ul li a {
|
||||
padding-left: 5.25rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list ul li ul li ul li ul li a {
|
||||
padding-left: 6.75rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list ul li ul li ul li ul li ul li a {
|
||||
padding-left: 8.25rem;
|
||||
}
|
||||
.p-menubar.p-menubar-mobile-active .p-menubar-root-list {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
top: 100%;
|
||||
left: 0;
|
||||
z-index: 1;
|
||||
}
|
||||
}
|
||||
.p-panelmenu .p-panelmenu-header > a {
|
||||
padding: 1rem;
|
||||
border: 1px solid #2C3E50;
|
||||
|
@ -2894,6 +3023,7 @@
|
|||
color: #ebedef;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-panelmenu .p-panelmenu-content .p-menuitem .p-menuitem-link .p-menuitem-text {
|
||||
color: #ebedef;
|
||||
|
@ -3048,6 +3178,7 @@
|
|||
color: #ebedef;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-tieredmenu .p-menuitem-link .p-menuitem-text {
|
||||
color: #ebedef;
|
||||
|
|
|
@ -2518,6 +2518,7 @@
|
|||
color: #ebedef;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-contextmenu .p-menuitem-link .p-menuitem-text {
|
||||
color: #ebedef;
|
||||
|
@ -2581,6 +2582,7 @@
|
|||
color: #ebedef;
|
||||
border-radius: 3px;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-megamenu .p-megamenu-root-list > .p-menuitem > .p-menuitem-link .p-menuitem-text {
|
||||
color: #ebedef;
|
||||
|
@ -2615,6 +2617,7 @@
|
|||
color: #ebedef;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-megamenu .p-menuitem-link .p-menuitem-text {
|
||||
color: #ebedef;
|
||||
|
@ -2693,6 +2696,7 @@
|
|||
color: #ebedef;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-menu .p-menuitem-link .p-menuitem-text {
|
||||
color: #ebedef;
|
||||
|
@ -2751,6 +2755,7 @@
|
|||
color: #ebedef;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-menubar .p-menuitem-link .p-menuitem-text {
|
||||
color: #ebedef;
|
||||
|
@ -2784,6 +2789,7 @@
|
|||
color: #ebedef;
|
||||
border-radius: 3px;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link .p-menuitem-text {
|
||||
color: #ebedef;
|
||||
|
@ -2837,6 +2843,129 @@
|
|||
color: #ebedef;
|
||||
}
|
||||
|
||||
@media screen and (max-width: 960px) {
|
||||
.p-menubar {
|
||||
position: relative;
|
||||
}
|
||||
.p-menubar .p-menubar-button {
|
||||
display: flex;
|
||||
color: #aeb6bf;
|
||||
background: transparent;
|
||||
border: 1px solid rgba(255, 255, 255, 0.1);
|
||||
width: 2.5rem;
|
||||
height: 2.5rem;
|
||||
border-radius: 3px;
|
||||
transition: box-shadow 0.2s;
|
||||
}
|
||||
.p-menubar .p-menubar-button i {
|
||||
font-size: 1.5rem;
|
||||
}
|
||||
.p-menubar .p-menubar-button:focus {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 0.1rem #E1BEE7;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list {
|
||||
position: absolute;
|
||||
display: none;
|
||||
padding: 0.25rem 0;
|
||||
background: #283747;
|
||||
border: 1px solid #2C3E50;
|
||||
box-shadow: none;
|
||||
width: 100%;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-menu-separator {
|
||||
border-top: 1px solid rgba(255, 255, 255, 0.1);
|
||||
margin: 0.25rem 0;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-submenu-icon {
|
||||
font-size: 0.75rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem {
|
||||
width: 100%;
|
||||
position: static;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link {
|
||||
padding: 0.75rem 1rem;
|
||||
color: #ebedef;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link .p-menuitem-text {
|
||||
color: #ebedef;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link .p-menuitem-icon {
|
||||
color: #aeb6bf;
|
||||
margin-right: 0.5rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link .p-submenu-icon {
|
||||
color: #aeb6bf;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover {
|
||||
background: rgba(255, 255, 255, 0.1);
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover .p-menuitem-text {
|
||||
color: #ebedef;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover .p-menuitem-icon {
|
||||
color: #ebedef;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover .p-submenu-icon {
|
||||
color: #ebedef;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:focus {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: inset 0 0 0 0.15rem #E1BEE7;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link > .p-submenu-icon {
|
||||
margin-left: auto;
|
||||
transition: transform 0.2s;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem.p-menuitem-active > .p-menuitem-link > .p-submenu-icon {
|
||||
transform: rotate(-180deg);
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-submenu-list {
|
||||
width: 100%;
|
||||
position: static;
|
||||
box-shadow: none;
|
||||
border: 0 none;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-submenu-list .p-submenu-icon {
|
||||
transition: transform 0.2s;
|
||||
transform: rotate(90deg);
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-submenu-list .p-menuitem-active > .p-menuitem-link > .p-submenu-icon {
|
||||
transform: rotate(-90deg);
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-menuitem {
|
||||
width: 100%;
|
||||
position: static;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list ul li a {
|
||||
padding-left: 2.25rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list ul li ul li a {
|
||||
padding-left: 3.75rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list ul li ul li ul li a {
|
||||
padding-left: 5.25rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list ul li ul li ul li ul li a {
|
||||
padding-left: 6.75rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list ul li ul li ul li ul li ul li a {
|
||||
padding-left: 8.25rem;
|
||||
}
|
||||
.p-menubar.p-menubar-mobile-active .p-menubar-root-list {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
top: 100%;
|
||||
left: 0;
|
||||
z-index: 1;
|
||||
}
|
||||
}
|
||||
.p-panelmenu .p-panelmenu-header > a {
|
||||
padding: 1rem;
|
||||
border: 1px solid #2C3E50;
|
||||
|
@ -2894,6 +3023,7 @@
|
|||
color: #ebedef;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-panelmenu .p-panelmenu-content .p-menuitem .p-menuitem-link .p-menuitem-text {
|
||||
color: #ebedef;
|
||||
|
@ -3048,6 +3178,7 @@
|
|||
color: #ebedef;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-tieredmenu .p-menuitem-link .p-menuitem-text {
|
||||
color: #ebedef;
|
||||
|
|
|
@ -2518,6 +2518,7 @@
|
|||
color: #ebedef;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-contextmenu .p-menuitem-link .p-menuitem-text {
|
||||
color: #ebedef;
|
||||
|
@ -2581,6 +2582,7 @@
|
|||
color: #ebedef;
|
||||
border-radius: 3px;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-megamenu .p-megamenu-root-list > .p-menuitem > .p-menuitem-link .p-menuitem-text {
|
||||
color: #ebedef;
|
||||
|
@ -2615,6 +2617,7 @@
|
|||
color: #ebedef;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-megamenu .p-menuitem-link .p-menuitem-text {
|
||||
color: #ebedef;
|
||||
|
@ -2693,6 +2696,7 @@
|
|||
color: #ebedef;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-menu .p-menuitem-link .p-menuitem-text {
|
||||
color: #ebedef;
|
||||
|
@ -2751,6 +2755,7 @@
|
|||
color: #ebedef;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-menubar .p-menuitem-link .p-menuitem-text {
|
||||
color: #ebedef;
|
||||
|
@ -2784,6 +2789,7 @@
|
|||
color: #ebedef;
|
||||
border-radius: 3px;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link .p-menuitem-text {
|
||||
color: #ebedef;
|
||||
|
@ -2837,6 +2843,129 @@
|
|||
color: #ebedef;
|
||||
}
|
||||
|
||||
@media screen and (max-width: 960px) {
|
||||
.p-menubar {
|
||||
position: relative;
|
||||
}
|
||||
.p-menubar .p-menubar-button {
|
||||
display: flex;
|
||||
color: #aeb6bf;
|
||||
background: transparent;
|
||||
border: 1px solid rgba(255, 255, 255, 0.1);
|
||||
width: 2.5rem;
|
||||
height: 2.5rem;
|
||||
border-radius: 3px;
|
||||
transition: box-shadow 0.2s;
|
||||
}
|
||||
.p-menubar .p-menubar-button i {
|
||||
font-size: 1.5rem;
|
||||
}
|
||||
.p-menubar .p-menubar-button:focus {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 0.1rem #B2DFDB;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list {
|
||||
position: absolute;
|
||||
display: none;
|
||||
padding: 0.25rem 0;
|
||||
background: #283747;
|
||||
border: 1px solid #2C3E50;
|
||||
box-shadow: none;
|
||||
width: 100%;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-menu-separator {
|
||||
border-top: 1px solid rgba(255, 255, 255, 0.1);
|
||||
margin: 0.25rem 0;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-submenu-icon {
|
||||
font-size: 0.75rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem {
|
||||
width: 100%;
|
||||
position: static;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link {
|
||||
padding: 0.75rem 1rem;
|
||||
color: #ebedef;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link .p-menuitem-text {
|
||||
color: #ebedef;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link .p-menuitem-icon {
|
||||
color: #aeb6bf;
|
||||
margin-right: 0.5rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link .p-submenu-icon {
|
||||
color: #aeb6bf;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover {
|
||||
background: rgba(255, 255, 255, 0.1);
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover .p-menuitem-text {
|
||||
color: #ebedef;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover .p-menuitem-icon {
|
||||
color: #ebedef;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover .p-submenu-icon {
|
||||
color: #ebedef;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:focus {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: inset 0 0 0 0.15rem #B2DFDB;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link > .p-submenu-icon {
|
||||
margin-left: auto;
|
||||
transition: transform 0.2s;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem.p-menuitem-active > .p-menuitem-link > .p-submenu-icon {
|
||||
transform: rotate(-180deg);
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-submenu-list {
|
||||
width: 100%;
|
||||
position: static;
|
||||
box-shadow: none;
|
||||
border: 0 none;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-submenu-list .p-submenu-icon {
|
||||
transition: transform 0.2s;
|
||||
transform: rotate(90deg);
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-submenu-list .p-menuitem-active > .p-menuitem-link > .p-submenu-icon {
|
||||
transform: rotate(-90deg);
|
||||
}
|
||||
.p-menubar .p-menubar-root-list .p-menuitem {
|
||||
width: 100%;
|
||||
position: static;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list ul li a {
|
||||
padding-left: 2.25rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list ul li ul li a {
|
||||
padding-left: 3.75rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list ul li ul li ul li a {
|
||||
padding-left: 5.25rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list ul li ul li ul li ul li a {
|
||||
padding-left: 6.75rem;
|
||||
}
|
||||
.p-menubar .p-menubar-root-list ul li ul li ul li ul li ul li a {
|
||||
padding-left: 8.25rem;
|
||||
}
|
||||
.p-menubar.p-menubar-mobile-active .p-menubar-root-list {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
top: 100%;
|
||||
left: 0;
|
||||
z-index: 1;
|
||||
}
|
||||
}
|
||||
.p-panelmenu .p-panelmenu-header > a {
|
||||
padding: 1rem;
|
||||
border: 1px solid #2C3E50;
|
||||
|
@ -2894,6 +3023,7 @@
|
|||
color: #ebedef;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-panelmenu .p-panelmenu-content .p-menuitem .p-menuitem-link .p-menuitem-text {
|
||||
color: #ebedef;
|
||||
|
@ -3048,6 +3178,7 @@
|
|||
color: #ebedef;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
user-select: none;
|
||||
}
|
||||
.p-tieredmenu .p-menuitem-link .p-menuitem-text {
|
||||
color: #ebedef;
|
||||
|
|
|
@ -1,9 +1,12 @@
|
|||
<template>
|
||||
<div class="p-menubar p-component">
|
||||
<div :class="containerClass">
|
||||
<a ref="menubutton" tabindex="0" class="p-menubar-button" @click="toggle($event)">
|
||||
<i class="pi pi-bars" />
|
||||
</a>
|
||||
<div class="p-menubar-start" v-if="$slots.start">
|
||||
<slot name="start"></slot>
|
||||
</div>
|
||||
<MenubarSub :model="model" :root="true" />
|
||||
<MenubarSub ref="rootmenu" :model="model" :root="true" :mobileActive="mobileActive"/>
|
||||
<div class="p-menubar-custom" v-if="$slots.default">
|
||||
<slot></slot>
|
||||
</div>
|
||||
|
@ -15,6 +18,7 @@
|
|||
|
||||
<script>
|
||||
import MenubarSub from './MenubarSub';
|
||||
import DomHandler from '../utils/DomHandler';
|
||||
|
||||
export default {
|
||||
props: {
|
||||
|
@ -23,6 +27,46 @@ export default {
|
|||
default: null
|
||||
}
|
||||
},
|
||||
outsideClickListener: null,
|
||||
data() {
|
||||
return {
|
||||
mobileActive: false
|
||||
}
|
||||
},
|
||||
beforeDestroy() {
|
||||
this.mobileActive = false;
|
||||
this.unbindOutsideClickListener();
|
||||
},
|
||||
methods: {
|
||||
toggle(event) {
|
||||
this.mobileActive = !this.mobileActive;
|
||||
this.$refs.rootmenu.$el.style.zIndex = String(DomHandler.generateZIndex());
|
||||
this.bindOutsideClickListener();
|
||||
event.preventDefault();
|
||||
},
|
||||
bindOutsideClickListener() {
|
||||
if (!this.outsideClickListener) {
|
||||
this.outsideClickListener = (event) => {
|
||||
if (this.mobileActive && this.$refs.rootmenu.$el !== event.target && !this.$refs.rootmenu.$el.contains(event.target)
|
||||
&& this.$refs.menubutton !== event.target && !this.$refs.menubutton.contains(event.target)) {
|
||||
this.mobileActive = false;
|
||||
}
|
||||
};
|
||||
document.addEventListener('click', this.outsideClickListener);
|
||||
}
|
||||
},
|
||||
unbindOutsideClickListener() {
|
||||
if (this.outsideClickListener) {
|
||||
document.removeEventListener('click', this.outsideClickListener);
|
||||
this.outsideClickListener = null;
|
||||
}
|
||||
},
|
||||
},
|
||||
computed: {
|
||||
containerClass() {
|
||||
return ['p-menubar p-component', {'p-menubar-mobile-active': this.mobileActive}];
|
||||
}
|
||||
},
|
||||
components: {
|
||||
'MenubarSub': MenubarSub
|
||||
}
|
||||
|
@ -32,6 +76,7 @@ export default {
|
|||
<style>
|
||||
.p-menubar {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.p-menubar ul {
|
||||
|
@ -54,17 +99,17 @@ export default {
|
|||
position: relative;
|
||||
}
|
||||
|
||||
.p-menubar .p-menubar-root-list {
|
||||
.p-menubar-root-list {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.p-menubar .p-menubar-root-list > li ul {
|
||||
.p-menubar-root-list > li ul {
|
||||
display: none;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.p-menubar .p-menubar-root-list > .p-menuitem-active > .p-submenu-list {
|
||||
.p-menubar-root-list > .p-menuitem-active > .p-submenu-list {
|
||||
display: block;
|
||||
}
|
||||
|
||||
|
@ -89,4 +134,11 @@ export default {
|
|||
margin-left: auto;
|
||||
align-self: center;
|
||||
}
|
||||
|
||||
.p-menubar-button {
|
||||
display: none;
|
||||
cursor: pointer;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
</style>
|
|
@ -14,7 +14,7 @@
|
|||
<span class="p-menuitem-text">{{item.label}}</span>
|
||||
<span :class="getSubmenuIcon()" v-if="item.items"></span>
|
||||
</a>
|
||||
<sub-menu :model="item.items" v-if="visible(item) && item.items" :key="item.label + '_sub_'"
|
||||
<sub-menu :model="item.items" v-if="visible(item) && item.items" :key="item.label + '_sub_'" :mobileActive="mobileActive"
|
||||
@leaf-click="onLeafClick" @keydown-item="onChildItemKeyDown" :parentActive="item === activeItem" />
|
||||
</li>
|
||||
<li class="p-menu-separator" :style="item.style" v-if="visible(item) && item.separator" :key="'separator' + i" role="separator"></li>
|
||||
|
@ -43,6 +43,10 @@ export default {
|
|||
parentActive: {
|
||||
type: Boolean,
|
||||
default: false
|
||||
},
|
||||
mobileActive: {
|
||||
type: Boolean,
|
||||
default: false
|
||||
}
|
||||
},
|
||||
documentClickListener: null,
|
||||
|
@ -68,7 +72,7 @@ export default {
|
|||
},
|
||||
methods: {
|
||||
onItemMouseEnter(event, item) {
|
||||
if (item.disabled) {
|
||||
if (item.disabled || this.mobileActive) {
|
||||
event.preventDefault();
|
||||
return;
|
||||
}
|
||||
|
@ -99,7 +103,7 @@ export default {
|
|||
});
|
||||
}
|
||||
|
||||
if (this.root && item.items) {
|
||||
if (item.items) {
|
||||
if (this.activeItem && item === this.activeItem)
|
||||
this.activeItem = null;
|
||||
else
|
||||
|
|
|
@ -11,7 +11,6 @@
|
|||
<Menubar :model="items">
|
||||
<template #end>
|
||||
<InputText placeholder="Search" type="text" />
|
||||
<Button label="Logout" icon="pi pi-power-off" :style="{'margin': '0 .5em'}"/>
|
||||
</template>
|
||||
</Menubar>
|
||||
</div>
|
||||
|
|
Loading…
Reference in New Issue