This is an automated email from the ASF dual-hosted git repository. michaelo pushed a commit to branch maven-fluido-skin-1.x in repository https://gitbox.apache.org/repos/asf/maven-fluido-skin.git
commit 2f183497b9f3ea93f613df9c1f4234ce112b11f1 Author: Michael Osipov <micha...@apache.org> AuthorDate: Thu Jan 12 12:55:01 2023 +0100 [MSKINS-205] CSS shall only apply to <p> and <dt> if they are immediate children of <section> --- src/main/resources/css/maven-base.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/resources/css/maven-base.css b/src/main/resources/css/maven-base.css index 6f6c90a..affdfdc 100644 --- a/src/main/resources/css/maven-base.css +++ b/src/main/resources/css/maven-base.css @@ -26,8 +26,8 @@ display: none; } -section p, -section dt { +section > p, +section > dt { margin-right: 7px; margin-left: 7px; }