This is an automated email from the ASF dual-hosted git repository. michaelo pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/maven-fluido-skin.git
The following commit(s) were added to refs/heads/master by this push: new 1b13835 CSS shall only apply to <p> and <dt> if they are immediate children of <section> 1b13835 is described below commit 1b13835140e9c752bb2edc7f0c38c4347068b788 Author: Michael Osipov <micha...@apache.org> AuthorDate: Thu Jan 12 12:55:01 2023 +0100 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; }