@xpack/docusaurus-plugin-doxygen
Version:
A Docusaurus plugin to integrate Doxygen into a Docusaurus project.
60 lines (50 loc) • 1.23 kB
CSS
/* --- Begin TreeTableRow/styles.module.css --- */
/* --- Part of docusaurus-plugin-doxygen --- */
:global(tr.doxyTreeItem:hover) {
background-color: var(--ifm-menu-color-background-hover);
}
:global(td.doxyTreeItemLeft) {
white-space: nowrap;
padding-top: 6px;
padding-bottom: 6px;
}
:global(td.doxyTreeItemRight) {
padding-top: 6px;
padding-bottom: 6px;
width: 100%;
}
:global(td.doxyTreeItemRight p) {
margin: 0px;
}
:global(span.doxyTreeIconBox) {
margin-right: 6px;
}
:global(span.doxyTreeIcon) {
background: var(--ifm-color-primary);
color: var(--ifm-color-content-inverse);
border-radius: 4px;
font-weight: bold;
padding: 1px 4px 1px 4px;
text-align: center;
margin-left: 2px;
margin-right: 2px;
}
:global(.doxyIconFile::before) {
content: '';
width: 24px;
height: 24px;
display: inline-flex;
vertical-align: middle;
padding-right: 0.4em;
background: url("img/document-svgrepo-com.svg") no-repeat;
}
:global(.doxyIconFolder::before) {
content: '';
width: 24px;
height: 24px;
display: inline-flex;
vertical-align: middle;
padding-right: 0.4em;
background: url("img/folder-svgrepo-com.svg") no-repeat;
}
/* --- End TreeTableRow/styles.module.css --- */