From 108fee03fba61b29e1bc11e079a71525db6315c4 Mon Sep 17 00:00:00 2001 From: "Collin M. Barrett" Date: Sun, 28 Jul 2019 16:14:46 -0500 Subject: [PATCH] add some css comments --- .../src/modules/home/components/listsTable/listsTable.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/FilterLists.Web/src/modules/home/components/listsTable/listsTable.css b/src/FilterLists.Web/src/modules/home/components/listsTable/listsTable.css index 0436aa6bf..9315f2922 100644 --- a/src/FilterLists.Web/src/modules/home/components/listsTable/listsTable.css +++ b/src/FilterLists.Web/src/modules/home/components/listsTable/listsTable.css @@ -1,3 +1,4 @@ +/* vertically center-align cell contents */ .rt-tr { -ms-align-items: center; -o-align-items: center; @@ -5,8 +6,10 @@ align-items: center; } +/* set minimum usable width of table */ div.rt-tbody, div.rt-thead.-filters, div.rt-thead.-header { min-width: 320px !important; } +/* prevent cell contents from getting trimmed */ .fl-wrap-cell { line-height: 1; white-space: normal;