diff options
author | Mariano Guerra <[email protected]> | 2016-10-31 20:52:21 +0000 |
---|---|---|
committer | Mariano Guerra <[email protected]> | 2017-03-13 11:51:52 +0100 |
commit | cf92c3a9d202b9b9c1fc999910a5c977063389e0 (patch) | |
tree | 694030a8427012703e930af8b96a3b15b0488913 /lib/erl_docgen | |
parent | 17cdba11569e0e2b846fceba17f06bc87c2df4d5 (diff) | |
download | otp-cf92c3a9d202b9b9c1fc999910a5c977063389e0.tar.gz otp-cf92c3a9d202b9b9c1fc999910a5c977063389e0.tar.bz2 otp-cf92c3a9d202b9b9c1fc999910a5c977063389e0.zip |
center images, make image caption markup semantic
Diffstat (limited to 'lib/erl_docgen')
-rw-r--r-- | lib/erl_docgen/priv/css/otp_doc.css | 10 | ||||
-rw-r--r-- | lib/erl_docgen/priv/xsl/db_html.xsl | 8 |
2 files changed, 12 insertions, 6 deletions
diff --git a/lib/erl_docgen/priv/css/otp_doc.css b/lib/erl_docgen/priv/css/otp_doc.css index 1f3b9bfb29..8edb067df8 100644 --- a/lib/erl_docgen/priv/css/otp_doc.css +++ b/lib/erl_docgen/priv/css/otp_doc.css @@ -177,16 +177,20 @@ footer { } font-size: 1.5em; } -.doc-table-wrapper{ +.doc-table-wrapper, .doc-image-wrapper{ width: 100%; } -.doc-table{ +.doc-image-wrapper{ + text-align: center; +} + +.doc-table, .doc-image{ min-width: 50%; margin: 0 auto; } -.doc-table-caption{ +.doc-table-caption, .doc-image-caption{ margin-top: 1em; font-style: italic; text-align: center; diff --git a/lib/erl_docgen/priv/xsl/db_html.xsl b/lib/erl_docgen/priv/xsl/db_html.xsl index cf0c0de0a4..22216c65b6 100644 --- a/lib/erl_docgen/priv/xsl/db_html.xsl +++ b/lib/erl_docgen/priv/xsl/db_html.xsl @@ -1188,12 +1188,14 @@ <xsl:number level="any" from="chapter" count="image"/> </xsl:variable> - <img alt="IMAGE MISSING" src="{@file}"/><br/> + <div class="doc-image-wrapper"> + <img alt="IMAGE MISSING" src="{@file}" class="doc-image"/> <xsl:apply-templates> <xsl:with-param name="chapnum" select="$chapnum"/> <xsl:with-param name="fignum" select="$fignum"/> </xsl:apply-templates> + </div> </xsl:template> @@ -1203,11 +1205,11 @@ <xsl:param name="chapnum"/> <xsl:param name="fignum"/> - <p><em>Figure + <p class="doc-image-caption">Figure <xsl:value-of select="$chapnum"/>.<xsl:value-of select="$fignum"/>:   <xsl:apply-templates/> - </em></p> + </p> </xsl:template> |