Update doxygen-awesome

This commit is contained in:
Loic Guegan 2023-05-31 09:14:20 +02:00
parent 40bff19d8c
commit dca4431d1a
2 changed files with 22 additions and 13 deletions

View file

@ -81,6 +81,7 @@ html {
.ui-resizable-handle { .ui-resizable-handle {
cursor: default; cursor: default;
width: 1px !important; width: 1px !important;
background: var(--separator-color);
box-shadow: 0 calc(-2 * var(--top-height)) 0 0 var(--separator-color); box-shadow: 0 calc(-2 * var(--top-height)) 0 0 var(--separator-color);
} }

View file

@ -776,6 +776,8 @@ html.dark-mode iframe#MSearchResults {
#side-nav { #side-nav {
padding: 0 !important; padding: 0 !important;
background: var(--side-nav-background); background: var(--side-nav-background);
min-width: 8px;
max-width: 50vw;
} }
@media screen and (max-width: 767px) { @media screen and (max-width: 767px) {
@ -863,8 +865,9 @@ html.dark-mode iframe#MSearchResults {
} }
.ui-resizable-e { .ui-resizable-e {
background: var(--separator-color); width: 4px;
width: 1px; background: transparent;
box-shadow: inset -1px 0 0 0 var(--separator-color);
} }
/* /*
@ -2450,6 +2453,10 @@ h2:hover a.anchorlink, h1:hover a.anchorlink, h3:hover a.anchorlink, h4:hover a.
Optional tab feature Optional tab feature
*/ */
.tabbed {
margin: var(--spacing-medium) auto;
}
.tabbed ul { .tabbed ul {
padding-inline-start: 0px; padding-inline-start: 0px;
margin: 0; margin: 0;
@ -2487,6 +2494,7 @@ h2:hover a.anchorlink, h1:hover a.anchorlink, h3:hover a.anchorlink, h4:hover a.
font-size: var(--page-font-size); font-size: var(--page-font-size);
cursor: pointer; cursor: pointer;
box-shadow: 0 1px 0 0 var(--separator-color); box-shadow: 0 1px 0 0 var(--separator-color);
position: relative;
} }
.tabs-overview button.tab-button .tab-title { .tabs-overview button.tab-button .tab-title {
@ -2501,22 +2509,22 @@ h2:hover a.anchorlink, h1:hover a.anchorlink, h3:hover a.anchorlink, h4:hover a.
} }
.tabs-overview button.tab-button:hover .tab-title { .tabs-overview button.tab-button:hover .tab-title {
background: var(--primary-color); background: var(--separator-color);
color: var(--page-background-color);
box-shadow: none; box-shadow: none;
} }
.tabs-overview button.tab-button.active { .tabs-overview button.tab-button.active {
color: var(--primary-color); color: var(--primary-color);
box-shadow: 0 1px 0 0 var(--primary-color), inset 0 -1px 0 0 var(--primary-color);
} }
@media (prefers-color-scheme: dark) { .tabs-overview button.tab-button.active::after {
html:not(.light-mode) .tabs-overview button.tab-button:hover .tab-title { content: '';
color: var(--page-foreground-color); display: block;
} position: absolute;
left: 0px;
bottom: 0;
right: 0px;
height: 3px;
border-radius: var(--border-radius-small) var(--border-radius-small) 0 0;
background-color: var(--primary-color);
} }
html.dark-mode .tabs-overview button.tab-button:hover .tab-title {
color: var(--page-foreground-color);
}