aboutsummaryrefslogtreecommitdiff
path: root/plugins/javadoc/src/main/resources/views/components
diff options
context:
space:
mode:
authorKamil Doległo <kamilok1965@interia.pl>2020-07-14 19:17:49 +0200
committerSebastian Sellmair <34319766+sellmair@users.noreply.github.com>2020-07-15 15:51:43 +0200
commitc5b233aca9c81792b6313dc45dd5055cbb24901a (patch)
tree94653853228f9212ac35cdde864e708d487559b7 /plugins/javadoc/src/main/resources/views/components
parent868ea24ccc2fad58b6155190ab2ed4766d09b6ed (diff)
downloaddokka-c5b233aca9c81792b6313dc45dd5055cbb24901a.tar.gz
dokka-c5b233aca9c81792b6313dc45dd5055cbb24901a.tar.bz2
dokka-c5b233aca9c81792b6313dc45dd5055cbb24901a.zip
Fix table rendering with JDK12 stylesheets
Diffstat (limited to 'plugins/javadoc/src/main/resources/views/components')
-rw-r--r--plugins/javadoc/src/main/resources/views/components/indexTable.korte10
1 files changed, 6 insertions, 4 deletions
diff --git a/plugins/javadoc/src/main/resources/views/components/indexTable.korte b/plugins/javadoc/src/main/resources/views/components/indexTable.korte
index e1b507b9..21c94b7c 100644
--- a/plugins/javadoc/src/main/resources/views/components/indexTable.korte
+++ b/plugins/javadoc/src/main/resources/views/components/indexTable.korte
@@ -1,8 +1,7 @@
{% if isTypeSummary %}
- <table class="typeSummary">
-{% else %}
- <table>
+ <div class="typeSummary">
{% endif %}
+<table>
<caption><span>{{ tabTitle }}</span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colFirst" scope="col">{{ colTitle }}</th>
@@ -13,4 +12,7 @@
<tr class="{{ rowColor(loop.index0) }}">{{ createTabRow(item, contextRoot)|raw }}</tr>
{% end -%}
</tbody>
-</table> \ No newline at end of file
+</table>
+{% if isTypeSummary %}
+ </div>
+{% endif %} \ No newline at end of file