@@ -132,7 +132,7 @@ a.filter-action:hover {
text-decoration: none;
}
-table#patchlist > thead {
+table.pw-list > thead {
background-color: white;
}
@@ -44,7 +44,7 @@ $(document).ready(function() {
{% csrf_token %}
<input type="hidden" name="form" value="patchlistform"/>
<input type="hidden" name="project" value="{{project.id}}"/>
-<table class="table table-hover table-condensed" id="patchlist">
+<table class="table table-hover table-condensed pw-list" id="patchlist">
<thead>
<tr>
{% if user.is_authenticated %}
As we are using "sticky headers", the column headers stay apparent when scrolling down, we need to specify a white background to hide what's underneath. With the addition of Seres, the patchlist table is not the only table we want this behaviour on, so let's make it a CSS class rather then a selector on the patchlist id. Signed-off-by: Damien Lespiau <damien.lespiau@intel.com> --- htdocs/css/style.css | 2 +- patchwork/templates/patchwork/patch-list.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-)