Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit a27f39e

Browse files
committed
add support for the .glow class on code listing lines
When setting SOURCE_BROWSER = YES in the Doxyfile, links to the code lines where a certain interface is defined are referenced. When the link is clicked the related sourcecode is shown and the referenced line is highlighted. The style of the highlight has been improved.
1 parent 06ffe6d commit a27f39e

File tree

1 file changed

+12
-3
lines changed

1 file changed

+12
-3
lines changed

doxygen-awesome.css

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1025,8 +1025,8 @@ table.params .paramname {
10251025
line-height: var(--table-line-height);
10261026
}
10271027

1028-
.glow {
1029-
text-shadow: 0 0 15px var(--primary-light-color) !important;
1028+
h1.glow, h2.glow, h3.glow, h4.glow, h5.glow, h6.glow {
1029+
text-shadow: 0 0 15px var(--primary-light-color);
10301030
}
10311031

10321032
.alphachar a {
@@ -1282,6 +1282,15 @@ div.fragment .line:first-child .lineno {
12821282
box-shadow: -999999px 0px 0 999999px var(--fragment-linenumber-background), -999998px 0px 0 999999px var(--fragment-linenumber-border);
12831283
}
12841284

1285+
div.line {
1286+
border-radius: var(--border-radius-small);
1287+
}
1288+
1289+
div.line.glow {
1290+
background-color: var(--primary-light-color);
1291+
box-shadow: none;
1292+
}
1293+
12851294
/*
12861295
dl warning, attention, note, deprecated, bug, ...
12871296
*/
@@ -1401,7 +1410,6 @@ div.memitem {
14011410

14021411
div.memproto, h2.memtitle {
14031412
background: var(--fragment-background);
1404-
text-shadow: none;
14051413
}
14061414

14071415
h2.memtitle {
@@ -1477,6 +1485,7 @@ div.memproto table.memname {
14771485
font-family: var(--font-family-monospace);
14781486
color: var(--page-foreground-color);
14791487
font-size: var(--memname-font-size);
1488+
text-shadow: none;
14801489
}
14811490

14821491
div.memproto div.memtemplate {

0 commit comments

Comments
 (0)