Compare commits

...

2 commits

Author SHA1 Message Date
Yohan Boniface
addabbddc3
Merge bf631f07de into 86a8e17aec 2025-01-10 17:09:39 +01:00
Yohan Boniface
bf631f07de fix: display current configured oauth as icon instead of text 2024-12-17 11:44:13 +01:00
2 changed files with 3 additions and 2 deletions

View file

@ -41,6 +41,7 @@ body.login header {
display: inline-block; display: inline-block;
} }
.login-grid span,
.login-grid a { .login-grid a {
border: 1px solid #e5e5e5; border: 1px solid #e5e5e5;
padding: 5px; padding: 5px;

View file

@ -28,8 +28,8 @@
</h3> </h3>
<ul> <ul>
{% for name in providers %} {% for name in providers %}
<li> <li class="login-grid">
{{ name|title }} <span class="login-{{ name }}" title="{{ name }}"></span>
</li> </li>
{% endfor %} {% endfor %}
</ul> </ul>