mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-12 00:01:43 +00:00
Fix parameter names in documentation bodies
In \param sections within function/etc. docs, argument names were being displayed with the same formatting they are in the prototype...very ugly on the background they're on. Make 'em white.
This commit is contained in:
parent
9be02354b0
commit
c1dc4f7748
1 changed files with 6 additions and 2 deletions
|
@ -496,10 +496,14 @@ table.memberdecls {
|
|||
}
|
||||
|
||||
.paramname {
|
||||
color: #406;
|
||||
text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.9);
|
||||
color: white;
|
||||
white-space: nowrap;
|
||||
}
|
||||
.memproto .paramname {
|
||||
color: #406;
|
||||
text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.9);
|
||||
}
|
||||
|
||||
.paramname em {
|
||||
/* font-style: normal;*/
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue