diff options
author | Damien Lespiau <damien.lespiau@intel.com> | 2014-12-01 15:07:28 +0000 |
---|---|---|
committer | Stephen Finucane <stephen.finucane@intel.com> | 2016-02-08 19:03:35 +0000 |
commit | 8fac4b8cfddc025041e96c0e1682f6551bacd1a0 (patch) | |
tree | 9defea7321369c65e84ad45ee9143025898ab184 /htdocs | |
parent | 0b053a53c50b7c7a5d974dccecb3545ab36c7998 (diff) | |
download | patchwork-8fac4b8cfddc025041e96c0e1682f6551bacd1a0.tar patchwork-8fac4b8cfddc025041e96c0e1682f6551bacd1a0.tar.gz |
ui: Move the background color of the table headers to a class
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>
Acked-by: Stephen Finucane <stephen.finucane@intel.com>
Diffstat (limited to 'htdocs')
-rw-r--r-- | htdocs/css/style.css | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/htdocs/css/style.css b/htdocs/css/style.css index a5eac2e..96ae809 100644 --- a/htdocs/css/style.css +++ b/htdocs/css/style.css @@ -132,7 +132,7 @@ a.filter-action:hover { text-decoration: none; } -table#patchlist > thead { +table.pw-list > thead { background-color: white; } |