diff options
-rw-r--r-- | perllib/Page.pm | 6 | ||||
-rw-r--r-- | web/css/core.css | 4 |
2 files changed, 8 insertions, 2 deletions
diff --git a/perllib/Page.pm b/perllib/Page.pm index 6893b8d7d..f14179ba9 100644 --- a/perllib/Page.pm +++ b/perllib/Page.pm @@ -6,7 +6,7 @@ # Copyright (c) 2006 UK Citizens Online Democracy. All rights reserved. # Email: matthew@mysociety.org; WWW: http://www.mysociety.org/ # -# $Id: Page.pm,v 1.213 2009-12-02 16:06:53 louise Exp $ +# $Id: Page.pm,v 1.214 2009-12-03 12:51:06 louise Exp $ # package Page; @@ -793,7 +793,9 @@ sub display_problem_meta_line($$) { my @councils = split /,/, $problem->{council}; my $areas_info = mySociety::MaPit::get_voting_areas_info(\@councils); my $council = join(' and ', map { $areas_info->{$_}->{name} } @councils); - $out .= $q->br() . $q->small(sprintf(_('Sent to %s %s later'), $council, prettify_duration($problem->{whensent}, 'minute'))); + $out .= '<span class="council_sent_info">'; + $out .= $q->br() . sprintf(_('Sent to %s %s later'), $council, prettify_duration($problem->{whensent}, 'minute')); + $out .= '</span>'; } } else { $out .= $q->br() . $q->small(_('Not reported to council')); diff --git a/web/css/core.css b/web/css/core.css index d10494619..0bb8c5619 100644 --- a/web/css/core.css +++ b/web/css/core.css @@ -332,6 +332,10 @@ p#copyright { margin: 0; } +.council_sent_info { + font-size: small; +} + /* RSS feed XSL */ #rss_items { |