From 6d62e24ca4d5acc3cbe2690b77492a6911cfb2b1 Mon Sep 17 00:00:00 2001 From: "Collin M. Barrett" Date: Wed, 7 Aug 2019 12:38:04 -0500 Subject: [PATCH] apply two-line max to cells with nested blockquote or p --- .../src/modules/allListsTable/AllListsTable.css | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/FilterLists.Web.V2/src/modules/allListsTable/AllListsTable.css b/src/FilterLists.Web.V2/src/modules/allListsTable/AllListsTable.css index 7c35b9e45..17211aa65 100644 --- a/src/FilterLists.Web.V2/src/modules/allListsTable/AllListsTable.css +++ b/src/FilterLists.Web.V2/src/modules/allListsTable/AllListsTable.css @@ -1,4 +1,6 @@ -td > div { +td > div, +td > blockquote, +td > p { /* limit table cells from wrapping more than 2 lines */ /* https://stackoverflow.com/a/13924997/2343739 */ /* https://stackoverflow.com/a/22042054/2343739 */