mirror of
https://gitlab.com/SIGBUS/nyaa.git
synced 2025-01-25 00:15:12 +00:00
Undo responsive table for reports (#444)
It was removed on purpose in fdb041c23b
.
Instead just add a CSS rule to fix the table header.
This commit is contained in:
parent
0fac1c820d
commit
418856a4bf
|
@ -480,6 +480,10 @@ body.dark .comment-panel:target {
|
||||||
border-color: white;
|
border-color: white;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
body.dark .table > table {
|
||||||
|
background-color: #323232;
|
||||||
|
}
|
||||||
|
|
||||||
/* trusted */
|
/* trusted */
|
||||||
body.dark .torrent-list > tbody > tr.success > td {
|
body.dark .torrent-list > tbody > tr.success > td {
|
||||||
color: inherit;
|
color: inherit;
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
{% block title %}Reports :: {{ config.SITE_NAME }}{% endblock %}
|
{% block title %}Reports :: {{ config.SITE_NAME }}{% endblock %}
|
||||||
{% block body %}
|
{% block body %}
|
||||||
{% from "_formhelpers.html" import render_field %}
|
{% from "_formhelpers.html" import render_field %}
|
||||||
<div class="table-responsive">
|
<div class="table">
|
||||||
<table class="table table-bordered table-hover table-striped table-condensed">
|
<table class="table table-bordered table-hover table-striped table-condensed">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
|
|
Loading…
Reference in a new issue