From 4621d2dd854d2aa26cb50e79f6a3ca8d44f8d013 Mon Sep 17 00:00:00 2001 From: "Collin M. Barrett" Date: Tue, 6 Aug 2019 13:02:26 -0500 Subject: [PATCH] clarify css comments --- .../src/modules/allListsTable/AllListsTable.css | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/FilterLists.Web.V2/src/modules/allListsTable/AllListsTable.css b/src/FilterLists.Web.V2/src/modules/allListsTable/AllListsTable.css index 26c847211..7aa63678d 100644 --- a/src/FilterLists.Web.V2/src/modules/allListsTable/AllListsTable.css +++ b/src/FilterLists.Web.V2/src/modules/allListsTable/AllListsTable.css @@ -1,7 +1,7 @@ -/* limit table cells from wrapping more than 2 lines */ -/* https://stackoverflow.com/a/13924997/2343739 */ -/* https://stackoverflow.com/a/22042054/2343739 */ td > div { + /* limit table cells from wrapping more than 2 lines */ + /* https://stackoverflow.com/a/13924997/2343739 */ + /* https://stackoverflow.com/a/22042054/2343739 */ overflow: hidden; text-overflow: ellipsis; display: -webkit-box; @@ -9,5 +9,7 @@ td > div { -webkit-line-clamp: 2; /* number of lines to show */ line-height: 1.5; /* fallback */ max-height: 3em; /* fallback */ - min-height: 3em; /* fixed row height */ + + /* fixed row height */ + min-height: 3em; }