From 494c9047c72e856318d032c543ea6198c41e7a37 Mon Sep 17 00:00:00 2001 From: Michael Miday Date: Tue, 22 Sep 2015 06:50:08 +0200 Subject: [PATCH 1/2] [ticket/12554]Overide blockquote overflow in lists --- phpBB/styles/prosilver/theme/content.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/phpBB/styles/prosilver/theme/content.css b/phpBB/styles/prosilver/theme/content.css index de24528b4d..1331a86fb5 100644 --- a/phpBB/styles/prosilver/theme/content.css +++ b/phpBB/styles/prosilver/theme/content.css @@ -478,6 +478,10 @@ blockquote cite > div { font-weight: normal; } +.postbody .content li blockquote { + overflow: inherit; +} + /* Code block */ .codebox { padding: 3px; From d477d79dc8aececc0d4c4ff364a0c582d68b0a91 Mon Sep 17 00:00:00 2001 From: Michael Miday Date: Wed, 23 Sep 2015 06:29:30 +0200 Subject: [PATCH 2/2] [ticket/12554]Remove left margin when li --- phpBB/styles/prosilver/theme/content.css | 1 + 1 file changed, 1 insertion(+) diff --git a/phpBB/styles/prosilver/theme/content.css b/phpBB/styles/prosilver/theme/content.css index 1331a86fb5..c30ebba505 100644 --- a/phpBB/styles/prosilver/theme/content.css +++ b/phpBB/styles/prosilver/theme/content.css @@ -480,6 +480,7 @@ blockquote cite > div { .postbody .content li blockquote { overflow: inherit; + margin-left: 0; } /* Code block */