diff options
author | Thierry Vignaud <tv@mandriva.org> | 2007-08-14 15:37:25 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mandriva.org> | 2007-08-14 15:37:25 +0000 |
commit | d70c2949b1c3c754398f35fd15ea89809e404b55 (patch) | |
tree | cb7c4065b038a3ad3e16a619a2d8448077b0c1b3 | |
parent | 16510a16d31c7601a0e479b46f9ce6f19e92d156 (diff) | |
download | control-center-d70c2949b1c3c754398f35fd15ea89809e404b55.tar control-center-d70c2949b1c3c754398f35fd15ea89809e404b55.tar.gz control-center-d70c2949b1c3c754398f35fd15ea89809e404b55.tar.bz2 control-center-d70c2949b1c3c754398f35fd15ea89809e404b55.tar.xz control-center-d70c2949b1c3c754398f35fd15ea89809e404b55.zip |
render right titles with a smaller font and in gray
-rwxr-xr-x | control-center | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/control-center b/control-center index 5390e018..1bdb2713 100755 --- a/control-center +++ b/control-center @@ -1395,7 +1395,7 @@ foreach (@tree) { <style type="text/css"> p {text-align: $align} td {text-align: $align} - h2 {text-align: $align} + h3 {text-align: $align; color: gray } tr {text-align: $align}), if_(lang::text_direction_rtl(), " a { direction: rtl; unicode-bidi: embed }"), qq( a:link {color:black; text-decoration:none } @@ -1427,7 +1427,7 @@ foreach (@tree) { foreach my $subtree (@subtrees) { $string .= qq( -<h2>$subtree->{title}</h2> +<h3>$subtree->{title}</h3> <TABLE BORDER=0 cellspacing="20" WIDTH="100%"> ); $string .= join("\n", |