diff options
author | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2019-10-19 06:05:49 +0300 |
---|---|---|
committer | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2019-10-23 17:41:09 +0300 |
commit | fb93dae7d3d3c7099b46e0a801e6bd1c4dc0366c (patch) | |
tree | 3f271640b980c12cdc2f3c92cdc92dbe1dba74de /Documentation/theme/static/css | |
parent | 09d7d00a0fbed8d2a944509e712242bab016a4ba (diff) |
Documentation: theme: css: Really hide toc trees
The toc trees are rendered as hidden but still take space due to their
margin and padding. Really hide them. While at it, don't handle overflow
with scrollbars in the content area, the whole page should be
scrollable.
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
Diffstat (limited to 'Documentation/theme/static/css')
-rw-r--r-- | Documentation/theme/static/css/theme.css | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Documentation/theme/static/css/theme.css b/Documentation/theme/static/css/theme.css index 60f3510d..a4934ede 100644 --- a/Documentation/theme/static/css/theme.css +++ b/Documentation/theme/static/css/theme.css @@ -204,7 +204,6 @@ div#content { padding-bottom: 50px; margin-left: 0px; margin-right: 0px; - overflow: auto; } div#content > div.block { @@ -283,5 +282,8 @@ div#signature { } #libcamera div.toctree-wrapper { + height: 0px; + margin: 0px; + padding: 0px; visibility: hidden; } |