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:
Jeff Teunissen 2011-07-09 23:24:38 -04:00 committed by Antti Harri
parent 9be02354b0
commit c1dc4f7748

View file

@ -496,10 +496,14 @@ table.memberdecls {
} }
.paramname { .paramname {
color: #406; color: white;
text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.9);
white-space: nowrap; white-space: nowrap;
} }
.memproto .paramname {
color: #406;
text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.9);
}
.paramname em { .paramname em {
/* font-style: normal;*/ /* font-style: normal;*/
} }