doc: doxygen: update doxygen awesome to v2.3.3

It includes some tiny fixes for newer Doxygen versions.

Signed-off-by: Gerard Marull-Paretas <gerard@teslabs.com>
This commit is contained in:
Gerard Marull-Paretas 2024-07-16 15:32:04 +02:00 committed by Anas Nashif
commit bb7fa56611
2 changed files with 23 additions and 14 deletions

View file

@ -1,3 +1,4 @@
/** /**
Doxygen Awesome Doxygen Awesome

View file

@ -313,7 +313,7 @@ body {
body, table, div, p, dl, #nav-tree .label, .title, body, table, div, p, dl, #nav-tree .label, .title,
.sm-dox a, .sm-dox a:hover, .sm-dox a:focus, #projectname, .sm-dox a, .sm-dox a:hover, .sm-dox a:focus, #projectname,
.SelectItem, #MSearchField, .navpath li.navelem a, .SelectItem, #MSearchField, .navpath li.navelem a,
.navpath li.navelem a:hover, p.reference, p.definition { .navpath li.navelem a:hover, p.reference, p.definition, div.toc li, div.toc h3 {
font-family: var(--font-family); font-family: var(--font-family);
} }
@ -334,6 +334,7 @@ p.reference, p.definition {
a:link, a:visited, a:hover, a:focus, a:active { a:link, a:visited, a:hover, a:focus, a:active {
color: var(--primary-color) !important; color: var(--primary-color) !important;
font-weight: 500; font-weight: 500;
background: none;
} }
a.anchor { a.anchor {
@ -806,6 +807,10 @@ html.dark-mode iframe#MSearchResults {
line-height: var(--tree-item-height); line-height: var(--tree-item-height);
} }
#nav-tree .item > a:focus {
outline: none;
}
#nav-sync { #nav-sync {
bottom: 12px; bottom: 12px;
right: 12px; right: 12px;
@ -843,6 +848,7 @@ html.dark-mode iframe#MSearchResults {
#nav-tree .arrow { #nav-tree .arrow {
opacity: var(--side-nav-arrow-opacity); opacity: var(--side-nav-arrow-opacity);
background: none;
} }
.arrow { .arrow {
@ -1040,7 +1046,7 @@ blockquote::after {
blockquote p { blockquote p {
margin: var(--spacing-small) 0 var(--spacing-medium) 0; margin: var(--spacing-small) 0 var(--spacing-medium) 0;
} }
.paramname { .paramname, .paramname em {
font-weight: 600; font-weight: 600;
color: var(--primary-dark-color); color: var(--primary-dark-color);
} }
@ -1090,7 +1096,7 @@ div.contents .toc {
border: 0; border: 0;
border-left: 1px solid var(--separator-color); border-left: 1px solid var(--separator-color);
border-radius: 0; border-radius: 0;
background-color: transparent; background-color: var(--page-background-color);
box-shadow: none; box-shadow: none;
position: sticky; position: sticky;
top: var(--toc-sticky-top); top: var(--toc-sticky-top);
@ -1982,14 +1988,16 @@ hr {
} }
.contents hr { .contents hr {
box-shadow: 100px 0 0 var(--separator-color), box-shadow: 100px 0 var(--separator-color),
-100px 0 0 var(--separator-color), -100px 0 var(--separator-color),
500px 0 0 var(--separator-color), 500px 0 var(--separator-color),
-500px 0 0 var(--separator-color), -500px 0 var(--separator-color),
1500px 0 0 var(--separator-color), 900px 0 var(--separator-color),
-1500px 0 0 var(--separator-color), -900px 0 var(--separator-color),
2000px 0 0 var(--separator-color), 1400px 0 var(--separator-color),
-2000px 0 0 var(--separator-color); -1400px 0 var(--separator-color),
1900px 0 var(--separator-color),
-1900px 0 var(--separator-color);
} }
.contents img, .contents .center, .contents center, .contents div.image object { .contents img, .contents .center, .contents center, .contents div.image object {
@ -2460,17 +2468,17 @@ h2:hover a.anchorlink, h1:hover a.anchorlink, h3:hover a.anchorlink, h4:hover a.
Optional tab feature Optional tab feature
*/ */
.tabbed ul { .tabbed > ul {
padding-inline-start: 0px; padding-inline-start: 0px;
margin: 0; margin: 0;
padding: var(--spacing-small) 0; padding: var(--spacing-small) 0;
} }
.tabbed li { .tabbed > ul > li {
display: none; display: none;
} }
.tabbed li.selected { .tabbed > ul > li.selected {
display: block; display: block;
} }