Skip to content
Snippets Groups Projects
Commit 7fcaf608 authored by Bekerle, Patrizio's avatar Bekerle, Patrizio :fire: Committed by Reiter, Christoph
Browse files

Fix some warnings and add styles.js

parent 17beac5a
No related branches found
No related tags found
No related merge requests found
...@@ -2,6 +2,7 @@ import {i18n} from './i18n.js'; ...@@ -2,6 +2,7 @@ import {i18n} from './i18n.js';
import {html, css, LitElement} from 'lit-element'; import {html, css, LitElement} from 'lit-element';
import JSONLD from 'vpu-common/jsonld' import JSONLD from 'vpu-common/jsonld'
import * as commonUtils from 'vpu-common/utils'; import * as commonUtils from 'vpu-common/utils';
import * as commonStyles from 'vpu-common/styles';
import 'vpu-common/vpu-icon.js'; import 'vpu-common/vpu-icon.js';
/** /**
...@@ -30,7 +31,7 @@ class VPUAuth extends LitElement { ...@@ -30,7 +31,7 @@ class VPUAuth extends LitElement {
this.name = ""; this.name = "";
this.personId = ""; this.personId = "";
this.loggedIn = false; this.loggedIn = false;
this.rememberLogin = false this.rememberLogin = false;
this.person = null; this.person = null;
// Create the events // Create the events
...@@ -241,7 +242,7 @@ class VPUAuth extends LitElement { ...@@ -241,7 +242,7 @@ class VPUAuth extends LitElement {
static get styles() { static get styles() {
// language=css // language=css
return css` return css`
${commonUtils.getThemeCSS()} ${commonStyles.getThemeCSS()}
.dropdown.is-active .dropdown-menu, .dropdown.is-hoverable:hover .dropdown-menu { .dropdown.is-active .dropdown-menu, .dropdown.is-hoverable:hover .dropdown-menu {
display: block; display: block;
...@@ -323,7 +324,7 @@ class VPUAuth extends LitElement { ...@@ -323,7 +324,7 @@ class VPUAuth extends LitElement {
</div> </div>
<div class="dropdown-menu" id="dropdown-menu2" role="menu"> <div class="dropdown-menu" id="dropdown-menu2" role="menu">
<div class="dropdown-content"> <div class="dropdown-content">
${imageURL ? html`<img src="${imageURL}" width="40%" height="40%" class="dropdown-item">` : ''} ${imageURL ? html`<img alt="" src="${imageURL}" width="40%" height="40%" class="dropdown-item">` : ''}
<a href="#" @click="${(e) => {e.preventDefault(); this.dispatchProfileEvent();}}" class="dropdown-item">${i18n.t('profile')}</a> <a href="#" @click="${(e) => {e.preventDefault(); this.dispatchProfileEvent();}}" class="dropdown-item">${i18n.t('profile')}</a>
<a href="#" @click="${this.logout}" class="dropdown-item">${i18n.t('logout')}</a> <a href="#" @click="${this.logout}" class="dropdown-item">${i18n.t('logout')}</a>
</div> </div>
......
common @ 3e995165
Subproject commit e5002ced8cc5b5bba3b89e8e6c928d855635fb86 Subproject commit 3e9951654309c18ae99c19cdc403f3e4336363b0
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment