Skip to content

Commit

Permalink
refactor out useless btn class
Browse files Browse the repository at this point in the history
  • Loading branch information
JasonGrace2282 committed Oct 18, 2024
1 parent 8e612eb commit 42cf904
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion tin/static/css/login.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.btn.btn-ion {
.btn-ion {
text-decoration: none;
color: #484848;
display: inline-block;
Expand Down
2 changes: 1 addition & 1 deletion tin/templates/assignments/choose_file_action.html
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
{% if course_actions %}
<div class="multi-part-container">
<h2>Your File Actions</h2>
<a class="btn tin-btn" href="{% url 'assignments:create_file_action' course.id %}">Create new file action</a>
<a class="tin-btn" href="{% url 'assignments:create_file_action' course.id %}">Create new file action</a>
</div>


Expand Down
4 changes: 2 additions & 2 deletions tin/templates/login.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@

<div class="login-box">
<a href="{% url 'social:begin' 'ion' %}{% if request.GET.next %}?next={{ request.GET.next | urlencode }}{% endif %}"
class="btn btn-ion">Log in with Ion</a>
class="btn-ion">Log in with Ion</a>
{% if debug %}
<br/>
<a href="
{% url 'auth:password_login' %}{% if request.GET.next %}?next={{ request.GET.next | urlencode }}{% endif %}"
class="btn btn-ion">Password login</a>
class="btn-ion">Password login</a>
{% endif %}
</div>

Expand Down

0 comments on commit 42cf904

Please sign in to comment.