From f35a660fef3e3b47ede579cefec14f2389c67b16 Mon Sep 17 00:00:00 2001 From: "Collin M. Barrett" Date: Sun, 20 Sep 2020 19:50:48 -0500 Subject: [PATCH] =?UTF-8?q?fix(web):=20=F0=9F=90=9B=F0=9F=92=84=20make=20f?= =?UTF-8?q?ixed=20column=20bg=20opaque?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit closes #2000 --- web/src/components/listsTable/ListsTable.module.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/web/src/components/listsTable/ListsTable.module.css b/web/src/components/listsTable/ListsTable.module.css index f0e8cd19c..3010f6fbf 100644 --- a/web/src/components/listsTable/ListsTable.module.css +++ b/web/src/components/listsTable/ListsTable.module.css @@ -21,4 +21,7 @@ /* eliminate top and bottom padding in cells to fit more rows per page */ padding-top: 0px !important; padding-bottom: 0px !important; + + /* override td.ant-table-column-sort making fixed columns transparent */ + background: rgb(20, 20, 20) !important; }