From c1dc4f774877672f7e088e90c43d71e58e3e9547 Mon Sep 17 00:00:00 2001 From: Jeff Teunissen Date: Sat, 9 Jul 2011 23:24:38 -0400 Subject: [PATCH] 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. --- doc/doxygen.css | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/doc/doxygen.css b/doc/doxygen.css index af984b6b5..f03f5179c 100644 --- a/doc/doxygen.css +++ b/doc/doxygen.css @@ -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;*/ }