tangled
alpha
login
or
join now
liamoc.net
/
forest-theme
1
fork
atom
My theme for forester (+plugins)
1
fork
atom
overview
issues
pulls
pipelines
<error> element
jonmsterling.com
2 years ago
4faed69b
c7b0e845
+13
-1
2 changed files
expand all
collapse all
unified
split
forest.xsl
style.css
+6
forest.xsl
reviewed
···
103
103
</center>
104
104
</xsl:template>
105
105
106
106
+
<xsl:template match="error">
107
107
+
<span class="error">
108
108
+
<xsl:apply-templates/>
109
109
+
</span>
110
110
+
</xsl:template>
111
111
+
106
112
<xsl:template match="link">
107
113
<a class="{@type}" href="{@href}">
108
114
<xsl:choose>
+7
-1
style.css
reviewed
···
609
609
610
610
ol li ol li ol {
611
611
list-style-type: lower-roman;
612
612
-
}
612
612
+
}
613
613
+
614
614
+
.error {
615
615
+
background-color: red;
616
616
+
font-weight: bold;
617
617
+
color: white;
618
618
+
}