Docs: add notes to esp-feature-matrix

Use footnotes to clarify some details
in the supported features table.

Closes #377
This commit is contained in:
Mike Edmunds
2024-06-22 12:58:50 -07:00
parent f355bd533c
commit 5c2f2fd35a
4 changed files with 32 additions and 7 deletions

View File

@@ -17,6 +17,19 @@ table.sticky-left th:first-of-type[colspan] > p {
left: 17px; /* (.wy-table $table-padding-size) + (docutils border="1" in html) */
}
/* Fix footnote stacking in sticky table */
.rst-content .citation-reference,
.rst-content .footnote-reference {
/* Original (but `position: relative` creates a new stacking context):
vertical-align: baseline;
position: relative;
top: -.4em;
*/
vertical-align: 0.4em;
position: static;
top: initial; /* (not relevant with `position: static`) */
}
/* Show code cross-reference links as clickable $link-color (blue).
Sphinx-rtd-theme usually wants `.rst-content a code` to be $link-color [1], but has