1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-05-17 21:10:00 +02:00

[ticket/16751] cleanup inline while at it

PHPBB3-16751
This commit is contained in:
hanakin 2021-04-07 18:22:24 -10:00
parent ee998588a2
commit 6fa78f696c
2 changed files with 5 additions and 2 deletions

View File

@ -12,8 +12,7 @@
<dl class="left-box"> <dl class="left-box">
<dt class="profile-avatar">{AVATAR_IMG}</dt> <dt class="profile-avatar">{AVATAR_IMG}</dt>
<!-- EVENT memberlist_view_rank_avatar_before --> <!-- EVENT memberlist_view_rank_avatar_before -->
<!-- IF RANK_TITLE --><dd style="text-align: center;">{RANK_TITLE}</dd><!-- ENDIF --> <!-- IF RANK_TITLE --><dd class="profile-avatar">{RANK_TITLE}</dd><!-- ENDIF -->
{% if RANK_IMG %}<dd class="rank-img" style="text-align: center;">{{ RANK_IMG }}</dd>{% endif %}
<!-- EVENT memberlist_view_rank_avatar_after --> <!-- EVENT memberlist_view_rank_avatar_after -->
</dl> </dl>
<!-- ENDIF --> <!-- ENDIF -->

View File

@ -833,6 +833,10 @@ dd.profile-contact {
} }
/* Profile used on view-profile */ /* Profile used on view-profile */
.profile-avatar {
text-align: center;
}
.profile-avatar img { .profile-avatar img {
max-width: 100%; max-width: 100%;
} }