Fixed #4870 - Menu components: width changed as min-width
parent
0fca13d789
commit
8c76a94df0
|
@ -76,6 +76,10 @@ const css = `
|
|||
.p-megamenu-vertical {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.p-megamenu-vertical:not(.p-megamenu-mobile) {
|
||||
display: inline-flex;
|
||||
}
|
||||
|
||||
.p-megamenu-vertical .p-megamenu-root-list {
|
||||
flex-direction: column;
|
||||
|
|
|
@ -272,7 +272,11 @@ export default {
|
|||
},
|
||||
alignOverlay() {
|
||||
DomHandler.absolutePosition(this.container, this.target);
|
||||
this.container.style.minWidth = DomHandler.getOuterWidth(this.target) + 'px';
|
||||
const targetWidth = DomHandler.getOuterWidth(this.target);
|
||||
|
||||
if (targetWidth > DomHandler.getOuterWidth(this.container)) {
|
||||
this.container.style.minWidth = DomHandler.getOuterWidth(this.target) + 'px';
|
||||
}
|
||||
},
|
||||
bindOutsideClickListener() {
|
||||
if (!this.outsideClickListener) {
|
||||
|
|
|
@ -419,8 +419,12 @@ export default {
|
|||
}
|
||||
},
|
||||
alignOverlay() {
|
||||
this.container.style.minWidth = DomHandler.getOuterWidth(this.target) + 'px';
|
||||
DomHandler.absolutePosition(this.container, this.target);
|
||||
const targetWidth = DomHandler.getOuterWidth(this.target);
|
||||
|
||||
if (targetWidth > DomHandler.getOuterWidth(this.container)) {
|
||||
this.container.style.minWidth = DomHandler.getOuterWidth(this.target) + 'px';
|
||||
}
|
||||
},
|
||||
bindOutsideClickListener() {
|
||||
if (!this.outsideClickListener) {
|
||||
|
|
|
@ -4186,7 +4186,7 @@
|
|||
border: 1px solid #383838;
|
||||
box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
|
||||
border-radius: 3px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-contextmenu .p-contextmenu-root-list {
|
||||
outline: 0 none;
|
||||
|
@ -4410,14 +4410,14 @@
|
|||
}
|
||||
.p-megamenu .p-submenu-list {
|
||||
padding: 0.25rem 0;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-megamenu .p-submenu-list .p-menuitem-separator {
|
||||
border-top: 1px solid #383838;
|
||||
margin: 0.25rem 0;
|
||||
}
|
||||
.p-megamenu.p-megamenu-vertical {
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
padding: 0.25rem 0;
|
||||
}
|
||||
.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem > .p-menuitem-content {
|
||||
|
@ -4507,7 +4507,7 @@
|
|||
color: rgba(255, 255, 255, 0.87);
|
||||
border: 1px solid #383838;
|
||||
border-radius: 3px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-menu .p-menuitem > .p-menuitem-content {
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
|
@ -4679,7 +4679,7 @@
|
|||
background: #1e1e1e;
|
||||
border: 1px solid #383838;
|
||||
box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-menubar .p-submenu-list .p-menuitem-separator {
|
||||
border-top: 1px solid #383838;
|
||||
|
@ -4987,7 +4987,7 @@
|
|||
color: rgba(255, 255, 255, 0.87);
|
||||
border: 1px solid #383838;
|
||||
border-radius: 3px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-tieredmenu.p-tieredmenu-overlay {
|
||||
background: #1e1e1e;
|
||||
|
|
|
@ -4186,7 +4186,7 @@
|
|||
border: 1px solid #383838;
|
||||
box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
|
||||
border-radius: 3px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-contextmenu .p-contextmenu-root-list {
|
||||
outline: 0 none;
|
||||
|
@ -4410,14 +4410,14 @@
|
|||
}
|
||||
.p-megamenu .p-submenu-list {
|
||||
padding: 0.25rem 0;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-megamenu .p-submenu-list .p-menuitem-separator {
|
||||
border-top: 1px solid #383838;
|
||||
margin: 0.25rem 0;
|
||||
}
|
||||
.p-megamenu.p-megamenu-vertical {
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
padding: 0.25rem 0;
|
||||
}
|
||||
.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem > .p-menuitem-content {
|
||||
|
@ -4507,7 +4507,7 @@
|
|||
color: rgba(255, 255, 255, 0.87);
|
||||
border: 1px solid #383838;
|
||||
border-radius: 3px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-menu .p-menuitem > .p-menuitem-content {
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
|
@ -4679,7 +4679,7 @@
|
|||
background: #1e1e1e;
|
||||
border: 1px solid #383838;
|
||||
box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-menubar .p-submenu-list .p-menuitem-separator {
|
||||
border-top: 1px solid #383838;
|
||||
|
@ -4987,7 +4987,7 @@
|
|||
color: rgba(255, 255, 255, 0.87);
|
||||
border: 1px solid #383838;
|
||||
border-radius: 3px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-tieredmenu.p-tieredmenu-overlay {
|
||||
background: #1e1e1e;
|
||||
|
|
|
@ -4186,7 +4186,7 @@
|
|||
border: 1px solid #383838;
|
||||
box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
|
||||
border-radius: 3px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-contextmenu .p-contextmenu-root-list {
|
||||
outline: 0 none;
|
||||
|
@ -4410,14 +4410,14 @@
|
|||
}
|
||||
.p-megamenu .p-submenu-list {
|
||||
padding: 0.25rem 0;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-megamenu .p-submenu-list .p-menuitem-separator {
|
||||
border-top: 1px solid #383838;
|
||||
margin: 0.25rem 0;
|
||||
}
|
||||
.p-megamenu.p-megamenu-vertical {
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
padding: 0.25rem 0;
|
||||
}
|
||||
.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem > .p-menuitem-content {
|
||||
|
@ -4507,7 +4507,7 @@
|
|||
color: rgba(255, 255, 255, 0.87);
|
||||
border: 1px solid #383838;
|
||||
border-radius: 3px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-menu .p-menuitem > .p-menuitem-content {
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
|
@ -4679,7 +4679,7 @@
|
|||
background: #1e1e1e;
|
||||
border: 1px solid #383838;
|
||||
box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-menubar .p-submenu-list .p-menuitem-separator {
|
||||
border-top: 1px solid #383838;
|
||||
|
@ -4987,7 +4987,7 @@
|
|||
color: rgba(255, 255, 255, 0.87);
|
||||
border: 1px solid #383838;
|
||||
border-radius: 3px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-tieredmenu.p-tieredmenu-overlay {
|
||||
background: #1e1e1e;
|
||||
|
|
|
@ -4186,7 +4186,7 @@
|
|||
border: 1px solid #383838;
|
||||
box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
|
||||
border-radius: 3px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-contextmenu .p-contextmenu-root-list {
|
||||
outline: 0 none;
|
||||
|
@ -4410,14 +4410,14 @@
|
|||
}
|
||||
.p-megamenu .p-submenu-list {
|
||||
padding: 0.25rem 0;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-megamenu .p-submenu-list .p-menuitem-separator {
|
||||
border-top: 1px solid #383838;
|
||||
margin: 0.25rem 0;
|
||||
}
|
||||
.p-megamenu.p-megamenu-vertical {
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
padding: 0.25rem 0;
|
||||
}
|
||||
.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem > .p-menuitem-content {
|
||||
|
@ -4507,7 +4507,7 @@
|
|||
color: rgba(255, 255, 255, 0.87);
|
||||
border: 1px solid #383838;
|
||||
border-radius: 3px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-menu .p-menuitem > .p-menuitem-content {
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
|
@ -4679,7 +4679,7 @@
|
|||
background: #1e1e1e;
|
||||
border: 1px solid #383838;
|
||||
box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-menubar .p-submenu-list .p-menuitem-separator {
|
||||
border-top: 1px solid #383838;
|
||||
|
@ -4987,7 +4987,7 @@
|
|||
color: rgba(255, 255, 255, 0.87);
|
||||
border: 1px solid #383838;
|
||||
border-radius: 3px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-tieredmenu.p-tieredmenu-overlay {
|
||||
background: #1e1e1e;
|
||||
|
|
|
@ -4198,7 +4198,7 @@
|
|||
border: 1px solid #3f4b5b;
|
||||
box-shadow: none;
|
||||
border-radius: 4px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-contextmenu .p-contextmenu-root-list {
|
||||
outline: 0 none;
|
||||
|
@ -4422,14 +4422,14 @@
|
|||
}
|
||||
.p-megamenu .p-submenu-list {
|
||||
padding: 0.5rem 0;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-megamenu .p-submenu-list .p-menuitem-separator {
|
||||
border-top: 1px solid #3f4b5b;
|
||||
margin: 0.5rem 0;
|
||||
}
|
||||
.p-megamenu.p-megamenu-vertical {
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
padding: 0.5rem 0;
|
||||
}
|
||||
.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem > .p-menuitem-content {
|
||||
|
@ -4519,7 +4519,7 @@
|
|||
color: rgba(255, 255, 255, 0.87);
|
||||
border: 1px solid #3f4b5b;
|
||||
border-radius: 4px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-menu .p-menuitem > .p-menuitem-content {
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
|
@ -4691,7 +4691,7 @@
|
|||
background: #2a323d;
|
||||
border: 1px solid #3f4b5b;
|
||||
box-shadow: none;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-menubar .p-submenu-list .p-menuitem-separator {
|
||||
border-top: 1px solid #3f4b5b;
|
||||
|
@ -4999,7 +4999,7 @@
|
|||
color: rgba(255, 255, 255, 0.87);
|
||||
border: 1px solid #3f4b5b;
|
||||
border-radius: 4px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-tieredmenu.p-tieredmenu-overlay {
|
||||
background: #2a323d;
|
||||
|
|
|
@ -4198,7 +4198,7 @@
|
|||
border: 1px solid #3f4b5b;
|
||||
box-shadow: none;
|
||||
border-radius: 4px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-contextmenu .p-contextmenu-root-list {
|
||||
outline: 0 none;
|
||||
|
@ -4422,14 +4422,14 @@
|
|||
}
|
||||
.p-megamenu .p-submenu-list {
|
||||
padding: 0.5rem 0;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-megamenu .p-submenu-list .p-menuitem-separator {
|
||||
border-top: 1px solid #3f4b5b;
|
||||
margin: 0.5rem 0;
|
||||
}
|
||||
.p-megamenu.p-megamenu-vertical {
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
padding: 0.5rem 0;
|
||||
}
|
||||
.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem > .p-menuitem-content {
|
||||
|
@ -4519,7 +4519,7 @@
|
|||
color: rgba(255, 255, 255, 0.87);
|
||||
border: 1px solid #3f4b5b;
|
||||
border-radius: 4px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-menu .p-menuitem > .p-menuitem-content {
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
|
@ -4691,7 +4691,7 @@
|
|||
background: #2a323d;
|
||||
border: 1px solid #3f4b5b;
|
||||
box-shadow: none;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-menubar .p-submenu-list .p-menuitem-separator {
|
||||
border-top: 1px solid #3f4b5b;
|
||||
|
@ -4999,7 +4999,7 @@
|
|||
color: rgba(255, 255, 255, 0.87);
|
||||
border: 1px solid #3f4b5b;
|
||||
border-radius: 4px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-tieredmenu.p-tieredmenu-overlay {
|
||||
background: #2a323d;
|
||||
|
|
|
@ -4198,7 +4198,7 @@
|
|||
border: 1px solid rgba(0, 0, 0, 0.15);
|
||||
box-shadow: none;
|
||||
border-radius: 4px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-contextmenu .p-contextmenu-root-list {
|
||||
outline: 0 none;
|
||||
|
@ -4422,14 +4422,14 @@
|
|||
}
|
||||
.p-megamenu .p-submenu-list {
|
||||
padding: 0.5rem 0;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-megamenu .p-submenu-list .p-menuitem-separator {
|
||||
border-top: 1px solid #dee2e6;
|
||||
margin: 0.5rem 0;
|
||||
}
|
||||
.p-megamenu.p-megamenu-vertical {
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
padding: 0.5rem 0;
|
||||
}
|
||||
.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem > .p-menuitem-content {
|
||||
|
@ -4519,7 +4519,7 @@
|
|||
color: #212529;
|
||||
border: 1px solid #dee2e6;
|
||||
border-radius: 4px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-menu .p-menuitem > .p-menuitem-content {
|
||||
color: #212529;
|
||||
|
@ -4691,7 +4691,7 @@
|
|||
background: #ffffff;
|
||||
border: 1px solid rgba(0, 0, 0, 0.15);
|
||||
box-shadow: none;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-menubar .p-submenu-list .p-menuitem-separator {
|
||||
border-top: 1px solid #dee2e6;
|
||||
|
@ -4999,7 +4999,7 @@
|
|||
color: #212529;
|
||||
border: 1px solid #dee2e6;
|
||||
border-radius: 4px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-tieredmenu.p-tieredmenu-overlay {
|
||||
background: #ffffff;
|
||||
|
|
|
@ -4198,7 +4198,7 @@
|
|||
border: 1px solid rgba(0, 0, 0, 0.15);
|
||||
box-shadow: none;
|
||||
border-radius: 4px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-contextmenu .p-contextmenu-root-list {
|
||||
outline: 0 none;
|
||||
|
@ -4422,14 +4422,14 @@
|
|||
}
|
||||
.p-megamenu .p-submenu-list {
|
||||
padding: 0.5rem 0;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-megamenu .p-submenu-list .p-menuitem-separator {
|
||||
border-top: 1px solid #dee2e6;
|
||||
margin: 0.5rem 0;
|
||||
}
|
||||
.p-megamenu.p-megamenu-vertical {
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
padding: 0.5rem 0;
|
||||
}
|
||||
.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem > .p-menuitem-content {
|
||||
|
@ -4519,7 +4519,7 @@
|
|||
color: #212529;
|
||||
border: 1px solid #dee2e6;
|
||||
border-radius: 4px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-menu .p-menuitem > .p-menuitem-content {
|
||||
color: #212529;
|
||||
|
@ -4691,7 +4691,7 @@
|
|||
background: #ffffff;
|
||||
border: 1px solid rgba(0, 0, 0, 0.15);
|
||||
box-shadow: none;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-menubar .p-submenu-list .p-menuitem-separator {
|
||||
border-top: 1px solid #dee2e6;
|
||||
|
@ -4999,7 +4999,7 @@
|
|||
color: #212529;
|
||||
border: 1px solid #dee2e6;
|
||||
border-radius: 4px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-tieredmenu.p-tieredmenu-overlay {
|
||||
background: #ffffff;
|
||||
|
|
|
@ -4161,7 +4161,7 @@
|
|||
border: 0 none;
|
||||
box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
|
||||
border-radius: 2px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-contextmenu .p-contextmenu-root-list {
|
||||
outline: 0 none;
|
||||
|
@ -4385,14 +4385,14 @@
|
|||
}
|
||||
.p-megamenu .p-submenu-list {
|
||||
padding: 0;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-megamenu .p-submenu-list .p-menuitem-separator {
|
||||
border-top: 1px solid #edebe9;
|
||||
margin: 0.25rem 0;
|
||||
}
|
||||
.p-megamenu.p-megamenu-vertical {
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
padding: 0;
|
||||
}
|
||||
.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem > .p-menuitem-content {
|
||||
|
@ -4482,7 +4482,7 @@
|
|||
color: #323130;
|
||||
border: 1px solid #eeeeee;
|
||||
border-radius: 2px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-menu .p-menuitem > .p-menuitem-content {
|
||||
color: #323130;
|
||||
|
@ -4654,7 +4654,7 @@
|
|||
background: #ffffff;
|
||||
border: 0 none;
|
||||
box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-menubar .p-submenu-list .p-menuitem-separator {
|
||||
border-top: 1px solid #edebe9;
|
||||
|
@ -4938,7 +4938,7 @@
|
|||
color: #323130;
|
||||
border: 1px solid #eeeeee;
|
||||
border-radius: 2px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-tieredmenu.p-tieredmenu-overlay {
|
||||
background: #ffffff;
|
||||
|
|
|
@ -4180,7 +4180,7 @@
|
|||
border: 1px solid #424b57;
|
||||
box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
|
||||
border-radius: 6px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-contextmenu .p-contextmenu-root-list {
|
||||
outline: 0 none;
|
||||
|
@ -4404,14 +4404,14 @@
|
|||
}
|
||||
.p-megamenu .p-submenu-list {
|
||||
padding: 0.25rem 0;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-megamenu .p-submenu-list .p-menuitem-separator {
|
||||
border-top: 1px solid #424b57;
|
||||
margin: 0.25rem 0;
|
||||
}
|
||||
.p-megamenu.p-megamenu-vertical {
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
padding: 0.25rem 0;
|
||||
}
|
||||
.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem > .p-menuitem-content {
|
||||
|
@ -4501,7 +4501,7 @@
|
|||
color: rgba(255, 255, 255, 0.87);
|
||||
border: 1px solid #424b57;
|
||||
border-radius: 6px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-menu .p-menuitem > .p-menuitem-content {
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
|
@ -4673,7 +4673,7 @@
|
|||
background: #374151;
|
||||
border: 1px solid #424b57;
|
||||
box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-menubar .p-submenu-list .p-menuitem-separator {
|
||||
border-top: 1px solid #424b57;
|
||||
|
@ -4957,7 +4957,7 @@
|
|||
color: rgba(255, 255, 255, 0.87);
|
||||
border: 1px solid #424b57;
|
||||
border-radius: 6px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-tieredmenu.p-tieredmenu-overlay {
|
||||
background: #374151;
|
||||
|
|
|
@ -4180,7 +4180,7 @@
|
|||
border: 1px solid #424b57;
|
||||
box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
|
||||
border-radius: 6px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-contextmenu .p-contextmenu-root-list {
|
||||
outline: 0 none;
|
||||
|
@ -4404,14 +4404,14 @@
|
|||
}
|
||||
.p-megamenu .p-submenu-list {
|
||||
padding: 0.25rem 0;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-megamenu .p-submenu-list .p-menuitem-separator {
|
||||
border-top: 1px solid #424b57;
|
||||
margin: 0.25rem 0;
|
||||
}
|
||||
.p-megamenu.p-megamenu-vertical {
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
padding: 0.25rem 0;
|
||||
}
|
||||
.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem > .p-menuitem-content {
|
||||
|
@ -4501,7 +4501,7 @@
|
|||
color: rgba(255, 255, 255, 0.87);
|
||||
border: 1px solid #424b57;
|
||||
border-radius: 6px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-menu .p-menuitem > .p-menuitem-content {
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
|
@ -4673,7 +4673,7 @@
|
|||
background: #374151;
|
||||
border: 1px solid #424b57;
|
||||
box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-menubar .p-submenu-list .p-menuitem-separator {
|
||||
border-top: 1px solid #424b57;
|
||||
|
@ -4957,7 +4957,7 @@
|
|||
color: rgba(255, 255, 255, 0.87);
|
||||
border: 1px solid #424b57;
|
||||
border-radius: 6px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-tieredmenu.p-tieredmenu-overlay {
|
||||
background: #374151;
|
||||
|
|
|
@ -4180,7 +4180,7 @@
|
|||
border: 1px solid #424b57;
|
||||
box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
|
||||
border-radius: 6px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-contextmenu .p-contextmenu-root-list {
|
||||
outline: 0 none;
|
||||
|
@ -4404,14 +4404,14 @@
|
|||
}
|
||||
.p-megamenu .p-submenu-list {
|
||||
padding: 0.25rem 0;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-megamenu .p-submenu-list .p-menuitem-separator {
|
||||
border-top: 1px solid #424b57;
|
||||
margin: 0.25rem 0;
|
||||
}
|
||||
.p-megamenu.p-megamenu-vertical {
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
padding: 0.25rem 0;
|
||||
}
|
||||
.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem > .p-menuitem-content {
|
||||
|
@ -4501,7 +4501,7 @@
|
|||
color: rgba(255, 255, 255, 0.87);
|
||||
border: 1px solid #424b57;
|
||||
border-radius: 6px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-menu .p-menuitem > .p-menuitem-content {
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
|
@ -4673,7 +4673,7 @@
|
|||
background: #374151;
|
||||
border: 1px solid #424b57;
|
||||
box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-menubar .p-submenu-list .p-menuitem-separator {
|
||||
border-top: 1px solid #424b57;
|
||||
|
@ -4957,7 +4957,7 @@
|
|||
color: rgba(255, 255, 255, 0.87);
|
||||
border: 1px solid #424b57;
|
||||
border-radius: 6px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-tieredmenu.p-tieredmenu-overlay {
|
||||
background: #374151;
|
||||
|
|
|
@ -4180,7 +4180,7 @@
|
|||
border: 1px solid #424b57;
|
||||
box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
|
||||
border-radius: 6px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-contextmenu .p-contextmenu-root-list {
|
||||
outline: 0 none;
|
||||
|
@ -4404,14 +4404,14 @@
|
|||
}
|
||||
.p-megamenu .p-submenu-list {
|
||||
padding: 0.25rem 0;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-megamenu .p-submenu-list .p-menuitem-separator {
|
||||
border-top: 1px solid #424b57;
|
||||
margin: 0.25rem 0;
|
||||
}
|
||||
.p-megamenu.p-megamenu-vertical {
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
padding: 0.25rem 0;
|
||||
}
|
||||
.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem > .p-menuitem-content {
|
||||
|
@ -4501,7 +4501,7 @@
|
|||
color: rgba(255, 255, 255, 0.87);
|
||||
border: 1px solid #424b57;
|
||||
border-radius: 6px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-menu .p-menuitem > .p-menuitem-content {
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
|
@ -4673,7 +4673,7 @@
|
|||
background: #374151;
|
||||
border: 1px solid #424b57;
|
||||
box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-menubar .p-submenu-list .p-menuitem-separator {
|
||||
border-top: 1px solid #424b57;
|
||||
|
@ -4957,7 +4957,7 @@
|
|||
color: rgba(255, 255, 255, 0.87);
|
||||
border: 1px solid #424b57;
|
||||
border-radius: 6px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-tieredmenu.p-tieredmenu-overlay {
|
||||
background: #374151;
|
||||
|
|
|
@ -4180,7 +4180,7 @@
|
|||
border: 1px solid #424b57;
|
||||
box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
|
||||
border-radius: 6px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-contextmenu .p-contextmenu-root-list {
|
||||
outline: 0 none;
|
||||
|
@ -4404,14 +4404,14 @@
|
|||
}
|
||||
.p-megamenu .p-submenu-list {
|
||||
padding: 0.25rem 0;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-megamenu .p-submenu-list .p-menuitem-separator {
|
||||
border-top: 1px solid #424b57;
|
||||
margin: 0.25rem 0;
|
||||
}
|
||||
.p-megamenu.p-megamenu-vertical {
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
padding: 0.25rem 0;
|
||||
}
|
||||
.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem > .p-menuitem-content {
|
||||
|
@ -4501,7 +4501,7 @@
|
|||
color: rgba(255, 255, 255, 0.87);
|
||||
border: 1px solid #424b57;
|
||||
border-radius: 6px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-menu .p-menuitem > .p-menuitem-content {
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
|
@ -4673,7 +4673,7 @@
|
|||
background: #374151;
|
||||
border: 1px solid #424b57;
|
||||
box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-menubar .p-submenu-list .p-menuitem-separator {
|
||||
border-top: 1px solid #424b57;
|
||||
|
@ -4957,7 +4957,7 @@
|
|||
color: rgba(255, 255, 255, 0.87);
|
||||
border: 1px solid #424b57;
|
||||
border-radius: 6px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-tieredmenu.p-tieredmenu-overlay {
|
||||
background: #374151;
|
||||
|
|
|
@ -4180,7 +4180,7 @@
|
|||
border: 1px solid #424b57;
|
||||
box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
|
||||
border-radius: 6px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-contextmenu .p-contextmenu-root-list {
|
||||
outline: 0 none;
|
||||
|
@ -4404,14 +4404,14 @@
|
|||
}
|
||||
.p-megamenu .p-submenu-list {
|
||||
padding: 0.25rem 0;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-megamenu .p-submenu-list .p-menuitem-separator {
|
||||
border-top: 1px solid #424b57;
|
||||
margin: 0.25rem 0;
|
||||
}
|
||||
.p-megamenu.p-megamenu-vertical {
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
padding: 0.25rem 0;
|
||||
}
|
||||
.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem > .p-menuitem-content {
|
||||
|
@ -4501,7 +4501,7 @@
|
|||
color: rgba(255, 255, 255, 0.87);
|
||||
border: 1px solid #424b57;
|
||||
border-radius: 6px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-menu .p-menuitem > .p-menuitem-content {
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
|
@ -4673,7 +4673,7 @@
|
|||
background: #374151;
|
||||
border: 1px solid #424b57;
|
||||
box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-menubar .p-submenu-list .p-menuitem-separator {
|
||||
border-top: 1px solid #424b57;
|
||||
|
@ -4957,7 +4957,7 @@
|
|||
color: rgba(255, 255, 255, 0.87);
|
||||
border: 1px solid #424b57;
|
||||
border-radius: 6px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-tieredmenu.p-tieredmenu-overlay {
|
||||
background: #374151;
|
||||
|
|
|
@ -4180,7 +4180,7 @@
|
|||
border: 1px solid #424b57;
|
||||
box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
|
||||
border-radius: 6px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-contextmenu .p-contextmenu-root-list {
|
||||
outline: 0 none;
|
||||
|
@ -4404,14 +4404,14 @@
|
|||
}
|
||||
.p-megamenu .p-submenu-list {
|
||||
padding: 0.25rem 0;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-megamenu .p-submenu-list .p-menuitem-separator {
|
||||
border-top: 1px solid #424b57;
|
||||
margin: 0.25rem 0;
|
||||
}
|
||||
.p-megamenu.p-megamenu-vertical {
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
padding: 0.25rem 0;
|
||||
}
|
||||
.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem > .p-menuitem-content {
|
||||
|
@ -4501,7 +4501,7 @@
|
|||
color: rgba(255, 255, 255, 0.87);
|
||||
border: 1px solid #424b57;
|
||||
border-radius: 6px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-menu .p-menuitem > .p-menuitem-content {
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
|
@ -4673,7 +4673,7 @@
|
|||
background: #374151;
|
||||
border: 1px solid #424b57;
|
||||
box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-menubar .p-submenu-list .p-menuitem-separator {
|
||||
border-top: 1px solid #424b57;
|
||||
|
@ -4957,7 +4957,7 @@
|
|||
color: rgba(255, 255, 255, 0.87);
|
||||
border: 1px solid #424b57;
|
||||
border-radius: 6px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-tieredmenu.p-tieredmenu-overlay {
|
||||
background: #374151;
|
||||
|
|
|
@ -4180,7 +4180,7 @@
|
|||
border: 1px solid #424b57;
|
||||
box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
|
||||
border-radius: 6px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-contextmenu .p-contextmenu-root-list {
|
||||
outline: 0 none;
|
||||
|
@ -4404,14 +4404,14 @@
|
|||
}
|
||||
.p-megamenu .p-submenu-list {
|
||||
padding: 0.25rem 0;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-megamenu .p-submenu-list .p-menuitem-separator {
|
||||
border-top: 1px solid #424b57;
|
||||
margin: 0.25rem 0;
|
||||
}
|
||||
.p-megamenu.p-megamenu-vertical {
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
padding: 0.25rem 0;
|
||||
}
|
||||
.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem > .p-menuitem-content {
|
||||
|
@ -4501,7 +4501,7 @@
|
|||
color: rgba(255, 255, 255, 0.87);
|
||||
border: 1px solid #424b57;
|
||||
border-radius: 6px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-menu .p-menuitem > .p-menuitem-content {
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
|
@ -4673,7 +4673,7 @@
|
|||
background: #374151;
|
||||
border: 1px solid #424b57;
|
||||
box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-menubar .p-submenu-list .p-menuitem-separator {
|
||||
border-top: 1px solid #424b57;
|
||||
|
@ -4957,7 +4957,7 @@
|
|||
color: rgba(255, 255, 255, 0.87);
|
||||
border: 1px solid #424b57;
|
||||
border-radius: 6px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-tieredmenu.p-tieredmenu-overlay {
|
||||
background: #374151;
|
||||
|
|
|
@ -4180,7 +4180,7 @@
|
|||
border: 0 none;
|
||||
box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
|
||||
border-radius: 6px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-contextmenu .p-contextmenu-root-list {
|
||||
outline: 0 none;
|
||||
|
@ -4404,14 +4404,14 @@
|
|||
}
|
||||
.p-megamenu .p-submenu-list {
|
||||
padding: 0.5rem 0;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-megamenu .p-submenu-list .p-menuitem-separator {
|
||||
border-top: 1px solid #e5e7eb;
|
||||
margin: 0.25rem 0;
|
||||
}
|
||||
.p-megamenu.p-megamenu-vertical {
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
padding: 0.5rem 0;
|
||||
}
|
||||
.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem > .p-menuitem-content {
|
||||
|
@ -4501,7 +4501,7 @@
|
|||
color: #4b5563;
|
||||
border: 1px solid #e5e7eb;
|
||||
border-radius: 6px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-menu .p-menuitem > .p-menuitem-content {
|
||||
color: #4b5563;
|
||||
|
@ -4673,7 +4673,7 @@
|
|||
background: #ffffff;
|
||||
border: 0 none;
|
||||
box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-menubar .p-submenu-list .p-menuitem-separator {
|
||||
border-top: 1px solid #e5e7eb;
|
||||
|
@ -4957,7 +4957,7 @@
|
|||
color: #4b5563;
|
||||
border: 1px solid #e5e7eb;
|
||||
border-radius: 6px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-tieredmenu.p-tieredmenu-overlay {
|
||||
background: #ffffff;
|
||||
|
|
|
@ -4180,7 +4180,7 @@
|
|||
border: 0 none;
|
||||
box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
|
||||
border-radius: 6px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-contextmenu .p-contextmenu-root-list {
|
||||
outline: 0 none;
|
||||
|
@ -4404,14 +4404,14 @@
|
|||
}
|
||||
.p-megamenu .p-submenu-list {
|
||||
padding: 0.5rem 0;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-megamenu .p-submenu-list .p-menuitem-separator {
|
||||
border-top: 1px solid #e5e7eb;
|
||||
margin: 0.25rem 0;
|
||||
}
|
||||
.p-megamenu.p-megamenu-vertical {
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
padding: 0.5rem 0;
|
||||
}
|
||||
.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem > .p-menuitem-content {
|
||||
|
@ -4501,7 +4501,7 @@
|
|||
color: #4b5563;
|
||||
border: 1px solid #e5e7eb;
|
||||
border-radius: 6px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-menu .p-menuitem > .p-menuitem-content {
|
||||
color: #4b5563;
|
||||
|
@ -4673,7 +4673,7 @@
|
|||
background: #ffffff;
|
||||
border: 0 none;
|
||||
box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-menubar .p-submenu-list .p-menuitem-separator {
|
||||
border-top: 1px solid #e5e7eb;
|
||||
|
@ -4957,7 +4957,7 @@
|
|||
color: #4b5563;
|
||||
border: 1px solid #e5e7eb;
|
||||
border-radius: 6px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-tieredmenu.p-tieredmenu-overlay {
|
||||
background: #ffffff;
|
||||
|
|
|
@ -4180,7 +4180,7 @@
|
|||
border: 0 none;
|
||||
box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
|
||||
border-radius: 6px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-contextmenu .p-contextmenu-root-list {
|
||||
outline: 0 none;
|
||||
|
@ -4404,14 +4404,14 @@
|
|||
}
|
||||
.p-megamenu .p-submenu-list {
|
||||
padding: 0.5rem 0;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-megamenu .p-submenu-list .p-menuitem-separator {
|
||||
border-top: 1px solid #e5e7eb;
|
||||
margin: 0.25rem 0;
|
||||
}
|
||||
.p-megamenu.p-megamenu-vertical {
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
padding: 0.5rem 0;
|
||||
}
|
||||
.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem > .p-menuitem-content {
|
||||
|
@ -4501,7 +4501,7 @@
|
|||
color: #4b5563;
|
||||
border: 1px solid #e5e7eb;
|
||||
border-radius: 6px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-menu .p-menuitem > .p-menuitem-content {
|
||||
color: #4b5563;
|
||||
|
@ -4673,7 +4673,7 @@
|
|||
background: #ffffff;
|
||||
border: 0 none;
|
||||
box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-menubar .p-submenu-list .p-menuitem-separator {
|
||||
border-top: 1px solid #e5e7eb;
|
||||
|
@ -4957,7 +4957,7 @@
|
|||
color: #4b5563;
|
||||
border: 1px solid #e5e7eb;
|
||||
border-radius: 6px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-tieredmenu.p-tieredmenu-overlay {
|
||||
background: #ffffff;
|
||||
|
|
|
@ -4180,7 +4180,7 @@
|
|||
border: 0 none;
|
||||
box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
|
||||
border-radius: 6px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-contextmenu .p-contextmenu-root-list {
|
||||
outline: 0 none;
|
||||
|
@ -4404,14 +4404,14 @@
|
|||
}
|
||||
.p-megamenu .p-submenu-list {
|
||||
padding: 0.5rem 0;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-megamenu .p-submenu-list .p-menuitem-separator {
|
||||
border-top: 1px solid #e5e7eb;
|
||||
margin: 0.25rem 0;
|
||||
}
|
||||
.p-megamenu.p-megamenu-vertical {
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
padding: 0.5rem 0;
|
||||
}
|
||||
.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem > .p-menuitem-content {
|
||||
|
@ -4501,7 +4501,7 @@
|
|||
color: #4b5563;
|
||||
border: 1px solid #e5e7eb;
|
||||
border-radius: 6px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-menu .p-menuitem > .p-menuitem-content {
|
||||
color: #4b5563;
|
||||
|
@ -4673,7 +4673,7 @@
|
|||
background: #ffffff;
|
||||
border: 0 none;
|
||||
box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-menubar .p-submenu-list .p-menuitem-separator {
|
||||
border-top: 1px solid #e5e7eb;
|
||||
|
@ -4957,7 +4957,7 @@
|
|||
color: #4b5563;
|
||||
border: 1px solid #e5e7eb;
|
||||
border-radius: 6px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-tieredmenu.p-tieredmenu-overlay {
|
||||
background: #ffffff;
|
||||
|
|
|
@ -4180,7 +4180,7 @@
|
|||
border: 0 none;
|
||||
box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
|
||||
border-radius: 6px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-contextmenu .p-contextmenu-root-list {
|
||||
outline: 0 none;
|
||||
|
@ -4404,14 +4404,14 @@
|
|||
}
|
||||
.p-megamenu .p-submenu-list {
|
||||
padding: 0.5rem 0;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-megamenu .p-submenu-list .p-menuitem-separator {
|
||||
border-top: 1px solid #e5e7eb;
|
||||
margin: 0.25rem 0;
|
||||
}
|
||||
.p-megamenu.p-megamenu-vertical {
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
padding: 0.5rem 0;
|
||||
}
|
||||
.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem > .p-menuitem-content {
|
||||
|
@ -4501,7 +4501,7 @@
|
|||
color: #4b5563;
|
||||
border: 1px solid #e5e7eb;
|
||||
border-radius: 6px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-menu .p-menuitem > .p-menuitem-content {
|
||||
color: #4b5563;
|
||||
|
@ -4673,7 +4673,7 @@
|
|||
background: #ffffff;
|
||||
border: 0 none;
|
||||
box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-menubar .p-submenu-list .p-menuitem-separator {
|
||||
border-top: 1px solid #e5e7eb;
|
||||
|
@ -4957,7 +4957,7 @@
|
|||
color: #4b5563;
|
||||
border: 1px solid #e5e7eb;
|
||||
border-radius: 6px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-tieredmenu.p-tieredmenu-overlay {
|
||||
background: #ffffff;
|
||||
|
|
|
@ -4180,7 +4180,7 @@
|
|||
border: 0 none;
|
||||
box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
|
||||
border-radius: 6px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-contextmenu .p-contextmenu-root-list {
|
||||
outline: 0 none;
|
||||
|
@ -4404,14 +4404,14 @@
|
|||
}
|
||||
.p-megamenu .p-submenu-list {
|
||||
padding: 0.5rem 0;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-megamenu .p-submenu-list .p-menuitem-separator {
|
||||
border-top: 1px solid #e5e7eb;
|
||||
margin: 0.25rem 0;
|
||||
}
|
||||
.p-megamenu.p-megamenu-vertical {
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
padding: 0.5rem 0;
|
||||
}
|
||||
.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem > .p-menuitem-content {
|
||||
|
@ -4501,7 +4501,7 @@
|
|||
color: #4b5563;
|
||||
border: 1px solid #e5e7eb;
|
||||
border-radius: 6px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-menu .p-menuitem > .p-menuitem-content {
|
||||
color: #4b5563;
|
||||
|
@ -4673,7 +4673,7 @@
|
|||
background: #ffffff;
|
||||
border: 0 none;
|
||||
box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-menubar .p-submenu-list .p-menuitem-separator {
|
||||
border-top: 1px solid #e5e7eb;
|
||||
|
@ -4957,7 +4957,7 @@
|
|||
color: #4b5563;
|
||||
border: 1px solid #e5e7eb;
|
||||
border-radius: 6px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-tieredmenu.p-tieredmenu-overlay {
|
||||
background: #ffffff;
|
||||
|
|
|
@ -4180,7 +4180,7 @@
|
|||
border: 0 none;
|
||||
box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
|
||||
border-radius: 6px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-contextmenu .p-contextmenu-root-list {
|
||||
outline: 0 none;
|
||||
|
@ -4404,14 +4404,14 @@
|
|||
}
|
||||
.p-megamenu .p-submenu-list {
|
||||
padding: 0.5rem 0;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-megamenu .p-submenu-list .p-menuitem-separator {
|
||||
border-top: 1px solid #e5e7eb;
|
||||
margin: 0.25rem 0;
|
||||
}
|
||||
.p-megamenu.p-megamenu-vertical {
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
padding: 0.5rem 0;
|
||||
}
|
||||
.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem > .p-menuitem-content {
|
||||
|
@ -4501,7 +4501,7 @@
|
|||
color: #4b5563;
|
||||
border: 1px solid #e5e7eb;
|
||||
border-radius: 6px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-menu .p-menuitem > .p-menuitem-content {
|
||||
color: #4b5563;
|
||||
|
@ -4673,7 +4673,7 @@
|
|||
background: #ffffff;
|
||||
border: 0 none;
|
||||
box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-menubar .p-submenu-list .p-menuitem-separator {
|
||||
border-top: 1px solid #e5e7eb;
|
||||
|
@ -4957,7 +4957,7 @@
|
|||
color: #4b5563;
|
||||
border: 1px solid #e5e7eb;
|
||||
border-radius: 6px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-tieredmenu.p-tieredmenu-overlay {
|
||||
background: #ffffff;
|
||||
|
|
|
@ -4180,7 +4180,7 @@
|
|||
border: 0 none;
|
||||
box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
|
||||
border-radius: 6px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-contextmenu .p-contextmenu-root-list {
|
||||
outline: 0 none;
|
||||
|
@ -4404,14 +4404,14 @@
|
|||
}
|
||||
.p-megamenu .p-submenu-list {
|
||||
padding: 0.5rem 0;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-megamenu .p-submenu-list .p-menuitem-separator {
|
||||
border-top: 1px solid #e5e7eb;
|
||||
margin: 0.25rem 0;
|
||||
}
|
||||
.p-megamenu.p-megamenu-vertical {
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
padding: 0.5rem 0;
|
||||
}
|
||||
.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem > .p-menuitem-content {
|
||||
|
@ -4501,7 +4501,7 @@
|
|||
color: #4b5563;
|
||||
border: 1px solid #e5e7eb;
|
||||
border-radius: 6px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-menu .p-menuitem > .p-menuitem-content {
|
||||
color: #4b5563;
|
||||
|
@ -4673,7 +4673,7 @@
|
|||
background: #ffffff;
|
||||
border: 0 none;
|
||||
box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-menubar .p-submenu-list .p-menuitem-separator {
|
||||
border-top: 1px solid #e5e7eb;
|
||||
|
@ -4957,7 +4957,7 @@
|
|||
color: #4b5563;
|
||||
border: 1px solid #e5e7eb;
|
||||
border-radius: 6px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-tieredmenu.p-tieredmenu-overlay {
|
||||
background: #ffffff;
|
||||
|
|
|
@ -4173,7 +4173,7 @@
|
|||
border: 1px solid #191919;
|
||||
box-shadow: 0 0px 6px 0 rgba(0, 0, 0, 0.16);
|
||||
border-radius: 3px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-contextmenu .p-contextmenu-root-list {
|
||||
outline: 0 none;
|
||||
|
@ -4397,14 +4397,14 @@
|
|||
}
|
||||
.p-megamenu .p-submenu-list {
|
||||
padding: 0;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-megamenu .p-submenu-list .p-menuitem-separator {
|
||||
border-top: 1px solid #4b4b4b;
|
||||
margin: 0;
|
||||
}
|
||||
.p-megamenu.p-megamenu-vertical {
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
padding: 0;
|
||||
}
|
||||
.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem > .p-menuitem-content {
|
||||
|
@ -4494,7 +4494,7 @@
|
|||
color: #dedede;
|
||||
border: 1px solid #191919;
|
||||
border-radius: 3px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-menu .p-menuitem > .p-menuitem-content {
|
||||
color: #dedede;
|
||||
|
@ -4666,7 +4666,7 @@
|
|||
background: #252525;
|
||||
border: 1px solid #191919;
|
||||
box-shadow: 0 0px 6px 0 rgba(0, 0, 0, 0.16);
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-menubar .p-submenu-list .p-menuitem-separator {
|
||||
border-top: 1px solid #4b4b4b;
|
||||
|
@ -4950,7 +4950,7 @@
|
|||
color: #dedede;
|
||||
border: 1px solid #191919;
|
||||
border-radius: 3px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-tieredmenu.p-tieredmenu-overlay {
|
||||
background: #252525;
|
||||
|
|
|
@ -4173,7 +4173,7 @@
|
|||
border: 1px solid #191919;
|
||||
box-shadow: 0 0px 6px 0 rgba(0, 0, 0, 0.16);
|
||||
border-radius: 3px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-contextmenu .p-contextmenu-root-list {
|
||||
outline: 0 none;
|
||||
|
@ -4397,14 +4397,14 @@
|
|||
}
|
||||
.p-megamenu .p-submenu-list {
|
||||
padding: 0;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-megamenu .p-submenu-list .p-menuitem-separator {
|
||||
border-top: 1px solid #4b4b4b;
|
||||
margin: 0;
|
||||
}
|
||||
.p-megamenu.p-megamenu-vertical {
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
padding: 0;
|
||||
}
|
||||
.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem > .p-menuitem-content {
|
||||
|
@ -4494,7 +4494,7 @@
|
|||
color: #dedede;
|
||||
border: 1px solid #191919;
|
||||
border-radius: 3px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-menu .p-menuitem > .p-menuitem-content {
|
||||
color: #dedede;
|
||||
|
@ -4666,7 +4666,7 @@
|
|||
background: #252525;
|
||||
border: 1px solid #191919;
|
||||
box-shadow: 0 0px 6px 0 rgba(0, 0, 0, 0.16);
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-menubar .p-submenu-list .p-menuitem-separator {
|
||||
border-top: 1px solid #4b4b4b;
|
||||
|
@ -4950,7 +4950,7 @@
|
|||
color: #dedede;
|
||||
border: 1px solid #191919;
|
||||
border-radius: 3px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-tieredmenu.p-tieredmenu-overlay {
|
||||
background: #252525;
|
||||
|
|
|
@ -4173,7 +4173,7 @@
|
|||
border: 1px solid #191919;
|
||||
box-shadow: 0 0px 6px 0 rgba(0, 0, 0, 0.16);
|
||||
border-radius: 3px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-contextmenu .p-contextmenu-root-list {
|
||||
outline: 0 none;
|
||||
|
@ -4397,14 +4397,14 @@
|
|||
}
|
||||
.p-megamenu .p-submenu-list {
|
||||
padding: 0;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-megamenu .p-submenu-list .p-menuitem-separator {
|
||||
border-top: 1px solid #4b4b4b;
|
||||
margin: 0;
|
||||
}
|
||||
.p-megamenu.p-megamenu-vertical {
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
padding: 0;
|
||||
}
|
||||
.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem > .p-menuitem-content {
|
||||
|
@ -4494,7 +4494,7 @@
|
|||
color: #dedede;
|
||||
border: 1px solid #191919;
|
||||
border-radius: 3px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-menu .p-menuitem > .p-menuitem-content {
|
||||
color: #dedede;
|
||||
|
@ -4666,7 +4666,7 @@
|
|||
background: #252525;
|
||||
border: 1px solid #191919;
|
||||
box-shadow: 0 0px 6px 0 rgba(0, 0, 0, 0.16);
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-menubar .p-submenu-list .p-menuitem-separator {
|
||||
border-top: 1px solid #4b4b4b;
|
||||
|
@ -4950,7 +4950,7 @@
|
|||
color: #dedede;
|
||||
border: 1px solid #191919;
|
||||
border-radius: 3px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-tieredmenu.p-tieredmenu-overlay {
|
||||
background: #252525;
|
||||
|
|
|
@ -4173,7 +4173,7 @@
|
|||
border: 1px solid #191919;
|
||||
box-shadow: 0 0px 6px 0 rgba(0, 0, 0, 0.16);
|
||||
border-radius: 3px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-contextmenu .p-contextmenu-root-list {
|
||||
outline: 0 none;
|
||||
|
@ -4397,14 +4397,14 @@
|
|||
}
|
||||
.p-megamenu .p-submenu-list {
|
||||
padding: 0;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-megamenu .p-submenu-list .p-menuitem-separator {
|
||||
border-top: 1px solid #4b4b4b;
|
||||
margin: 0;
|
||||
}
|
||||
.p-megamenu.p-megamenu-vertical {
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
padding: 0;
|
||||
}
|
||||
.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem > .p-menuitem-content {
|
||||
|
@ -4494,7 +4494,7 @@
|
|||
color: #dedede;
|
||||
border: 1px solid #191919;
|
||||
border-radius: 3px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-menu .p-menuitem > .p-menuitem-content {
|
||||
color: #dedede;
|
||||
|
@ -4666,7 +4666,7 @@
|
|||
background: #252525;
|
||||
border: 1px solid #191919;
|
||||
box-shadow: 0 0px 6px 0 rgba(0, 0, 0, 0.16);
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-menubar .p-submenu-list .p-menuitem-separator {
|
||||
border-top: 1px solid #4b4b4b;
|
||||
|
@ -4950,7 +4950,7 @@
|
|||
color: #dedede;
|
||||
border: 1px solid #191919;
|
||||
border-radius: 3px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-tieredmenu.p-tieredmenu-overlay {
|
||||
background: #252525;
|
||||
|
|
|
@ -4210,7 +4210,7 @@
|
|||
border: 0 none;
|
||||
box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
|
||||
border-radius: 4px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-contextmenu .p-contextmenu-root-list {
|
||||
outline: 0 none;
|
||||
|
@ -4434,14 +4434,14 @@
|
|||
}
|
||||
.p-megamenu .p-submenu-list {
|
||||
padding: 0.5rem 0;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-megamenu .p-submenu-list .p-menuitem-separator {
|
||||
border-top: 1px solid rgba(255, 255, 255, 0.12);
|
||||
margin: 0.5rem 0;
|
||||
}
|
||||
.p-megamenu.p-megamenu-vertical {
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
padding: 0.5rem 0;
|
||||
}
|
||||
.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem > .p-menuitem-content {
|
||||
|
@ -4531,7 +4531,7 @@
|
|||
color: rgba(255, 255, 255, 0.87);
|
||||
border: 1px solid rgba(255, 255, 255, 0.12);
|
||||
border-radius: 4px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-menu .p-menuitem > .p-menuitem-content {
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
|
@ -4703,7 +4703,7 @@
|
|||
background: #2b2b2b;
|
||||
border: 0 none;
|
||||
box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-menubar .p-submenu-list .p-menuitem-separator {
|
||||
border-top: 1px solid rgba(255, 255, 255, 0.12);
|
||||
|
@ -5011,7 +5011,7 @@
|
|||
color: rgba(255, 255, 255, 0.87);
|
||||
border: 1px solid rgba(255, 255, 255, 0.12);
|
||||
border-radius: 4px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-tieredmenu.p-tieredmenu-overlay {
|
||||
background: #2b2b2b;
|
||||
|
|
|
@ -4210,7 +4210,7 @@
|
|||
border: 0 none;
|
||||
box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
|
||||
border-radius: 4px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-contextmenu .p-contextmenu-root-list {
|
||||
outline: 0 none;
|
||||
|
@ -4434,14 +4434,14 @@
|
|||
}
|
||||
.p-megamenu .p-submenu-list {
|
||||
padding: 0.5rem 0;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-megamenu .p-submenu-list .p-menuitem-separator {
|
||||
border-top: 1px solid rgba(255, 255, 255, 0.12);
|
||||
margin: 0.5rem 0;
|
||||
}
|
||||
.p-megamenu.p-megamenu-vertical {
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
padding: 0.5rem 0;
|
||||
}
|
||||
.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem > .p-menuitem-content {
|
||||
|
@ -4531,7 +4531,7 @@
|
|||
color: rgba(255, 255, 255, 0.87);
|
||||
border: 1px solid rgba(255, 255, 255, 0.12);
|
||||
border-radius: 4px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-menu .p-menuitem > .p-menuitem-content {
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
|
@ -4703,7 +4703,7 @@
|
|||
background: #2b2b2b;
|
||||
border: 0 none;
|
||||
box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-menubar .p-submenu-list .p-menuitem-separator {
|
||||
border-top: 1px solid rgba(255, 255, 255, 0.12);
|
||||
|
@ -5011,7 +5011,7 @@
|
|||
color: rgba(255, 255, 255, 0.87);
|
||||
border: 1px solid rgba(255, 255, 255, 0.12);
|
||||
border-radius: 4px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-tieredmenu.p-tieredmenu-overlay {
|
||||
background: #2b2b2b;
|
||||
|
|
|
@ -4210,7 +4210,7 @@
|
|||
border: 0 none;
|
||||
box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
|
||||
border-radius: 4px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-contextmenu .p-contextmenu-root-list {
|
||||
outline: 0 none;
|
||||
|
@ -4434,14 +4434,14 @@
|
|||
}
|
||||
.p-megamenu .p-submenu-list {
|
||||
padding: 0.5rem 0;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-megamenu .p-submenu-list .p-menuitem-separator {
|
||||
border-top: 1px solid rgba(0, 0, 0, 0.12);
|
||||
margin: 0.5rem 0;
|
||||
}
|
||||
.p-megamenu.p-megamenu-vertical {
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
padding: 0.5rem 0;
|
||||
}
|
||||
.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem > .p-menuitem-content {
|
||||
|
@ -4531,7 +4531,7 @@
|
|||
color: rgba(0, 0, 0, 0.87);
|
||||
border: 1px solid #e5e5e5;
|
||||
border-radius: 4px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-menu .p-menuitem > .p-menuitem-content {
|
||||
color: rgba(0, 0, 0, 0.87);
|
||||
|
@ -4703,7 +4703,7 @@
|
|||
background: #ffffff;
|
||||
border: 0 none;
|
||||
box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-menubar .p-submenu-list .p-menuitem-separator {
|
||||
border-top: 1px solid rgba(0, 0, 0, 0.12);
|
||||
|
@ -5011,7 +5011,7 @@
|
|||
color: rgba(0, 0, 0, 0.87);
|
||||
border: 1px solid #e5e5e5;
|
||||
border-radius: 4px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-tieredmenu.p-tieredmenu-overlay {
|
||||
background: #ffffff;
|
||||
|
|
|
@ -4210,7 +4210,7 @@
|
|||
border: 0 none;
|
||||
box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
|
||||
border-radius: 4px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-contextmenu .p-contextmenu-root-list {
|
||||
outline: 0 none;
|
||||
|
@ -4434,14 +4434,14 @@
|
|||
}
|
||||
.p-megamenu .p-submenu-list {
|
||||
padding: 0.5rem 0;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-megamenu .p-submenu-list .p-menuitem-separator {
|
||||
border-top: 1px solid rgba(0, 0, 0, 0.12);
|
||||
margin: 0.5rem 0;
|
||||
}
|
||||
.p-megamenu.p-megamenu-vertical {
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
padding: 0.5rem 0;
|
||||
}
|
||||
.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem > .p-menuitem-content {
|
||||
|
@ -4531,7 +4531,7 @@
|
|||
color: rgba(0, 0, 0, 0.87);
|
||||
border: 1px solid #e5e5e5;
|
||||
border-radius: 4px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-menu .p-menuitem > .p-menuitem-content {
|
||||
color: rgba(0, 0, 0, 0.87);
|
||||
|
@ -4703,7 +4703,7 @@
|
|||
background: #ffffff;
|
||||
border: 0 none;
|
||||
box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-menubar .p-submenu-list .p-menuitem-separator {
|
||||
border-top: 1px solid rgba(0, 0, 0, 0.12);
|
||||
|
@ -5011,7 +5011,7 @@
|
|||
color: rgba(0, 0, 0, 0.87);
|
||||
border: 1px solid #e5e5e5;
|
||||
border-radius: 4px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-tieredmenu.p-tieredmenu-overlay {
|
||||
background: #ffffff;
|
||||
|
|
|
@ -4210,7 +4210,7 @@
|
|||
border: 0 none;
|
||||
box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
|
||||
border-radius: 4px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-contextmenu .p-contextmenu-root-list {
|
||||
outline: 0 none;
|
||||
|
@ -4434,14 +4434,14 @@
|
|||
}
|
||||
.p-megamenu .p-submenu-list {
|
||||
padding: 0.5rem 0;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-megamenu .p-submenu-list .p-menuitem-separator {
|
||||
border-top: 1px solid rgba(255, 255, 255, 0.12);
|
||||
margin: 0.5rem 0;
|
||||
}
|
||||
.p-megamenu.p-megamenu-vertical {
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
padding: 0.5rem 0;
|
||||
}
|
||||
.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem > .p-menuitem-content {
|
||||
|
@ -4531,7 +4531,7 @@
|
|||
color: rgba(255, 255, 255, 0.87);
|
||||
border: 1px solid rgba(255, 255, 255, 0.12);
|
||||
border-radius: 4px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-menu .p-menuitem > .p-menuitem-content {
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
|
@ -4703,7 +4703,7 @@
|
|||
background: #2b2b2b;
|
||||
border: 0 none;
|
||||
box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-menubar .p-submenu-list .p-menuitem-separator {
|
||||
border-top: 1px solid rgba(255, 255, 255, 0.12);
|
||||
|
@ -5011,7 +5011,7 @@
|
|||
color: rgba(255, 255, 255, 0.87);
|
||||
border: 1px solid rgba(255, 255, 255, 0.12);
|
||||
border-radius: 4px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-tieredmenu.p-tieredmenu-overlay {
|
||||
background: #2b2b2b;
|
||||
|
|
|
@ -4210,7 +4210,7 @@
|
|||
border: 0 none;
|
||||
box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
|
||||
border-radius: 4px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-contextmenu .p-contextmenu-root-list {
|
||||
outline: 0 none;
|
||||
|
@ -4434,14 +4434,14 @@
|
|||
}
|
||||
.p-megamenu .p-submenu-list {
|
||||
padding: 0.5rem 0;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-megamenu .p-submenu-list .p-menuitem-separator {
|
||||
border-top: 1px solid rgba(255, 255, 255, 0.12);
|
||||
margin: 0.5rem 0;
|
||||
}
|
||||
.p-megamenu.p-megamenu-vertical {
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
padding: 0.5rem 0;
|
||||
}
|
||||
.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem > .p-menuitem-content {
|
||||
|
@ -4531,7 +4531,7 @@
|
|||
color: rgba(255, 255, 255, 0.87);
|
||||
border: 1px solid rgba(255, 255, 255, 0.12);
|
||||
border-radius: 4px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-menu .p-menuitem > .p-menuitem-content {
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
|
@ -4703,7 +4703,7 @@
|
|||
background: #2b2b2b;
|
||||
border: 0 none;
|
||||
box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-menubar .p-submenu-list .p-menuitem-separator {
|
||||
border-top: 1px solid rgba(255, 255, 255, 0.12);
|
||||
|
@ -5011,7 +5011,7 @@
|
|||
color: rgba(255, 255, 255, 0.87);
|
||||
border: 1px solid rgba(255, 255, 255, 0.12);
|
||||
border-radius: 4px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-tieredmenu.p-tieredmenu-overlay {
|
||||
background: #2b2b2b;
|
||||
|
|
|
@ -4210,7 +4210,7 @@
|
|||
border: 0 none;
|
||||
box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
|
||||
border-radius: 4px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-contextmenu .p-contextmenu-root-list {
|
||||
outline: 0 none;
|
||||
|
@ -4434,14 +4434,14 @@
|
|||
}
|
||||
.p-megamenu .p-submenu-list {
|
||||
padding: 0.5rem 0;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-megamenu .p-submenu-list .p-menuitem-separator {
|
||||
border-top: 1px solid rgba(0, 0, 0, 0.12);
|
||||
margin: 0.5rem 0;
|
||||
}
|
||||
.p-megamenu.p-megamenu-vertical {
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
padding: 0.5rem 0;
|
||||
}
|
||||
.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem > .p-menuitem-content {
|
||||
|
@ -4531,7 +4531,7 @@
|
|||
color: rgba(0, 0, 0, 0.87);
|
||||
border: 1px solid #e5e5e5;
|
||||
border-radius: 4px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-menu .p-menuitem > .p-menuitem-content {
|
||||
color: rgba(0, 0, 0, 0.87);
|
||||
|
@ -4703,7 +4703,7 @@
|
|||
background: #ffffff;
|
||||
border: 0 none;
|
||||
box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-menubar .p-submenu-list .p-menuitem-separator {
|
||||
border-top: 1px solid rgba(0, 0, 0, 0.12);
|
||||
|
@ -5011,7 +5011,7 @@
|
|||
color: rgba(0, 0, 0, 0.87);
|
||||
border: 1px solid #e5e5e5;
|
||||
border-radius: 4px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-tieredmenu.p-tieredmenu-overlay {
|
||||
background: #ffffff;
|
||||
|
|
|
@ -4210,7 +4210,7 @@
|
|||
border: 0 none;
|
||||
box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
|
||||
border-radius: 4px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-contextmenu .p-contextmenu-root-list {
|
||||
outline: 0 none;
|
||||
|
@ -4434,14 +4434,14 @@
|
|||
}
|
||||
.p-megamenu .p-submenu-list {
|
||||
padding: 0.5rem 0;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-megamenu .p-submenu-list .p-menuitem-separator {
|
||||
border-top: 1px solid rgba(0, 0, 0, 0.12);
|
||||
margin: 0.5rem 0;
|
||||
}
|
||||
.p-megamenu.p-megamenu-vertical {
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
padding: 0.5rem 0;
|
||||
}
|
||||
.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem > .p-menuitem-content {
|
||||
|
@ -4531,7 +4531,7 @@
|
|||
color: rgba(0, 0, 0, 0.87);
|
||||
border: 1px solid #e5e5e5;
|
||||
border-radius: 4px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-menu .p-menuitem > .p-menuitem-content {
|
||||
color: rgba(0, 0, 0, 0.87);
|
||||
|
@ -4703,7 +4703,7 @@
|
|||
background: #ffffff;
|
||||
border: 0 none;
|
||||
box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-menubar .p-submenu-list .p-menuitem-separator {
|
||||
border-top: 1px solid rgba(0, 0, 0, 0.12);
|
||||
|
@ -5011,7 +5011,7 @@
|
|||
color: rgba(0, 0, 0, 0.87);
|
||||
border: 1px solid #e5e5e5;
|
||||
border-radius: 4px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-tieredmenu.p-tieredmenu-overlay {
|
||||
background: #ffffff;
|
||||
|
|
|
@ -4214,7 +4214,7 @@
|
|||
border: 0 none;
|
||||
box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
|
||||
border-radius: 4px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-contextmenu .p-contextmenu-root-list {
|
||||
outline: 0 none;
|
||||
|
@ -4438,14 +4438,14 @@
|
|||
}
|
||||
.p-megamenu .p-submenu-list {
|
||||
padding: 0.25rem 0;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-megamenu .p-submenu-list .p-menuitem-separator {
|
||||
border-top: 1px solid #E5E9F0;
|
||||
margin: 0.25rem 0;
|
||||
}
|
||||
.p-megamenu.p-megamenu-vertical {
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
padding: 0.25rem 0;
|
||||
}
|
||||
.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem > .p-menuitem-content {
|
||||
|
@ -4535,7 +4535,7 @@
|
|||
color: #4C566A;
|
||||
border: 1px solid #E5E9F0;
|
||||
border-radius: 4px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-menu .p-menuitem > .p-menuitem-content {
|
||||
color: #4C566A;
|
||||
|
@ -4707,7 +4707,7 @@
|
|||
background: #ffffff;
|
||||
border: 0 none;
|
||||
box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-menubar .p-submenu-list .p-menuitem-separator {
|
||||
border-top: 1px solid #E5E9F0;
|
||||
|
@ -5015,7 +5015,7 @@
|
|||
color: #4C566A;
|
||||
border: 1px solid #E5E9F0;
|
||||
border-radius: 4px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-tieredmenu.p-tieredmenu-overlay {
|
||||
background: #ffffff;
|
||||
|
|
|
@ -4186,7 +4186,7 @@
|
|||
border: 0 none;
|
||||
box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
|
||||
border-radius: 1px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-contextmenu .p-contextmenu-root-list {
|
||||
outline: 0 none;
|
||||
|
@ -4410,14 +4410,14 @@
|
|||
}
|
||||
.p-megamenu .p-submenu-list {
|
||||
padding: 0.25rem 0;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-megamenu .p-submenu-list .p-menuitem-separator {
|
||||
border-top: 1px solid #dee2e6;
|
||||
margin: 0.25rem 0;
|
||||
}
|
||||
.p-megamenu.p-megamenu-vertical {
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
padding: 0.25rem 0;
|
||||
}
|
||||
.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem > .p-menuitem-content {
|
||||
|
@ -4507,7 +4507,7 @@
|
|||
color: #343a3f;
|
||||
border: 1px solid #dee2e6;
|
||||
border-radius: 1px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-menu .p-menuitem > .p-menuitem-content {
|
||||
color: #343a3f;
|
||||
|
@ -4679,7 +4679,7 @@
|
|||
background: #ffffff;
|
||||
border: 0 none;
|
||||
box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-menubar .p-submenu-list .p-menuitem-separator {
|
||||
border-top: 1px solid #dee2e6;
|
||||
|
@ -4987,7 +4987,7 @@
|
|||
color: #343a3f;
|
||||
border: 1px solid #dee2e6;
|
||||
border-radius: 1px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-tieredmenu.p-tieredmenu-overlay {
|
||||
background: #ffffff;
|
||||
|
|
|
@ -4161,7 +4161,7 @@
|
|||
border: 1px solid #c8c8c8;
|
||||
box-shadow: 0 0px 6px 0 rgba(0, 0, 0, 0.16);
|
||||
border-radius: 3px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-contextmenu .p-contextmenu-root-list {
|
||||
outline: 0 none;
|
||||
|
@ -4385,14 +4385,14 @@
|
|||
}
|
||||
.p-megamenu .p-submenu-list {
|
||||
padding: 0;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-megamenu .p-submenu-list .p-menuitem-separator {
|
||||
border-top: 1px solid #d8dae2;
|
||||
margin: 0;
|
||||
}
|
||||
.p-megamenu.p-megamenu-vertical {
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
padding: 0;
|
||||
}
|
||||
.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem > .p-menuitem-content {
|
||||
|
@ -4482,7 +4482,7 @@
|
|||
color: #333333;
|
||||
border: 1px solid #c8c8c8;
|
||||
border-radius: 3px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-menu .p-menuitem > .p-menuitem-content {
|
||||
color: #333333;
|
||||
|
@ -4654,7 +4654,7 @@
|
|||
background: #ffffff;
|
||||
border: 1px solid #c8c8c8;
|
||||
box-shadow: 0 0px 6px 0 rgba(0, 0, 0, 0.16);
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-menubar .p-submenu-list .p-menuitem-separator {
|
||||
border-top: 1px solid #d8dae2;
|
||||
|
@ -4938,7 +4938,7 @@
|
|||
color: #333333;
|
||||
border: 1px solid #c8c8c8;
|
||||
border-radius: 3px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-tieredmenu.p-tieredmenu-overlay {
|
||||
background: #ffffff;
|
||||
|
|
|
@ -4173,7 +4173,7 @@
|
|||
border: 1px solid #c8c8c8;
|
||||
box-shadow: 0 0px 6px 0 rgba(0, 0, 0, 0.16);
|
||||
border-radius: 3px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-contextmenu .p-contextmenu-root-list {
|
||||
outline: 0 none;
|
||||
|
@ -4397,14 +4397,14 @@
|
|||
}
|
||||
.p-megamenu .p-submenu-list {
|
||||
padding: 0;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-megamenu .p-submenu-list .p-menuitem-separator {
|
||||
border-top: 1px solid #d8dae2;
|
||||
margin: 0;
|
||||
}
|
||||
.p-megamenu.p-megamenu-vertical {
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
padding: 0;
|
||||
}
|
||||
.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem > .p-menuitem-content {
|
||||
|
@ -4494,7 +4494,7 @@
|
|||
color: #333333;
|
||||
border: 1px solid #c8c8c8;
|
||||
border-radius: 3px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-menu .p-menuitem > .p-menuitem-content {
|
||||
color: #333333;
|
||||
|
@ -4666,7 +4666,7 @@
|
|||
background: #ffffff;
|
||||
border: 1px solid #c8c8c8;
|
||||
box-shadow: 0 0px 6px 0 rgba(0, 0, 0, 0.16);
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-menubar .p-submenu-list .p-menuitem-separator {
|
||||
border-top: 1px solid #d8dae2;
|
||||
|
@ -4950,7 +4950,7 @@
|
|||
color: #333333;
|
||||
border: 1px solid #c8c8c8;
|
||||
border-radius: 3px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-tieredmenu.p-tieredmenu-overlay {
|
||||
background: #ffffff;
|
||||
|
|
|
@ -4173,7 +4173,7 @@
|
|||
border: 1px solid #c8c8c8;
|
||||
box-shadow: 0 0px 6px 0 rgba(0, 0, 0, 0.16);
|
||||
border-radius: 3px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-contextmenu .p-contextmenu-root-list {
|
||||
outline: 0 none;
|
||||
|
@ -4397,14 +4397,14 @@
|
|||
}
|
||||
.p-megamenu .p-submenu-list {
|
||||
padding: 0;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-megamenu .p-submenu-list .p-menuitem-separator {
|
||||
border-top: 1px solid #d8dae2;
|
||||
margin: 0;
|
||||
}
|
||||
.p-megamenu.p-megamenu-vertical {
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
padding: 0;
|
||||
}
|
||||
.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem > .p-menuitem-content {
|
||||
|
@ -4494,7 +4494,7 @@
|
|||
color: #333333;
|
||||
border: 1px solid #c8c8c8;
|
||||
border-radius: 3px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-menu .p-menuitem > .p-menuitem-content {
|
||||
color: #333333;
|
||||
|
@ -4666,7 +4666,7 @@
|
|||
background: #ffffff;
|
||||
border: 1px solid #c8c8c8;
|
||||
box-shadow: 0 0px 6px 0 rgba(0, 0, 0, 0.16);
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-menubar .p-submenu-list .p-menuitem-separator {
|
||||
border-top: 1px solid #d8dae2;
|
||||
|
@ -4950,7 +4950,7 @@
|
|||
color: #333333;
|
||||
border: 1px solid #c8c8c8;
|
||||
border-radius: 3px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-tieredmenu.p-tieredmenu-overlay {
|
||||
background: #ffffff;
|
||||
|
|
|
@ -4173,7 +4173,7 @@
|
|||
border: 1px solid #c8c8c8;
|
||||
box-shadow: 0 0px 6px 0 rgba(0, 0, 0, 0.16);
|
||||
border-radius: 3px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-contextmenu .p-contextmenu-root-list {
|
||||
outline: 0 none;
|
||||
|
@ -4397,14 +4397,14 @@
|
|||
}
|
||||
.p-megamenu .p-submenu-list {
|
||||
padding: 0;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-megamenu .p-submenu-list .p-menuitem-separator {
|
||||
border-top: 1px solid #d8dae2;
|
||||
margin: 0;
|
||||
}
|
||||
.p-megamenu.p-megamenu-vertical {
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
padding: 0;
|
||||
}
|
||||
.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem > .p-menuitem-content {
|
||||
|
@ -4494,7 +4494,7 @@
|
|||
color: #333333;
|
||||
border: 1px solid #c8c8c8;
|
||||
border-radius: 3px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-menu .p-menuitem > .p-menuitem-content {
|
||||
color: #333333;
|
||||
|
@ -4666,7 +4666,7 @@
|
|||
background: #ffffff;
|
||||
border: 1px solid #c8c8c8;
|
||||
box-shadow: 0 0px 6px 0 rgba(0, 0, 0, 0.16);
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-menubar .p-submenu-list .p-menuitem-separator {
|
||||
border-top: 1px solid #d8dae2;
|
||||
|
@ -4950,7 +4950,7 @@
|
|||
color: #333333;
|
||||
border: 1px solid #c8c8c8;
|
||||
border-radius: 3px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-tieredmenu.p-tieredmenu-overlay {
|
||||
background: #ffffff;
|
||||
|
|
|
@ -4161,7 +4161,7 @@
|
|||
border: 1px solid #eaeaea;
|
||||
box-shadow: 0 0px 6px 0 rgba(0, 0, 0, 0.16);
|
||||
border-radius: 2px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-contextmenu .p-contextmenu-root-list {
|
||||
outline: 0 none;
|
||||
|
@ -4385,14 +4385,14 @@
|
|||
}
|
||||
.p-megamenu .p-submenu-list {
|
||||
padding: 0;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-megamenu .p-submenu-list .p-menuitem-separator {
|
||||
border-top: 1px solid #dadada;
|
||||
margin: 0;
|
||||
}
|
||||
.p-megamenu.p-megamenu-vertical {
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
padding: 0;
|
||||
}
|
||||
.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem > .p-menuitem-content {
|
||||
|
@ -4482,7 +4482,7 @@
|
|||
color: #666666;
|
||||
border: 1px solid #c8c8c8;
|
||||
border-radius: 2px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-menu .p-menuitem > .p-menuitem-content {
|
||||
color: #666666;
|
||||
|
@ -4654,7 +4654,7 @@
|
|||
background: #ffffff;
|
||||
border: 1px solid #eaeaea;
|
||||
box-shadow: 0 0px 6px 0 rgba(0, 0, 0, 0.16);
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-menubar .p-submenu-list .p-menuitem-separator {
|
||||
border-top: 1px solid #dadada;
|
||||
|
@ -4938,7 +4938,7 @@
|
|||
color: #666666;
|
||||
border: 1px solid #c8c8c8;
|
||||
border-radius: 2px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-tieredmenu.p-tieredmenu-overlay {
|
||||
background: #ffffff;
|
||||
|
|
|
@ -4186,7 +4186,7 @@
|
|||
border: 0 none;
|
||||
box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
|
||||
border-radius: 3px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-contextmenu .p-contextmenu-root-list {
|
||||
outline: 0 none;
|
||||
|
@ -4410,14 +4410,14 @@
|
|||
}
|
||||
.p-megamenu .p-submenu-list {
|
||||
padding: 0.25rem 0;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-megamenu .p-submenu-list .p-menuitem-separator {
|
||||
border-top: 1px solid #dee2e6;
|
||||
margin: 0.25rem 0;
|
||||
}
|
||||
.p-megamenu.p-megamenu-vertical {
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
padding: 0.25rem 0;
|
||||
}
|
||||
.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem > .p-menuitem-content {
|
||||
|
@ -4507,7 +4507,7 @@
|
|||
color: #495057;
|
||||
border: 1px solid #dee2e6;
|
||||
border-radius: 3px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-menu .p-menuitem > .p-menuitem-content {
|
||||
color: #495057;
|
||||
|
@ -4679,7 +4679,7 @@
|
|||
background: #ffffff;
|
||||
border: 0 none;
|
||||
box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-menubar .p-submenu-list .p-menuitem-separator {
|
||||
border-top: 1px solid #dee2e6;
|
||||
|
@ -4987,7 +4987,7 @@
|
|||
color: #495057;
|
||||
border: 1px solid #dee2e6;
|
||||
border-radius: 3px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-tieredmenu.p-tieredmenu-overlay {
|
||||
background: #ffffff;
|
||||
|
|
|
@ -4186,7 +4186,7 @@
|
|||
border: 0 none;
|
||||
box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
|
||||
border-radius: 3px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-contextmenu .p-contextmenu-root-list {
|
||||
outline: 0 none;
|
||||
|
@ -4410,14 +4410,14 @@
|
|||
}
|
||||
.p-megamenu .p-submenu-list {
|
||||
padding: 0.25rem 0;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-megamenu .p-submenu-list .p-menuitem-separator {
|
||||
border-top: 1px solid #dee2e6;
|
||||
margin: 0.25rem 0;
|
||||
}
|
||||
.p-megamenu.p-megamenu-vertical {
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
padding: 0.25rem 0;
|
||||
}
|
||||
.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem > .p-menuitem-content {
|
||||
|
@ -4507,7 +4507,7 @@
|
|||
color: #495057;
|
||||
border: 1px solid #dee2e6;
|
||||
border-radius: 3px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-menu .p-menuitem > .p-menuitem-content {
|
||||
color: #495057;
|
||||
|
@ -4679,7 +4679,7 @@
|
|||
background: #ffffff;
|
||||
border: 0 none;
|
||||
box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-menubar .p-submenu-list .p-menuitem-separator {
|
||||
border-top: 1px solid #dee2e6;
|
||||
|
@ -4987,7 +4987,7 @@
|
|||
color: #495057;
|
||||
border: 1px solid #dee2e6;
|
||||
border-radius: 3px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-tieredmenu.p-tieredmenu-overlay {
|
||||
background: #ffffff;
|
||||
|
|
|
@ -4186,7 +4186,7 @@
|
|||
border: 0 none;
|
||||
box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
|
||||
border-radius: 3px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-contextmenu .p-contextmenu-root-list {
|
||||
outline: 0 none;
|
||||
|
@ -4410,14 +4410,14 @@
|
|||
}
|
||||
.p-megamenu .p-submenu-list {
|
||||
padding: 0.25rem 0;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-megamenu .p-submenu-list .p-menuitem-separator {
|
||||
border-top: 1px solid #dee2e6;
|
||||
margin: 0.25rem 0;
|
||||
}
|
||||
.p-megamenu.p-megamenu-vertical {
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
padding: 0.25rem 0;
|
||||
}
|
||||
.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem > .p-menuitem-content {
|
||||
|
@ -4507,7 +4507,7 @@
|
|||
color: #495057;
|
||||
border: 1px solid #dee2e6;
|
||||
border-radius: 3px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-menu .p-menuitem > .p-menuitem-content {
|
||||
color: #495057;
|
||||
|
@ -4679,7 +4679,7 @@
|
|||
background: #ffffff;
|
||||
border: 0 none;
|
||||
box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-menubar .p-submenu-list .p-menuitem-separator {
|
||||
border-top: 1px solid #dee2e6;
|
||||
|
@ -4987,7 +4987,7 @@
|
|||
color: #495057;
|
||||
border: 1px solid #dee2e6;
|
||||
border-radius: 3px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-tieredmenu.p-tieredmenu-overlay {
|
||||
background: #ffffff;
|
||||
|
|
|
@ -4186,7 +4186,7 @@
|
|||
border: 0 none;
|
||||
box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
|
||||
border-radius: 3px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-contextmenu .p-contextmenu-root-list {
|
||||
outline: 0 none;
|
||||
|
@ -4410,14 +4410,14 @@
|
|||
}
|
||||
.p-megamenu .p-submenu-list {
|
||||
padding: 0.25rem 0;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-megamenu .p-submenu-list .p-menuitem-separator {
|
||||
border-top: 1px solid #dee2e6;
|
||||
margin: 0.25rem 0;
|
||||
}
|
||||
.p-megamenu.p-megamenu-vertical {
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
padding: 0.25rem 0;
|
||||
}
|
||||
.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem > .p-menuitem-content {
|
||||
|
@ -4507,7 +4507,7 @@
|
|||
color: #495057;
|
||||
border: 1px solid #dee2e6;
|
||||
border-radius: 3px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-menu .p-menuitem > .p-menuitem-content {
|
||||
color: #495057;
|
||||
|
@ -4679,7 +4679,7 @@
|
|||
background: #ffffff;
|
||||
border: 0 none;
|
||||
box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-menubar .p-submenu-list .p-menuitem-separator {
|
||||
border-top: 1px solid #dee2e6;
|
||||
|
@ -4987,7 +4987,7 @@
|
|||
color: #495057;
|
||||
border: 1px solid #dee2e6;
|
||||
border-radius: 3px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-tieredmenu.p-tieredmenu-overlay {
|
||||
background: #ffffff;
|
||||
|
|
|
@ -4185,7 +4185,7 @@
|
|||
border: 1px solid #3e4053;
|
||||
box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
|
||||
border-radius: 6px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-contextmenu .p-contextmenu-root-list {
|
||||
outline: 0 none;
|
||||
|
@ -4409,14 +4409,14 @@
|
|||
}
|
||||
.p-megamenu .p-submenu-list {
|
||||
padding: 0.25rem 0;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-megamenu .p-submenu-list .p-menuitem-separator {
|
||||
border-top: 1px solid #3e4053;
|
||||
margin: 0.25rem 0;
|
||||
}
|
||||
.p-megamenu.p-megamenu-vertical {
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
padding: 0.25rem 0;
|
||||
}
|
||||
.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem > .p-menuitem-content {
|
||||
|
@ -4506,7 +4506,7 @@
|
|||
color: rgba(255, 255, 255, 0.87);
|
||||
border: 1px solid #3e4053;
|
||||
border-radius: 6px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-menu .p-menuitem > .p-menuitem-content {
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
|
@ -4678,7 +4678,7 @@
|
|||
background: #333544;
|
||||
border: 1px solid #3e4053;
|
||||
box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-menubar .p-submenu-list .p-menuitem-separator {
|
||||
border-top: 1px solid #3e4053;
|
||||
|
@ -4962,7 +4962,7 @@
|
|||
color: rgba(255, 255, 255, 0.87);
|
||||
border: 1px solid #3e4053;
|
||||
border-radius: 6px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-tieredmenu.p-tieredmenu-overlay {
|
||||
background: #333544;
|
||||
|
|
|
@ -4185,7 +4185,7 @@
|
|||
border: 0 none;
|
||||
box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
|
||||
border-radius: 6px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-contextmenu .p-contextmenu-root-list {
|
||||
outline: 0 none;
|
||||
|
@ -4409,14 +4409,14 @@
|
|||
}
|
||||
.p-megamenu .p-submenu-list {
|
||||
padding: 0.25rem 0;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-megamenu .p-submenu-list .p-menuitem-separator {
|
||||
border-top: 1px solid #dfe7ef;
|
||||
margin: 0.25rem 0;
|
||||
}
|
||||
.p-megamenu.p-megamenu-vertical {
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
padding: 0.25rem 0;
|
||||
}
|
||||
.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem > .p-menuitem-content {
|
||||
|
@ -4506,7 +4506,7 @@
|
|||
color: #043d75;
|
||||
border: 1px solid #dfe7ef;
|
||||
border-radius: 6px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-menu .p-menuitem > .p-menuitem-content {
|
||||
color: #043d75;
|
||||
|
@ -4678,7 +4678,7 @@
|
|||
background: #eff3f8;
|
||||
border: 0 none;
|
||||
box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-menubar .p-submenu-list .p-menuitem-separator {
|
||||
border-top: 1px solid #dfe7ef;
|
||||
|
@ -4962,7 +4962,7 @@
|
|||
color: #043d75;
|
||||
border: 1px solid #dfe7ef;
|
||||
border-radius: 6px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-tieredmenu.p-tieredmenu-overlay {
|
||||
background: #eff3f8;
|
||||
|
|
|
@ -4221,7 +4221,7 @@
|
|||
border: 0 none;
|
||||
box-shadow: 0 0 #0000, 0 0 #0000, 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
|
||||
border-radius: 0.375rem;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-contextmenu .p-contextmenu-root-list {
|
||||
outline: 0 none;
|
||||
|
@ -4445,14 +4445,14 @@
|
|||
}
|
||||
.p-megamenu .p-submenu-list {
|
||||
padding: 0.25rem 0;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-megamenu .p-submenu-list .p-menuitem-separator {
|
||||
border-top: 1px solid #f3f4f6;
|
||||
margin: 0.25rem 0;
|
||||
}
|
||||
.p-megamenu.p-megamenu-vertical {
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
padding: 0.25rem 0;
|
||||
}
|
||||
.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem > .p-menuitem-content {
|
||||
|
@ -4542,7 +4542,7 @@
|
|||
color: #3f3f46;
|
||||
border: 1px solid #e5e7eb;
|
||||
border-radius: 0.375rem;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-menu .p-menuitem > .p-menuitem-content {
|
||||
color: #3f3f46;
|
||||
|
@ -4714,7 +4714,7 @@
|
|||
background: #ffffff;
|
||||
border: 0 none;
|
||||
box-shadow: 0 0 #0000, 0 0 #0000, 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-menubar .p-submenu-list .p-menuitem-separator {
|
||||
border-top: 1px solid #f3f4f6;
|
||||
|
@ -5022,7 +5022,7 @@
|
|||
color: #3f3f46;
|
||||
border: 1px solid #e5e7eb;
|
||||
border-radius: 0.375rem;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-tieredmenu.p-tieredmenu-overlay {
|
||||
background: #ffffff;
|
||||
|
|
|
@ -4186,7 +4186,7 @@
|
|||
border: 1px solid #304562;
|
||||
box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
|
||||
border-radius: 3px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-contextmenu .p-contextmenu-root-list {
|
||||
outline: 0 none;
|
||||
|
@ -4410,14 +4410,14 @@
|
|||
}
|
||||
.p-megamenu .p-submenu-list {
|
||||
padding: 0.25rem 0;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-megamenu .p-submenu-list .p-menuitem-separator {
|
||||
border-top: 1px solid #304562;
|
||||
margin: 0.25rem 0;
|
||||
}
|
||||
.p-megamenu.p-megamenu-vertical {
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
padding: 0.25rem 0;
|
||||
}
|
||||
.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem > .p-menuitem-content {
|
||||
|
@ -4507,7 +4507,7 @@
|
|||
color: rgba(255, 255, 255, 0.87);
|
||||
border: 1px solid #304562;
|
||||
border-radius: 3px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-menu .p-menuitem > .p-menuitem-content {
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
|
@ -4679,7 +4679,7 @@
|
|||
background: #1f2d40;
|
||||
border: 1px solid #304562;
|
||||
box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-menubar .p-submenu-list .p-menuitem-separator {
|
||||
border-top: 1px solid #304562;
|
||||
|
@ -4987,7 +4987,7 @@
|
|||
color: rgba(255, 255, 255, 0.87);
|
||||
border: 1px solid #304562;
|
||||
border-radius: 3px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-tieredmenu.p-tieredmenu-overlay {
|
||||
background: #1f2d40;
|
||||
|
|
|
@ -4186,7 +4186,7 @@
|
|||
border: 1px solid #304562;
|
||||
box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
|
||||
border-radius: 3px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-contextmenu .p-contextmenu-root-list {
|
||||
outline: 0 none;
|
||||
|
@ -4410,14 +4410,14 @@
|
|||
}
|
||||
.p-megamenu .p-submenu-list {
|
||||
padding: 0.25rem 0;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-megamenu .p-submenu-list .p-menuitem-separator {
|
||||
border-top: 1px solid #304562;
|
||||
margin: 0.25rem 0;
|
||||
}
|
||||
.p-megamenu.p-megamenu-vertical {
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
padding: 0.25rem 0;
|
||||
}
|
||||
.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem > .p-menuitem-content {
|
||||
|
@ -4507,7 +4507,7 @@
|
|||
color: rgba(255, 255, 255, 0.87);
|
||||
border: 1px solid #304562;
|
||||
border-radius: 3px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-menu .p-menuitem > .p-menuitem-content {
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
|
@ -4679,7 +4679,7 @@
|
|||
background: #1f2d40;
|
||||
border: 1px solid #304562;
|
||||
box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-menubar .p-submenu-list .p-menuitem-separator {
|
||||
border-top: 1px solid #304562;
|
||||
|
@ -4987,7 +4987,7 @@
|
|||
color: rgba(255, 255, 255, 0.87);
|
||||
border: 1px solid #304562;
|
||||
border-radius: 3px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-tieredmenu.p-tieredmenu-overlay {
|
||||
background: #1f2d40;
|
||||
|
|
|
@ -4186,7 +4186,7 @@
|
|||
border: 1px solid #304562;
|
||||
box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
|
||||
border-radius: 3px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-contextmenu .p-contextmenu-root-list {
|
||||
outline: 0 none;
|
||||
|
@ -4410,14 +4410,14 @@
|
|||
}
|
||||
.p-megamenu .p-submenu-list {
|
||||
padding: 0.25rem 0;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-megamenu .p-submenu-list .p-menuitem-separator {
|
||||
border-top: 1px solid #304562;
|
||||
margin: 0.25rem 0;
|
||||
}
|
||||
.p-megamenu.p-megamenu-vertical {
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
padding: 0.25rem 0;
|
||||
}
|
||||
.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem > .p-menuitem-content {
|
||||
|
@ -4507,7 +4507,7 @@
|
|||
color: rgba(255, 255, 255, 0.87);
|
||||
border: 1px solid #304562;
|
||||
border-radius: 3px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-menu .p-menuitem > .p-menuitem-content {
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
|
@ -4679,7 +4679,7 @@
|
|||
background: #1f2d40;
|
||||
border: 1px solid #304562;
|
||||
box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-menubar .p-submenu-list .p-menuitem-separator {
|
||||
border-top: 1px solid #304562;
|
||||
|
@ -4987,7 +4987,7 @@
|
|||
color: rgba(255, 255, 255, 0.87);
|
||||
border: 1px solid #304562;
|
||||
border-radius: 3px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-tieredmenu.p-tieredmenu-overlay {
|
||||
background: #1f2d40;
|
||||
|
|
|
@ -4186,7 +4186,7 @@
|
|||
border: 1px solid #304562;
|
||||
box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
|
||||
border-radius: 3px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-contextmenu .p-contextmenu-root-list {
|
||||
outline: 0 none;
|
||||
|
@ -4410,14 +4410,14 @@
|
|||
}
|
||||
.p-megamenu .p-submenu-list {
|
||||
padding: 0.25rem 0;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-megamenu .p-submenu-list .p-menuitem-separator {
|
||||
border-top: 1px solid #304562;
|
||||
margin: 0.25rem 0;
|
||||
}
|
||||
.p-megamenu.p-megamenu-vertical {
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
padding: 0.25rem 0;
|
||||
}
|
||||
.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem > .p-menuitem-content {
|
||||
|
@ -4507,7 +4507,7 @@
|
|||
color: rgba(255, 255, 255, 0.87);
|
||||
border: 1px solid #304562;
|
||||
border-radius: 3px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-menu .p-menuitem > .p-menuitem-content {
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
|
@ -4679,7 +4679,7 @@
|
|||
background: #1f2d40;
|
||||
border: 1px solid #304562;
|
||||
box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-menubar .p-submenu-list .p-menuitem-separator {
|
||||
border-top: 1px solid #304562;
|
||||
|
@ -4987,7 +4987,7 @@
|
|||
color: rgba(255, 255, 255, 0.87);
|
||||
border: 1px solid #304562;
|
||||
border-radius: 3px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-tieredmenu.p-tieredmenu-overlay {
|
||||
background: #1f2d40;
|
||||
|
|
|
@ -4218,7 +4218,7 @@
|
|||
border: 2px solid #263238;
|
||||
box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
|
||||
border-radius: 6px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-contextmenu .p-contextmenu-root-list {
|
||||
outline: 0 none;
|
||||
|
@ -4442,14 +4442,14 @@
|
|||
}
|
||||
.p-megamenu .p-submenu-list {
|
||||
padding: 0.5rem 0.5rem;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-megamenu .p-submenu-list .p-menuitem-separator {
|
||||
border-top: 1px solid #263238;
|
||||
margin: 4px 0;
|
||||
}
|
||||
.p-megamenu.p-megamenu-vertical {
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
padding: 0.5rem 0.5rem;
|
||||
}
|
||||
.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem > .p-menuitem-content {
|
||||
|
@ -4539,7 +4539,7 @@
|
|||
color: rgba(255, 255, 255, 0.87);
|
||||
border: 2px solid #263238;
|
||||
border-radius: 6px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-menu .p-menuitem > .p-menuitem-content {
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
|
@ -4711,7 +4711,7 @@
|
|||
background: #161d21;
|
||||
border: 2px solid #263238;
|
||||
box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-menubar .p-submenu-list .p-menuitem-separator {
|
||||
border-top: 1px solid #263238;
|
||||
|
@ -5019,7 +5019,7 @@
|
|||
color: rgba(255, 255, 255, 0.87);
|
||||
border: 2px solid #263238;
|
||||
border-radius: 6px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-tieredmenu.p-tieredmenu-overlay {
|
||||
background: #161d21;
|
||||
|
|
|
@ -4218,7 +4218,7 @@
|
|||
border: 0 none;
|
||||
box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
|
||||
border-radius: 6px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-contextmenu .p-contextmenu-root-list {
|
||||
outline: 0 none;
|
||||
|
@ -4442,14 +4442,14 @@
|
|||
}
|
||||
.p-megamenu .p-submenu-list {
|
||||
padding: 0.5rem 0.5rem;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-megamenu .p-submenu-list .p-menuitem-separator {
|
||||
border-top: 1px solid #ebebeb;
|
||||
margin: 4px 0;
|
||||
}
|
||||
.p-megamenu.p-megamenu-vertical {
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
padding: 0.5rem 0.5rem;
|
||||
}
|
||||
.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem > .p-menuitem-content {
|
||||
|
@ -4539,7 +4539,7 @@
|
|||
color: #6c6c6c;
|
||||
border: 2px solid #ebebeb;
|
||||
border-radius: 6px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-menu .p-menuitem > .p-menuitem-content {
|
||||
color: #6c6c6c;
|
||||
|
@ -4711,7 +4711,7 @@
|
|||
background: #ffffff;
|
||||
border: 0 none;
|
||||
box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-menubar .p-submenu-list .p-menuitem-separator {
|
||||
border-top: 1px solid #ebebeb;
|
||||
|
@ -5019,7 +5019,7 @@
|
|||
color: #6c6c6c;
|
||||
border: 2px solid #ebebeb;
|
||||
border-radius: 6px;
|
||||
width: 12.5rem;
|
||||
min-width: 12.5rem;
|
||||
}
|
||||
.p-tieredmenu.p-tieredmenu-overlay {
|
||||
background: #ffffff;
|
||||
|
|
Loading…
Reference in New Issue