@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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/PdMenu.js +2 -1
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "description": "Progressive development page helper, teaser, menu, footer.",
4
4
  "license": "SEE LICENSE IN LICENSE",
5
5
  "author": "PD Progressive Development",
6
- "version": "0.1.97",
6
+ "version": "0.1.98",
7
7
  "main": "index.js",
8
8
  "module": "index.js",
9
9
  "scripts": {
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}"