Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: display current configured oauth as icon instead of text #2375

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions umap/static/umap/content.css
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ body.login header {
display: inline-block;
}

.login-grid span,
.login-grid a {
border: 1px solid #e5e5e5;
padding: 5px;
Expand Down
4 changes: 2 additions & 2 deletions umap/templates/auth/user_form.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ <h3>
</h3>
<ul>
{% for name in providers %}
<li>
{{ name|title }}
<li class="login-grid">
<span class="login-{{ name }}" title="{{ name }}"></span>
</li>
{% endfor %}
</ul>
Expand Down
Loading