From a99befe0fa8400c35103dc0f8e32321945b3d7a2 Mon Sep 17 00:00:00 2001 From: Angelos Chalaris Date: Sat, 27 Oct 2018 09:42:40 +0300 Subject: [PATCH] Resolve #135 --- docs/doc-fragments/tables.js | 4 ++-- docs/docs.html | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/doc-fragments/tables.js b/docs/doc-fragments/tables.js index 47b4985..b07d6ce 100644 --- a/docs/doc-fragments/tables.js +++ b/docs/doc-fragments/tables.js @@ -54,8 +54,8 @@ module.exports = { </tbody> </table>`], notes: [`Remember to always specify a data-label attribute for all of your <td> elements, otherwise they will not display properly on mobile.`, - `Due to the way tables are displayed, the <tfoot> element is not supported.`, - `Tables are vertically scrollable by default, with a max-height property of 400px.`], + `Due to the way tables are displayed, the <tfoot> element is not supported by default. You can however add table tfoot { order: 3; } to your CSS files to partially support table footers.`, + `Tables are vertically scrollable by default, with a max-height property of 400px.`,], customization: [ `Text color for <th> and <td> elements can be changed by changing the values of the --table-head-fore-color and --table-body-fore-color variables respectively.`, `Background color for <th> and <td> elements can be changed by changing the values of the --table-head-back-color and --table-body-back-color variables respectively.`, diff --git a/docs/docs.html b/docs/docs.html index f136043..05b020f 100644 --- a/docs/docs.html +++ b/docs/docs.html @@ -789,7 +789,7 @@ </tr> </tbody> </table>

Don't: Avoid placing <td> elements in the <thead> of your tables, as well as placing <th> elements in the <tbody>.

-

Notes

+

Notes

Customization


Text highlighting