forked from lix-project/hydra
Making pretty printed log look normal again. Issue #6
This commit is contained in:
parent
437e59c4a8
commit
eb51065a16
|
@ -12,6 +12,7 @@
|
|||
<title>Hydra - [% title %]</title>
|
||||
<link rel="stylesheet" href="/static/bootstrap/css/bootstrap.css" type="text/css" />
|
||||
<link rel="stylesheet" href="/static/css/hydra.css" type="text/css" />
|
||||
<link rel="stylesheet" href="/static/css/logfile.css" type="text/css" />
|
||||
<style>
|
||||
body {
|
||||
padding-top: 60px; /* 60px to make the container go all the way to the bottom of the topbar */
|
||||
|
|
|
@ -1,3 +1,8 @@
|
|||
.buildlog {
|
||||
border: 1px solid black;
|
||||
padding: 0.3em;
|
||||
}
|
||||
|
||||
ul.nesting, ul.toplevel {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
|
@ -90,6 +95,6 @@ em.storeref:hover span.popup {
|
|||
font-style: italic;
|
||||
}
|
||||
|
||||
code {
|
||||
.code {
|
||||
white-space: pre-wrap;
|
||||
}
|
||||
|
|
|
@ -61,7 +61,7 @@
|
|||
|
||||
|
||||
<xsl:template match="head|line">
|
||||
<code>
|
||||
<div class="code">
|
||||
<xsl:if test="@error">
|
||||
<xsl:attribute name="class">errorLine</xsl:attribute>
|
||||
</xsl:if>
|
||||
|
@ -72,7 +72,7 @@
|
|||
<xsl:attribute name="class">prio3</xsl:attribute>
|
||||
</xsl:if>
|
||||
<xsl:apply-templates/>
|
||||
</code>
|
||||
</div>
|
||||
</xsl:template>
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue