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 2023/01/17 09:04:48 UTC

[maven-fluido-skin] 04/10: [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 maven-fluido-skin-1.x
in repository https://gitbox.apache.org/repos/asf/maven-fluido-skin.git

commit dafe8707ebf89631b3057f7039a2b7c20275f6ba
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;
+}