Skip to content

Commit

Permalink
fix: Remove erroneous btn-link class
Browse files Browse the repository at this point in the history
Somehow took until BootStrap 5 to notice this lol
  • Loading branch information
vEnhance committed May 22, 2024
1 parent c564d4d commit 48a2c16
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions hanabi/templates/hanabi/hanabicontest_list.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
if you want to earn spades.
</div>
<p class="text-center">
<a href="{% url "hanabi-register" %}" class="btn btn-link btn-primary">Register username</a>
<a href="{% url "hanabi-register" %}" class="btn btn-primary">Register username</a>
<hr />
</p>
{% endif %}
Expand All @@ -36,7 +36,7 @@ <h2>{{ contest.variant_name }}</h2>
{% endif %}
</ul>
<p class="text-center">
<a class="btn btn-link btn-success"
<a class="btn btn-success"
target="_blank"
href="{{ contest.create_table_url }}&password={{ table_password }}">Start table</a>
<br />
Expand Down
2 changes: 1 addition & 1 deletion markets/templates/markets/market_list.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<p class="text-center">
<a href="{% url "market-new" %}"
title="New market"
class="btn btn-link btn-outline-primary">Create new market</a>
class="btn btn-outline-primary">Create new market</a>
</p>
<hr />
{% endif %}
Expand Down
2 changes: 1 addition & 1 deletion markets/templates/markets/market_results.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<button type="submit" name="submit" class="btn btn-outline-danger">Recompute scores</button>
<a href="{% url "admin:markets_market_change" market.pk %}"
title="Edit in Admin"
class="btn btn-link btn-outline-success">Edit market</a>
class="btn btn-outline-success">Edit market</a>
</form>
{% endif %}
<div class="alert alert-dark">
Expand Down
2 changes: 1 addition & 1 deletion opal/templates/opal/opalhunt_list.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ <h1>List of hunts</h1>
{% elif hunt.has_started %}
<div class="alert alert-success">
<h2 class="alert-heading">{{ hunt }}</h2>
<a class="btn btn-link btn-primary" href="{{ hunt.get_absolute_url }}">Show puzzles</a>
<a class="btn btn-primary" href="{{ hunt.get_absolute_url }}">Show puzzles</a>
<p>Event started {{ hunt.start_date }} ({{ hunt.start_date|timesince }} ago).</p>
</div>
{% else %}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ <h1 class="alert-heading">Line length exceeded in solution!</h1>
{% if pk %}
<a id="delete"
href="{% url 'suggest-delete' pk %}"
class="btn btn-link btn-warning"
class="btn btn-warning"
style="margin-left: 50px">Delete Suggestion</a>
{% endif %}
</td>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
{% load otis_extras %}
<p>Here are all the suggestion sets that haven't been checked yet.</p>
<p class="text-center">
<a class="btn btn-link btn-success" href="{% url "suggest-new" %}">
<a class="btn btn-success" href="{% url "suggest-new" %}">
<span class="emoji-text">💡</span>
Submit new suggestion
</a>
Expand Down

0 comments on commit 48a2c16

Please sign in to comment.