giterlizzi / dokuwiki-plugin-datatables

Add DataTables support to DokuWiki
GNU General Public License v2.0
10 stars 11 forks source link

Horizontal scrollbar displayed with default DokuWiki template #42

Open dregad opened 5 years ago

dregad commented 5 years ago

On a fresh DokuWiki install with only standard plugins and default DokuWiki template, the datatables adds a horizontal scrollbar below the tables, which appears to be slightly too wide for the containing div

image

Test page (copied from example at https://www.dokuwiki.org/plugin:datatables)

<datatables>
^ Column A ^ Column B ^ Column C ^
| Row A1   | Row B1   | Row C1   |
| Row A2   | Row B2   | Row C2   |
| Row A2   | Row B2   | Row C3   |
</datatables>
neunzeichen commented 5 years ago

@dregad Change the value in script.js from 100% to 99% to fix it. See here: skript.js

dregad commented 5 years ago

Thanks for the hint !