web: replace pf-icon-arrow
Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
parent
93e8f9cb36
commit
14d990df7f
|
@ -21,37 +21,6 @@
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
</div>
|
</div>
|
||||||
<footer class="pf-c-login__main-footer">
|
<footer class="pf-c-login__main-footer">
|
||||||
{% if config.login.subtext %}
|
|
||||||
<p>{{ config.login.subtext }}</p>
|
|
||||||
{% endif %}
|
|
||||||
<ul class="pf-c-login__main-footer-links">
|
<ul class="pf-c-login__main-footer-links">
|
||||||
{% for source in sources %}
|
|
||||||
<li class="pf-c-login__main-footer-links-item">
|
|
||||||
<a href="{{ source.url }}" class="pf-c-login__main-footer-links-item-link">
|
|
||||||
{% if source.icon_url %}
|
|
||||||
<img src="{{ source.icon_url }}" alt="{{ source.name }}">
|
|
||||||
{% else %}
|
|
||||||
<i class="pf-icon pf-icon-arrow" title="{{ source.name }}"></i>
|
|
||||||
{% endif %}
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
{% endfor %}
|
|
||||||
</ul>
|
</ul>
|
||||||
{% if enroll_url or recovery_url %}
|
|
||||||
<div class="pf-c-login__main-footer-band">
|
|
||||||
{% if enroll_url %}
|
|
||||||
<p class="pf-c-login__main-footer-band-item">
|
|
||||||
{% trans 'Need an account?' %}
|
|
||||||
<a href="{{ enroll_url }}">{% trans 'Sign up.' %}</a>
|
|
||||||
</p>
|
|
||||||
{% endif %}
|
|
||||||
{% if recovery_url %}
|
|
||||||
<p class="pf-c-login__main-footer-band-item">
|
|
||||||
<a href="{{ recovery_url }}">
|
|
||||||
{% trans 'Forgot username or password?' %}
|
|
||||||
</a>
|
|
||||||
</p>
|
|
||||||
{% endif %}
|
|
||||||
</div>
|
|
||||||
{% endif %}
|
|
||||||
</footer>
|
</footer>
|
||||||
|
|
|
@ -71,7 +71,7 @@ export class NotificationDrawer extends LitElement {
|
||||||
<div class="pf-c-notification-drawer__list-item-action">
|
<div class="pf-c-notification-drawer__list-item-action">
|
||||||
${item.event && html`
|
${item.event && html`
|
||||||
<a class="pf-c-dropdown__toggle pf-m-plain" href="#/events/log/${item.event?.pk}">
|
<a class="pf-c-dropdown__toggle pf-m-plain" href="#/events/log/${item.event?.pk}">
|
||||||
<i class="pf-icon pf-icon-arrow"></i>
|
<i class="fas fas fa-share-square"></i>
|
||||||
</a>
|
</a>
|
||||||
`}
|
`}
|
||||||
<button class="pf-c-dropdown__toggle pf-m-plain" type="button" @click=${() => {
|
<button class="pf-c-dropdown__toggle pf-m-plain" type="button" @click=${() => {
|
||||||
|
|
|
@ -122,7 +122,7 @@ export class IdentificationStage extends BaseStage {
|
||||||
}
|
}
|
||||||
|
|
||||||
renderSource(source: UILoginButton): TemplateResult {
|
renderSource(source: UILoginButton): TemplateResult {
|
||||||
let icon = html`<i class="pf-icon pf-icon-arrow" title="${source.name}"></i>`;
|
let icon = html`<i class="fas fas fa-share-square" title="${source.name}"></i>`;
|
||||||
if (source.icon_url) {
|
if (source.icon_url) {
|
||||||
icon = html`<img src="${source.icon_url}" alt="${source.name}">`;
|
icon = html`<img src="${source.icon_url}" alt="${source.name}">`;
|
||||||
}
|
}
|
||||||
|
|
|
@ -58,7 +58,7 @@ export class LibraryApplication extends LitElement {
|
||||||
<div class="pf-c-card__header">
|
<div class="pf-c-card__header">
|
||||||
${this.application.metaIcon
|
${this.application.metaIcon
|
||||||
? html`<img class="app-icon pf-c-avatar" src="${ifDefined(this.application.metaIcon)}" alt="Application Icon"/>`
|
? html`<img class="app-icon pf-c-avatar" src="${ifDefined(this.application.metaIcon)}" alt="Application Icon"/>`
|
||||||
: html`<i class="pf-icon pf-icon-arrow"></i>`}
|
: html`<i class="fas fas fa-share-square"></i>`}
|
||||||
${until(me().then((u) => {
|
${until(me().then((u) => {
|
||||||
if (!u.isSuperuser) return html``;
|
if (!u.isSuperuser) return html``;
|
||||||
return html`
|
return html`
|
||||||
|
|
|
@ -65,7 +65,7 @@ export class ApplicationListPage extends TablePage<Application> {
|
||||||
return [
|
return [
|
||||||
item.metaIcon ?
|
item.metaIcon ?
|
||||||
html`<img class="app-icon pf-c-avatar" src="${item.metaIcon}" alt="${gettext("Application Icon")}">` :
|
html`<img class="app-icon pf-c-avatar" src="${item.metaIcon}" alt="${gettext("Application Icon")}">` :
|
||||||
html`<i class="pf-icon pf-icon-arrow"></i>`,
|
html`<i class="fas fas fa-share-square"></i>`,
|
||||||
html`<a href="#/core/applications/${item.slug}">
|
html`<a href="#/core/applications/${item.slug}">
|
||||||
<div>
|
<div>
|
||||||
${item.name}
|
${item.name}
|
||||||
|
|
Reference in New Issue