Add dark theme.

This commit is contained in:
2019-02-15 23:32:21 +01:00
parent 97fd6fcde0
commit 6a6b4015c8
12 changed files with 99 additions and 24 deletions

View File

@@ -35,16 +35,16 @@
{% endfor %}
<td class="col-sm-auto text-center">
<a class="btn btn-dark" href="/seasons/{{ item.id }}"><span class="fas fa-eye"></span></a>
<a class="btn btn-default" href="/seasons/{{ item.id }}"><span class="fas fa-eye"></span></a>
</td>
{% if g.is_editor %}
<td class="col-sm-auto text-center">
<a class="btn btn-dark" href="{{ url_for('season_edit', season_id = item.id) }}">
<a class="btn btn-default" href="{{ url_for('season_edit', season_id = item.id) }}">
<span class="fas fa-pencil-alt"></span>
</a>
<a class="btn btn-dark" href="#">
<a class="btn btn-default" href="#">
<span class="fas fa-plus"></span> Episode
</a>
</td>