about summary refs log tree commit diff
path: root/src/log2xml/log2html.xsl
diff options
context:
space:
mode:
Diffstat (limited to 'src/log2xml/log2html.xsl')
-rw-r--r--src/log2xml/log2html.xsl32
1 files changed, 12 insertions, 20 deletions
diff --git a/src/log2xml/log2html.xsl b/src/log2xml/log2html.xsl
index 05429efef75e..4a9a6f4527be 100644
--- a/src/log2xml/log2html.xsl
+++ b/src/log2xml/log2html.xsl
@@ -22,28 +22,20 @@
       <blockquote class='body'>
         <xsl:for-each select='line|nest'>
           <xsl:if test="position() != last()">
-            <table class='x'>
-              <tr class='x'>
-                <td class='dummy'>
-                  <div class='dummy' />
-                </td>
-                <td class='line'>
-                  <xsl:apply-templates select='.'/>
-                </td>
-              </tr>
-            </table>
+            <div class='line'>
+              <span class='lineconn' />
+              <span class='linebody'>
+                <xsl:apply-templates select='.'/>
+              </span>
+            </div>
           </xsl:if>
           <xsl:if test="position() = last()">
-            <table class='y'>
-              <tr class='y'>
-                <td class='dummy'>
-                  <div class='dummy' />
-                </td>
-                <td class='line'>
-                  <xsl:apply-templates select='.'/>
-                </td>
-              </tr>
-            </table>
+            <div class='lastline'>
+              <span class='lineconn' />
+              <span class='linebody'>
+                <xsl:apply-templates select='.'/>
+              </span>
+            </div>
           </xsl:if>
         </xsl:for-each>
       </blockquote>