Skip to content

Commit

Permalink
Merge pull request #3974 from raspberrypi/develop
Browse files Browse the repository at this point in the history
Release latest changes to production
  • Loading branch information
nathan-contino authored Dec 12, 2024
2 parents f19b5f1 + 60bb7ff commit c743e9b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
6 changes: 3 additions & 3 deletions jekyll-assets/_layouts/docs.html
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ <h1 id="docs-header-title">
onclick="document.getElementById('mobile-toggle').checked = false; updateCurrentToc('{{ item.path }}#{{ entry.anchor }}-toc', '{{ item.path }}#{{ entry.anchor }}');"
title="expand {{ entry.heading | strip_html }}"
>
<script type="text/javascript">if (window.location.hash == '#{{ entry.anchor }}') initialiseCurrentToc('{{ item.path }}#{{entry.anchor}}-toc', '{{ item.path }}#{{ entry.anchor }}');
<script type="text/javascript">if (window.location.hash == '#{{ entry.anchor }}' && window.location.href.includes('{{ item.path }}')) initialiseCurrentToc('{{ item.path }}#{{entry.anchor}}-toc', '{{ item.path }}#{{ entry.anchor }}');
</script>
{{ entry.heading | markdownify }}
</a>
Expand All @@ -117,7 +117,7 @@ <h1 id="docs-header-title">
onclick="document.getElementById('mobile-toggle').checked = false; updateCurrentToc('{{ item.path }}#{{ entry.anchor }}-toc');"
class="toc-item no-dropdown"
>
<script type="text/javascript">if (window.location.hash == '#{{ entry.anchor }}')
<script type="text/javascript">if (window.location.hash == '#{{ entry.anchor }}' && window.location.href.includes('{{ item.path }}'))
initialiseCurrentToc('{{ item.path }}#{{entry.anchor}}-toc');
</script>
{{ entry.heading | markdownify }}
Expand All @@ -142,7 +142,7 @@ <h1 id="docs-header-title">
onclick="document.getElementById('mobile-toggle').checked = false; updateCurrentToc('{{ item.path }}#{{ entry.anchor }}-toc', '{{ item.path }}#{{ entry.anchor }}', '{{ item.path }}#{{ subentry.anchor }}-toc');"
id="{{ item.path }}#{{subentry.anchor}}-toc"
>
<script type="text/javascript">if (window.location.hash == '#{{ subentry.anchor }}') initialiseCurrentToc('{{ item.path }}#{{ entry.anchor }}-toc', '{{ item.path }}#{{ entry.anchor }}', '{{ item.path }}#{{subentry.anchor}}-toc');
<script type="text/javascript">if (window.location.hash == '#{{ subentry.anchor }}' && window.location.href.includes('{{ item.path }}')) initialiseCurrentToc('{{ item.path }}#{{ entry.anchor }}-toc', '{{ item.path }}#{{ entry.anchor }}', '{{ item.path }}#{{ subentry.anchor }}-toc');
</script>
{{ subentry.heading | markdownify }}
</a>
Expand Down
5 changes: 5 additions & 0 deletions jekyll-assets/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -1250,6 +1250,11 @@ div.listingblock pre.highlight {
margin-bottom: 0px;
}

#release {
padding-top: 50px;
color: var(--subtle);
}

/* OLD DOXYGEN ELEMENTS */

div.memproto {
Expand Down

0 comments on commit c743e9b

Please sign in to comment.