From a6b994d95e8f395a3608d0a60dc9d20285cee86c Mon Sep 17 00:00:00 2001 From: Sophist Date: Tue, 3 Oct 2017 09:23:34 +0100 Subject: [PATCH 1/4] [ticket/15387] Make vertical bars full height on board index forum rows Make vertical left border bars for height for Topics and Posts columns in board index forum rows when these columns have less height than e.g. the Last Post column. PHPBB3-15387 --- phpBB/styles/prosilver/theme/content.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/phpBB/styles/prosilver/theme/content.css b/phpBB/styles/prosilver/theme/content.css index 3040282b90..3d0d0c0bf8 100644 --- a/phpBB/styles/prosilver/theme/content.css +++ b/phpBB/styles/prosilver/theme/content.css @@ -64,7 +64,8 @@ ul.topiclist.two-columns dt .list-inner { ul.topiclist dd { border-left: 1px solid transparent; - padding: 4px 0; + padding: 4px 0 99999px 0; + margin-bottom: -99995px; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; From 44a0a9e3e0f47906ef56ec29cce913774650bb74 Mon Sep 17 00:00:00 2001 From: Sophist Date: Tue, 3 Oct 2017 17:18:36 +0100 Subject: [PATCH 2/4] [ticket/15387] Make vertical bars full height on forum topic rows - consistency Make extra size consistent with immediately following css i.e. use 999px not 99999px as v. large to exceed possible box size. PHPBB3-15387 --- phpBB/styles/prosilver/theme/content.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/phpBB/styles/prosilver/theme/content.css b/phpBB/styles/prosilver/theme/content.css index 3d0d0c0bf8..a92434a9be 100644 --- a/phpBB/styles/prosilver/theme/content.css +++ b/phpBB/styles/prosilver/theme/content.css @@ -64,8 +64,8 @@ ul.topiclist.two-columns dt .list-inner { ul.topiclist dd { border-left: 1px solid transparent; - padding: 4px 0 99999px 0; - margin-bottom: -99995px; + padding: 4px 0 999px 0; + margin-bottom: -995px; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; From e5860288be774e9919cb45c29383aabfda545808 Mon Sep 17 00:00:00 2001 From: Sophist Date: Tue, 3 Oct 2017 18:22:22 +0100 Subject: [PATCH 3/4] [ticket/15387] Make vertical bars full height - fix 1 Fix issue with 2px gap at the bottom of the bars. PHPBB3-15387 --- phpBB/styles/prosilver/theme/content.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpBB/styles/prosilver/theme/content.css b/phpBB/styles/prosilver/theme/content.css index a92434a9be..e51aaa5600 100644 --- a/phpBB/styles/prosilver/theme/content.css +++ b/phpBB/styles/prosilver/theme/content.css @@ -18,7 +18,7 @@ ul.topiclist dl { } ul.topiclist li.row dl { - padding: 2px 0; + margin: 2px 0; } ul.topiclist dt, ul.topiclist dd { From ab83b2585733a65fec6205faaa5a4bac726804c5 Mon Sep 17 00:00:00 2001 From: Sophist Date: Thu, 5 Oct 2017 18:35:20 +0100 Subject: [PATCH 4/4] [ticket/15387] Make vertical bars full height - fix MCP Fix issue where changes were half applied to MCP creating c. 990px of whitespace. PHPBB3-15387 --- phpBB/styles/prosilver/theme/content.css | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/phpBB/styles/prosilver/theme/content.css b/phpBB/styles/prosilver/theme/content.css index e51aaa5600..6d332eb9ea 100644 --- a/phpBB/styles/prosilver/theme/content.css +++ b/phpBB/styles/prosilver/theme/content.css @@ -64,13 +64,17 @@ ul.topiclist.two-columns dt .list-inner { ul.topiclist dd { border-left: 1px solid transparent; - padding: 4px 0 999px 0; - margin-bottom: -995px; + padding: 4px 0; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } +ul.topiclist li.row dd { + padding: 4px 0 999px 0; + margin-bottom: -995px; +} + ul.topiclist dfn { /* Labels for post/view counts */ position: absolute;