@progressive-development/pd-page 0.1.97 → 0.1.98
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/PdMenu.js +2 -1
package/package.json
CHANGED
package/src/PdMenu.js
CHANGED
|
@@ -94,6 +94,7 @@ export class PdMenu extends LitElement {
|
|
|
94
94
|
flex-direction: column;
|
|
95
95
|
top: 10px;
|
|
96
96
|
right: 15px;
|
|
97
|
+
z-index: 100;
|
|
97
98
|
background-color: var(--pd-menu-burger-bg-col, var(--pd-default-light-col));
|
|
98
99
|
|
|
99
100
|
box-shadow: var(--pd-menu-shadow, 3px 3px 5px grey);
|
|
@@ -322,7 +323,7 @@ export class PdMenu extends LitElement {
|
|
|
322
323
|
${this.selectedLocale}
|
|
323
324
|
<pd-icon class="locale-selection-logo" icon="${toggleArrow}" ?activeIcon="${!this._activeLocaleMenu}"></pd-icon>
|
|
324
325
|
<ul class="menu-ul locale-ul">
|
|
325
|
-
${this.locales.map(locale => html`
|
|
326
|
+
${this.locales.filter(l => l !== this.selectedLocale).map(locale => html`
|
|
326
327
|
<li class="item menu-li burger-li burger-item locale-item"
|
|
327
328
|
data-key="${locale}"
|
|
328
329
|
@click="${this._localeClicked}"
|