diff --git a/components/lib/megamenu/style/MegaMenuStyle.js b/components/lib/megamenu/style/MegaMenuStyle.js index ec0db0695..0963af535 100644 --- a/components/lib/megamenu/style/MegaMenuStyle.js +++ b/components/lib/megamenu/style/MegaMenuStyle.js @@ -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; diff --git a/components/lib/menu/Menu.vue b/components/lib/menu/Menu.vue index 99728ee91..501a7abbf 100644 --- a/components/lib/menu/Menu.vue +++ b/components/lib/menu/Menu.vue @@ -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) { diff --git a/components/lib/tieredmenu/TieredMenu.vue b/components/lib/tieredmenu/TieredMenu.vue index ee187ec0b..dc3b7b284 100755 --- a/components/lib/tieredmenu/TieredMenu.vue +++ b/components/lib/tieredmenu/TieredMenu.vue @@ -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) { diff --git a/public/themes/arya-blue/theme.css b/public/themes/arya-blue/theme.css index 548cbdaba..dfde0d228 100644 --- a/public/themes/arya-blue/theme.css +++ b/public/themes/arya-blue/theme.css @@ -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; diff --git a/public/themes/arya-green/theme.css b/public/themes/arya-green/theme.css index 19568bdb4..58fededf4 100644 --- a/public/themes/arya-green/theme.css +++ b/public/themes/arya-green/theme.css @@ -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; diff --git a/public/themes/arya-orange/theme.css b/public/themes/arya-orange/theme.css index 5e36becfc..b76e84fa6 100644 --- a/public/themes/arya-orange/theme.css +++ b/public/themes/arya-orange/theme.css @@ -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; diff --git a/public/themes/arya-purple/theme.css b/public/themes/arya-purple/theme.css index b29a50759..489bbb9ea 100644 --- a/public/themes/arya-purple/theme.css +++ b/public/themes/arya-purple/theme.css @@ -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; diff --git a/public/themes/bootstrap4-dark-blue/theme.css b/public/themes/bootstrap4-dark-blue/theme.css index 7cd8c9b1a..b4ac8b06f 100644 --- a/public/themes/bootstrap4-dark-blue/theme.css +++ b/public/themes/bootstrap4-dark-blue/theme.css @@ -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; diff --git a/public/themes/bootstrap4-dark-purple/theme.css b/public/themes/bootstrap4-dark-purple/theme.css index 8a360a9ef..86cd73584 100644 --- a/public/themes/bootstrap4-dark-purple/theme.css +++ b/public/themes/bootstrap4-dark-purple/theme.css @@ -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; diff --git a/public/themes/bootstrap4-light-blue/theme.css b/public/themes/bootstrap4-light-blue/theme.css index 7e5125716..1f7e6a5d3 100644 --- a/public/themes/bootstrap4-light-blue/theme.css +++ b/public/themes/bootstrap4-light-blue/theme.css @@ -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; diff --git a/public/themes/bootstrap4-light-purple/theme.css b/public/themes/bootstrap4-light-purple/theme.css index 9cea84eef..3be9c6eb8 100644 --- a/public/themes/bootstrap4-light-purple/theme.css +++ b/public/themes/bootstrap4-light-purple/theme.css @@ -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; diff --git a/public/themes/fluent-light/theme.css b/public/themes/fluent-light/theme.css index a34362d0d..32eb9af73 100644 --- a/public/themes/fluent-light/theme.css +++ b/public/themes/fluent-light/theme.css @@ -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; diff --git a/public/themes/lara-dark-amber/theme.css b/public/themes/lara-dark-amber/theme.css index 8272fd26a..acc56520f 100644 --- a/public/themes/lara-dark-amber/theme.css +++ b/public/themes/lara-dark-amber/theme.css @@ -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; diff --git a/public/themes/lara-dark-blue/theme.css b/public/themes/lara-dark-blue/theme.css index b4197d549..f1a14faa5 100644 --- a/public/themes/lara-dark-blue/theme.css +++ b/public/themes/lara-dark-blue/theme.css @@ -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; diff --git a/public/themes/lara-dark-cyan/theme.css b/public/themes/lara-dark-cyan/theme.css index 3e97f0d35..25e455251 100644 --- a/public/themes/lara-dark-cyan/theme.css +++ b/public/themes/lara-dark-cyan/theme.css @@ -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; diff --git a/public/themes/lara-dark-green/theme.css b/public/themes/lara-dark-green/theme.css index 1f65c1fef..0b90081b7 100644 --- a/public/themes/lara-dark-green/theme.css +++ b/public/themes/lara-dark-green/theme.css @@ -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; diff --git a/public/themes/lara-dark-indigo/theme.css b/public/themes/lara-dark-indigo/theme.css index 55fdb49e3..5aad377c1 100644 --- a/public/themes/lara-dark-indigo/theme.css +++ b/public/themes/lara-dark-indigo/theme.css @@ -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; diff --git a/public/themes/lara-dark-pink/theme.css b/public/themes/lara-dark-pink/theme.css index 91d536bb8..4055ecf53 100644 --- a/public/themes/lara-dark-pink/theme.css +++ b/public/themes/lara-dark-pink/theme.css @@ -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; diff --git a/public/themes/lara-dark-purple/theme.css b/public/themes/lara-dark-purple/theme.css index a3c89e9b7..0a67a2326 100644 --- a/public/themes/lara-dark-purple/theme.css +++ b/public/themes/lara-dark-purple/theme.css @@ -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; diff --git a/public/themes/lara-dark-teal/theme.css b/public/themes/lara-dark-teal/theme.css index 3325e2df7..e31058246 100644 --- a/public/themes/lara-dark-teal/theme.css +++ b/public/themes/lara-dark-teal/theme.css @@ -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; diff --git a/public/themes/lara-light-amber/theme.css b/public/themes/lara-light-amber/theme.css index c0f625268..a20b6a039 100644 --- a/public/themes/lara-light-amber/theme.css +++ b/public/themes/lara-light-amber/theme.css @@ -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; diff --git a/public/themes/lara-light-blue/theme.css b/public/themes/lara-light-blue/theme.css index a115ef60a..c46eb3c5a 100644 --- a/public/themes/lara-light-blue/theme.css +++ b/public/themes/lara-light-blue/theme.css @@ -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; diff --git a/public/themes/lara-light-cyan/theme.css b/public/themes/lara-light-cyan/theme.css index ed86230e9..0b0583550 100644 --- a/public/themes/lara-light-cyan/theme.css +++ b/public/themes/lara-light-cyan/theme.css @@ -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; diff --git a/public/themes/lara-light-green/theme.css b/public/themes/lara-light-green/theme.css index 169c12eaf..8d7aa7bc7 100644 --- a/public/themes/lara-light-green/theme.css +++ b/public/themes/lara-light-green/theme.css @@ -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; diff --git a/public/themes/lara-light-indigo/theme.css b/public/themes/lara-light-indigo/theme.css index 84b821c73..39a312618 100644 --- a/public/themes/lara-light-indigo/theme.css +++ b/public/themes/lara-light-indigo/theme.css @@ -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; diff --git a/public/themes/lara-light-pink/theme.css b/public/themes/lara-light-pink/theme.css index c414b8b9f..0ca5ae9c9 100644 --- a/public/themes/lara-light-pink/theme.css +++ b/public/themes/lara-light-pink/theme.css @@ -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; diff --git a/public/themes/lara-light-purple/theme.css b/public/themes/lara-light-purple/theme.css index f97102daa..122ff6a26 100644 --- a/public/themes/lara-light-purple/theme.css +++ b/public/themes/lara-light-purple/theme.css @@ -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; diff --git a/public/themes/lara-light-teal/theme.css b/public/themes/lara-light-teal/theme.css index c3b8c0477..6e3fe6be7 100644 --- a/public/themes/lara-light-teal/theme.css +++ b/public/themes/lara-light-teal/theme.css @@ -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; diff --git a/public/themes/luna-amber/theme.css b/public/themes/luna-amber/theme.css index ec1c24a28..1df5127dc 100644 --- a/public/themes/luna-amber/theme.css +++ b/public/themes/luna-amber/theme.css @@ -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; diff --git a/public/themes/luna-blue/theme.css b/public/themes/luna-blue/theme.css index b4cfefc0c..4c24d3735 100644 --- a/public/themes/luna-blue/theme.css +++ b/public/themes/luna-blue/theme.css @@ -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; diff --git a/public/themes/luna-green/theme.css b/public/themes/luna-green/theme.css index b7308b65e..3f74cabec 100644 --- a/public/themes/luna-green/theme.css +++ b/public/themes/luna-green/theme.css @@ -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; diff --git a/public/themes/luna-pink/theme.css b/public/themes/luna-pink/theme.css index 8480a302b..0328dff7f 100644 --- a/public/themes/luna-pink/theme.css +++ b/public/themes/luna-pink/theme.css @@ -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; diff --git a/public/themes/md-dark-deeppurple/theme.css b/public/themes/md-dark-deeppurple/theme.css index 0503966d6..6391429b6 100644 --- a/public/themes/md-dark-deeppurple/theme.css +++ b/public/themes/md-dark-deeppurple/theme.css @@ -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; diff --git a/public/themes/md-dark-indigo/theme.css b/public/themes/md-dark-indigo/theme.css index a7f6a8d85..0bb69868b 100644 --- a/public/themes/md-dark-indigo/theme.css +++ b/public/themes/md-dark-indigo/theme.css @@ -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; diff --git a/public/themes/md-light-deeppurple/theme.css b/public/themes/md-light-deeppurple/theme.css index e69129eed..147d30764 100644 --- a/public/themes/md-light-deeppurple/theme.css +++ b/public/themes/md-light-deeppurple/theme.css @@ -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; diff --git a/public/themes/md-light-indigo/theme.css b/public/themes/md-light-indigo/theme.css index c3f6beae2..0bf0b6fb3 100644 --- a/public/themes/md-light-indigo/theme.css +++ b/public/themes/md-light-indigo/theme.css @@ -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; diff --git a/public/themes/mdc-dark-deeppurple/theme.css b/public/themes/mdc-dark-deeppurple/theme.css index 374385caa..d362e56dd 100644 --- a/public/themes/mdc-dark-deeppurple/theme.css +++ b/public/themes/mdc-dark-deeppurple/theme.css @@ -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; diff --git a/public/themes/mdc-dark-indigo/theme.css b/public/themes/mdc-dark-indigo/theme.css index dc062e705..6d8972d1e 100644 --- a/public/themes/mdc-dark-indigo/theme.css +++ b/public/themes/mdc-dark-indigo/theme.css @@ -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; diff --git a/public/themes/mdc-light-deeppurple/theme.css b/public/themes/mdc-light-deeppurple/theme.css index 55cf1e72c..36de2f6c9 100644 --- a/public/themes/mdc-light-deeppurple/theme.css +++ b/public/themes/mdc-light-deeppurple/theme.css @@ -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; diff --git a/public/themes/mdc-light-indigo/theme.css b/public/themes/mdc-light-indigo/theme.css index cb98724c8..a9913200d 100644 --- a/public/themes/mdc-light-indigo/theme.css +++ b/public/themes/mdc-light-indigo/theme.css @@ -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; diff --git a/public/themes/mira/theme.css b/public/themes/mira/theme.css index db870df66..741d5381f 100644 --- a/public/themes/mira/theme.css +++ b/public/themes/mira/theme.css @@ -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; diff --git a/public/themes/nano/theme.css b/public/themes/nano/theme.css index 99e6a4d9c..47189036a 100644 --- a/public/themes/nano/theme.css +++ b/public/themes/nano/theme.css @@ -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; diff --git a/public/themes/nova-accent/theme.css b/public/themes/nova-accent/theme.css index 7f4509fa6..9536826d3 100644 --- a/public/themes/nova-accent/theme.css +++ b/public/themes/nova-accent/theme.css @@ -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; diff --git a/public/themes/nova-alt/theme.css b/public/themes/nova-alt/theme.css index d56cb5691..75f0765a8 100644 --- a/public/themes/nova-alt/theme.css +++ b/public/themes/nova-alt/theme.css @@ -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; diff --git a/public/themes/nova-vue/theme.css b/public/themes/nova-vue/theme.css index d60e3e66e..92ee84c86 100644 --- a/public/themes/nova-vue/theme.css +++ b/public/themes/nova-vue/theme.css @@ -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; diff --git a/public/themes/nova/theme.css b/public/themes/nova/theme.css index ff550f8d3..3c4ca73c3 100644 --- a/public/themes/nova/theme.css +++ b/public/themes/nova/theme.css @@ -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; diff --git a/public/themes/rhea/theme.css b/public/themes/rhea/theme.css index 6662ac49f..0427d6755 100644 --- a/public/themes/rhea/theme.css +++ b/public/themes/rhea/theme.css @@ -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; diff --git a/public/themes/saga-blue/theme.css b/public/themes/saga-blue/theme.css index d34eaa018..3204790a0 100644 --- a/public/themes/saga-blue/theme.css +++ b/public/themes/saga-blue/theme.css @@ -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; diff --git a/public/themes/saga-green/theme.css b/public/themes/saga-green/theme.css index a54e4c82f..d2137deca 100644 --- a/public/themes/saga-green/theme.css +++ b/public/themes/saga-green/theme.css @@ -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; diff --git a/public/themes/saga-orange/theme.css b/public/themes/saga-orange/theme.css index 0a949b065..4ecc74ebc 100644 --- a/public/themes/saga-orange/theme.css +++ b/public/themes/saga-orange/theme.css @@ -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; diff --git a/public/themes/saga-purple/theme.css b/public/themes/saga-purple/theme.css index fee768023..92cba79f0 100644 --- a/public/themes/saga-purple/theme.css +++ b/public/themes/saga-purple/theme.css @@ -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; diff --git a/public/themes/soho-dark/theme.css b/public/themes/soho-dark/theme.css index 125b9239f..c4b5513a4 100644 --- a/public/themes/soho-dark/theme.css +++ b/public/themes/soho-dark/theme.css @@ -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; diff --git a/public/themes/soho-light/theme.css b/public/themes/soho-light/theme.css index 60cd8f0bc..8130e9a06 100644 --- a/public/themes/soho-light/theme.css +++ b/public/themes/soho-light/theme.css @@ -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; diff --git a/public/themes/tailwind-light/theme.css b/public/themes/tailwind-light/theme.css index 757fd5a67..3f30abaa1 100644 --- a/public/themes/tailwind-light/theme.css +++ b/public/themes/tailwind-light/theme.css @@ -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; diff --git a/public/themes/vela-blue/theme.css b/public/themes/vela-blue/theme.css index ac3c98bd7..301ec1f44 100644 --- a/public/themes/vela-blue/theme.css +++ b/public/themes/vela-blue/theme.css @@ -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; diff --git a/public/themes/vela-green/theme.css b/public/themes/vela-green/theme.css index 99ab3b235..5c8901bd1 100644 --- a/public/themes/vela-green/theme.css +++ b/public/themes/vela-green/theme.css @@ -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; diff --git a/public/themes/vela-orange/theme.css b/public/themes/vela-orange/theme.css index a561f9686..bc196ed32 100644 --- a/public/themes/vela-orange/theme.css +++ b/public/themes/vela-orange/theme.css @@ -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; diff --git a/public/themes/vela-purple/theme.css b/public/themes/vela-purple/theme.css index 9a9937ab9..51d5d3250 100644 --- a/public/themes/vela-purple/theme.css +++ b/public/themes/vela-purple/theme.css @@ -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; diff --git a/public/themes/viva-dark/theme.css b/public/themes/viva-dark/theme.css index adb880d3f..c33b776ed 100644 --- a/public/themes/viva-dark/theme.css +++ b/public/themes/viva-dark/theme.css @@ -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; diff --git a/public/themes/viva-light/theme.css b/public/themes/viva-light/theme.css index 9f57deb04..b6404664c 100644 --- a/public/themes/viva-light/theme.css +++ b/public/themes/viva-light/theme.css @@ -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;