diff options
author | Kamil Doległo <kamilok1965@interia.pl> | 2020-07-14 19:17:49 +0200 |
---|---|---|
committer | Sebastian Sellmair <34319766+sellmair@users.noreply.github.com> | 2020-07-15 15:51:43 +0200 |
commit | c5b233aca9c81792b6313dc45dd5055cbb24901a (patch) | |
tree | 94653853228f9212ac35cdde864e708d487559b7 /plugins/javadoc/src/main/resources/views/components | |
parent | 868ea24ccc2fad58b6155190ab2ed4766d09b6ed (diff) | |
download | dokka-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.korte | 10 |
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"> </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 |