This is an automated email from the ASF dual-hosted git repository. btashton pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git
commit 896ba15f01e025b77a8b05ef1689b13c48769a39 Author: Matias N <[email protected]> AuthorDate: Mon Aug 17 12:29:31 2020 -0300 support specifying top alignment for tables --- Documentation/_static/custom.css | 8 ++++++++ Documentation/introduction/supported_platforms.rst | 3 ++- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/Documentation/_static/custom.css b/Documentation/_static/custom.css index 6f470e3..6a939f8 100644 --- a/Documentation/_static/custom.css +++ b/Documentation/_static/custom.css @@ -11,6 +11,7 @@ } /* override table width restrictions */ + @media screen and (min-width: 767px) { .wy-table-responsive table td { @@ -24,9 +25,16 @@ } } +/* remove useless padding on the sidebar */ .wy-nav-side { padding-bottom: 0em !important; } +/* define some classes to be used */ + +table.valign-top td { + vertical-align: top !important; +} + diff --git a/Documentation/introduction/supported_platforms.rst b/Documentation/introduction/supported_platforms.rst index fe287de..e96444d 100644 --- a/Documentation/introduction/supported_platforms.rst +++ b/Documentation/introduction/supported_platforms.rst @@ -10,7 +10,7 @@ CPU follow in parentheses. The state of the various ports vary from board-to-board. Follow the links for the details: .. list-table:: - :widths: auto + :class: valign-top * - @@ -88,6 +88,7 @@ follows in parentheses. The state of the various ports vary from MCU to MCU. Follow the links for the details: .. list-table:: + :class: valign-top * -
