cd31: restore a separator between login & register links (#64550)

This commit is contained in:
Frédéric Péters 2022-04-26 09:01:19 +02:00
parent eb696d3ad5
commit 17c4a8df99
2 changed files with 17 additions and 0 deletions

View File

@ -582,3 +582,19 @@ div#login-page {
margin-top: 0;
}
}
#toplinks {
word-spacing: normal;
}
@media ($min-desktop-viewport) {
.user-info--separator {
&::after {
content: "/";
}
}
}
.connected-user {
padding-right: 0.7rem;
}

View File

@ -15,6 +15,7 @@
>{% block user-info-login-label %}{% include "includes/user-info-login-label.html" %}{% endblock %}
{% if registration_url and include_registration_link != False %}
</a>
<span class="user-info--separator"></span>
<a class="registration" href="{{registration_url}}"
>{% block user-info-registration-label %}{% include "includes/user-info-registration-label.html" %}{% endblock %}{% endif %}</a></span>
{% endif %}