Skip to content
Snippets Groups Projects
Commit b5107735 authored by Goik Martin's avatar Goik Martin
Browse files

inline element corrections

parent 06e89238
No related branches found
No related tags found
No related merge requests found
......@@ -51,7 +51,13 @@
</xsl:template>
<xsl:template match="db:programlisting">
<pre style="display:table; font-size:90%; font-family: 'Lucida Console', Monaco, monospace; background-color: #EEF5FA;">
<pre style="display:table; border-radius: 10px; padding: 5px; font-size:90%; font-family: 'Lucida Console', Monaco, monospace; background-color: #F3ECFF;">
<xsl:apply-templates mode="link"/>
</pre>
</xsl:template>
<xsl:template match="db:screen">
<pre style="display:table; border-radius: 10px; padding: 5px; font-size:90%; font-family: 'Lucida Console', Monaco, monospace; background-color: #E7FFFE;">
<xsl:apply-templates mode="link"/>
</pre>
</xsl:template>
......@@ -79,14 +85,14 @@
<!-- Admonitions -->
<xsl:template match="db:tip">
<div style="display:table; background-color: #DEFBDE;">
<div style="display:table; border-radius: 10px; padding: 5px; border-style: solid; border-color: #CCCCCC; border-width: 1px; background-color: #DEFBDE;">
<p>Hinweis:</p>
<xsl:apply-templates/>
</div>
</xsl:template>
<xsl:template match="db:caution">
<div style="display:table; background-color: #FE4343;">
<div style="display:table; border-radius: 10px; padding: 5px; border-style: solid; border-color: #CCCCCC; border-width: 1px; background-color: #FE4343;">
<p>Achtung:</p>
<xsl:apply-templates/>
</div>
......@@ -105,9 +111,9 @@
</xsl:template>
<xsl:template match="db:emphasis|db:acronym">
<emph style="font-weight: bold;">
<strong>
<xsl:apply-templates/>
</emph>
</strong>
</xsl:template>
<xsl:template match="db:quote">
......@@ -124,7 +130,7 @@
<xsl:template match="db:code">
<code style='font-size:90%; font-family: "Lucida Console", Monaco, monospace; background-color: #EEF5FA;'>
<code style='font-size:90%; color:black; font-family: "Lucida Console", Monaco, monospace; background-color: #F3ECFF;'>
<xsl:apply-templates/>
</code>
</xsl:template>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment