Change button style

This commit is contained in:
cuom1999 2022-08-20 11:18:28 -05:00
parent af670f7437
commit f5234dde56
12 changed files with 189 additions and 163 deletions

View file

@ -95,7 +95,7 @@
{% if request.user != user.user %}
<form method="post">
{% csrf_token %}
<button style="width:135px" class="{{ 'unfollow' if followed else 'follow' }}">
<button class="small {{ 'unfollow' if followed else 'follow' }}" style="width:135px">
{% if followed %}
<i class="fa fa-remove"></i>
{{ _('Unfollow') }}
@ -109,7 +109,7 @@
<br>
<div>
<form action="{{ url('all_user_submissions', user.user.username) }}">
<input type="submit" value="{{ _('View submissions') }}" style="width:135px">
<input type="submit" value="{{ _('View submissions') }}" class="small" style="width:135px">
</form>
</div>
{% if request.user.is_authenticated %}
@ -118,7 +118,7 @@
<form action="{{ url('get_or_create_room') }}" method="POST">
{% csrf_token %}
<input type="hidden" value="{{ chat_param(request.profile, user) }}" name="other">
<input type="submit" value="{{ _('Send message') }}" style="width:135px">
<input type="submit" value="{{ _('Send message') }}" style="width:135px" class="small btn-midnightblue">
</form>
</div>
{% endif %}