Skip to content

Commit 07a301f

Browse files
committed
Tweak looks of HTML member declaration section
1 parent 894735c commit 07a301f

File tree

3 files changed

+34
-4
lines changed

3 files changed

+34
-4
lines changed

src/htmlgen.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ static void writeClientSearchBox(TextStream &t,const QCString &relPath)
8888
t << " onkeyup=\"searchBox.OnSearchFieldChange(event)\"/>\n";
8989
t << " </span><span class=\"right\">\n";
9090
t << " <a id=\"MSearchClose\" href=\"javascript:searchBox.CloseResultsWindow()\">"
91-
<< "<div id=\"MSearchCloseImg\" class=\"close-icon\"/></a>\n";
91+
<< "<div id=\"MSearchCloseImg\" class=\"close-icon\"></div></a>\n";
9292
t << " </span>\n";
9393
t << " </div>\n";
9494
}

templates/html/doxygen.css

+32-3
Original file line numberDiff line numberDiff line change
@@ -488,9 +488,18 @@ div.classindex span.ai {
488488
}
489489

490490
div.groupHeader {
491-
margin-left: 16px;
492-
margin-top: 12px;
493-
font-weight: bold;
491+
box-shadow: 100px 0 var(--page-background-color),
492+
-100px 0 var(--page-background-color),
493+
100px 1px var(--group-header-separator-color),
494+
-100px 1px var(--group-header-separator-color);
495+
color: var(--group-header-color);
496+
font-size: 110%;
497+
font-weight: normal;
498+
margin-left: 0px;
499+
margin-top: 0em;
500+
margin-bottom: 6px;
501+
padding-top: 8px;
502+
padding-bottom: 4px;
494503
}
495504

496505
div.groupText {
@@ -683,6 +692,18 @@ table.memberdecls {
683692
color: var(--memdecl-foreground-color);
684693
}
685694

695+
.mdescLeft {
696+
border-left: 1px solid var(--memdecl-border-color);
697+
border-bottom: 1px solid var(--memdecl-border-color);
698+
border-radius: 0 0 0 4px;
699+
}
700+
701+
.mdescRight {
702+
border-right: 1px solid var(--memdecl-border-color);
703+
border-bottom: 1px solid var(--memdecl-border-color);
704+
border-radius: 0 0 4px 0;
705+
}
706+
686707
.memSeparator {
687708
line-height: 1px;
688709
margin: 0px;
@@ -701,6 +722,14 @@ table.memberdecls {
701722
transition: none;
702723
}
703724

725+
.memberdecls tr[class^='memitem']:has(+ tr[class^='memdesc']) td.memItemLeft {
726+
border-radius: 4px 0 0 0;
727+
}
728+
729+
.memberdecls tr[class^='memitem']:has(+ tr[class^='memdesc']) td.memItemRight {
730+
border-radius: 0 4px 0 0;
731+
}
732+
704733
.memItemRight {
705734
width: 100%;
706735
border-radius: 0 4px 4px 0;

templates/html/search_nomenu.css

+1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,5 @@
33
#MSearchBox {
44
position: absolute;
55
right: 5px;
6+
margin-right: 10px;
67
}

0 commit comments

Comments
 (0)