File tree 3 files changed +34
-4
lines changed
3 files changed +34
-4
lines changed Original file line number Diff line number Diff line change @@ -88,7 +88,7 @@ static void writeClientSearchBox(TextStream &t,const QCString &relPath)
88
88
t << " onkeyup=\" searchBox.OnSearchFieldChange(event)\" />\n " ;
89
89
t << " </span><span class=\" right\" >\n " ;
90
90
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 " ;
92
92
t << " </span>\n " ;
93
93
t << " </div>\n " ;
94
94
}
Original file line number Diff line number Diff line change @@ -488,9 +488,18 @@ div.classindex span.ai {
488
488
}
489
489
490
490
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 ;
494
503
}
495
504
496
505
div .groupText {
@@ -683,6 +692,18 @@ table.memberdecls {
683
692
color : var (--memdecl-foreground-color );
684
693
}
685
694
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
+
686
707
.memSeparator {
687
708
line-height : 1px ;
688
709
margin : 0px ;
@@ -701,6 +722,14 @@ table.memberdecls {
701
722
transition : none;
702
723
}
703
724
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
+
704
733
.memItemRight {
705
734
width : 100% ;
706
735
border-radius : 0 4px 4px 0 ;
Original file line number Diff line number Diff line change 3
3
# MSearchBox {
4
4
position : absolute;
5
5
right : 5px ;
6
+ margin-right : 10px ;
6
7
}
You can’t perform that action at this time.
0 commit comments