commit | 8dc828766aaa59c17860258155219b41a878c4d0 | [log] [tgz] |
---|---|---|
author | Tim 'mithro' Ansell <tansell@google.com> | Sun Jun 21 17:49:42 2020 -0700 |
committer | Tim 'mithro' Ansell <tansell@google.com> | Wed Jun 24 16:13:33 2020 -0700 |
tree | b89a04e06db16a07e64b381e56bd69462a8ce2e7 | |
parent | 40da3088390f9d6253e575e34fbd071cb81b5faf [diff] |
docs: Stick the table headers to the top of table. Signed-off-by: Tim 'mithro' Ansell <tansell@google.com>
diff --git a/docs/_static/extra.css b/docs/_static/extra.css index c9b2423..93d4aa8 100644 --- a/docs/_static/extra.css +++ b/docs/_static/extra.css
@@ -41,3 +41,11 @@ white-space: pre; display: inline-block; } + +.page-content table thead th { + position: sticky !important; + top: 0; + z-index: 2; + background-color: #fff; + box-shadow: 0 1px 1px -1px rgba(0, 0, 0, 0.4); +}