diff options
Diffstat (limited to 'Documentation/theme')
-rw-r--r-- | Documentation/theme/footer.html | 3 | ||||
-rw-r--r-- | Documentation/theme/layout.html | 8 | ||||
-rw-r--r-- | Documentation/theme/search.html | 3 | ||||
-rw-r--r-- | Documentation/theme/static/css/theme.css | 8 | ||||
-rw-r--r-- | Documentation/theme/theme.conf | 2 |
5 files changed, 18 insertions, 6 deletions
diff --git a/Documentation/theme/footer.html b/Documentation/theme/footer.html index e63e9fb3..12939e8b 100644 --- a/Documentation/theme/footer.html +++ b/Documentation/theme/footer.html @@ -1,3 +1,6 @@ +{# +SPDX-License-Identifier: CC-BY-SA-4.0 +#} <footer> <div id="signature"> {%- if show_copyright %} diff --git a/Documentation/theme/layout.html b/Documentation/theme/layout.html index 139c39c7..4fffefab 100644 --- a/Documentation/theme/layout.html +++ b/Documentation/theme/layout.html @@ -1,3 +1,6 @@ +{# +SPDX-License-Identifier: CC-BY-SA-4.0 +#} {# TEMPLATE VAR SETTINGS #} {%- set url_root = pathto('', 1) %} {%- if url_root == '#' %}{% set url_root = '' %}{% endif %} @@ -30,11 +33,6 @@ {% endif %} - {# RTD hosts this file, so just load on non RTD builds #} - {% if not READTHEDOCS %} - <link rel="stylesheet" href="{{ pathto('_static/' + style, 1) }}" type="text/css" /> - {% endif %} - {% for cssfile in css_files %} <link rel="stylesheet" href="{{ pathto(cssfile, 1) }}" type="text/css" /> {% endfor %} diff --git a/Documentation/theme/search.html b/Documentation/theme/search.html index 14d59395..00c2af93 100644 --- a/Documentation/theme/search.html +++ b/Documentation/theme/search.html @@ -1,4 +1,7 @@ {# +SPDX-License-Identifier: CC-BY-SA-4.0 +#} +{# basic/search.html ~~~~~~~~~~~~~~~~~ diff --git a/Documentation/theme/static/css/theme.css b/Documentation/theme/static/css/theme.css index a4934ede..a6d43195 100644 --- a/Documentation/theme/static/css/theme.css +++ b/Documentation/theme/static/css/theme.css @@ -1,3 +1,5 @@ +/* SPDX-License-Identifier: CC-BY-SA-4.0 */ + html { background-image: linear-gradient(to bottom right, #4895e1, #56c3ae); background-size: cover; @@ -281,9 +283,13 @@ div#signature { font-size: 12px; } -#libcamera div.toctree-wrapper { +#licensing div.toctree-wrapper { height: 0px; margin: 0px; padding: 0px; visibility: hidden; } + +.documentation-nav { + display: none; +} diff --git a/Documentation/theme/theme.conf b/Documentation/theme/theme.conf index ba25a192..f2ab39c3 100644 --- a/Documentation/theme/theme.conf +++ b/Documentation/theme/theme.conf @@ -1,3 +1,5 @@ +# SPDX-License-Identifier: CC-BY-SA-4.0 + [theme] inherit = basic stylesheet = css/theme.css |