You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by mi...@apache.org on 2022/12/10 23:03:53 UTC

[maven-fluido-skin] branch master updated: [MSKINS-198] Don't apply font size for in heading elements

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 da7e4c8  [MSKINS-198] Don't apply font size for <code /> in heading elements
da7e4c8 is described below

commit da7e4c8f1220b46d2ff4fda3302d306b75fac5b6
Author: Michael Osipov <mi...@apache.org>
AuthorDate: Sun Dec 11 00:03:14 2022 +0100

    [MSKINS-198] Don't apply font size for <code /> in heading elements
---
 src/main/resources/css/maven-theme.css | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/src/main/resources/css/maven-theme.css b/src/main/resources/css/maven-theme.css
index ec137a2..f2c1235 100644
--- a/src/main/resources/css/maven-theme.css
+++ b/src/main/resources/css/maven-theme.css
@@ -155,3 +155,11 @@ li.pull-right {
 a.dropdown-toggle {
   cursor: pointer;
 }
+
+h1 > code,
+h2 > code,
+h3 > code,
+h4 > code,
+h5 > code {
+  font-size: unset;
+}