Table css

This commit is contained in:
cuom1999 2024-05-02 19:13:19 -05:00
parent cad679ad90
commit 8ff0f369a6
7 changed files with 18 additions and 10 deletions

View file

@ -1,6 +1,6 @@
<thead>
<tr>
<th class="header rank">{{ rank_header or _("Rank") }}</th>
<th class="header rank">{{ rank_header or "" }}</th>
{% block after_rank_head %}{% endblock %}
<th class="header username">{{ _('Username') }}{% block username_head_extra %}{% endblock %}</th>
{% block before_point_head %}{% endblock %}

View file

@ -24,8 +24,8 @@
{% block before_table %}{% endblock %}
<div style="overflow-x: scroll;">
<table id="users-table" class="table">
<div style="overflow-x: auto;">
<table id="users-table" class="table striped no-border">
{% block users_table %}{% endblock %}
</table>
</div>

View file

@ -5,7 +5,7 @@
{% endblock %}
{% block after_rank %}
<td><img loading="lazy" style="border: 2px solid lightblue; max-width: none;" class="user-img" src="{{ gravatar(user, 45) }}" height="45px" width="45px"></td>
<td><img loading="lazy" style="max-width: none;" class="user-img" src="{{ gravatar(user, 40) }}" height="40px" width="40px"></td>
{% endblock %}
{% block user_footer %}