diff options
author | Matthew Landauer <matthew@openaustralia.org> | 2013-03-07 13:46:11 +1100 |
---|---|---|
committer | Matthew Landauer <matthew@openaustralia.org> | 2013-03-07 16:29:12 +1100 |
commit | 1afba04869353802b67cb0d510e787b10986534c (patch) | |
tree | f5c710fbbd3b402ccf8e7f4615d7e1a18aa8ef95 | |
parent | 4773ce56a0d6b66a065470b3dd80dcd5990d2071 (diff) |
Replace use of <big> tag with <span class="big">
-rw-r--r-- | app/views/comment/new.rhtml | 6 | ||||
-rw-r--r-- | public/stylesheets/main.css | 4 |
2 files changed, 7 insertions, 3 deletions
diff --git a/app/views/comment/new.rhtml b/app/views/comment/new.rhtml index aa5b6051c..578732cdb 100644 --- a/app/views/comment/new.rhtml +++ b/app/views/comment/new.rhtml @@ -67,10 +67,10 @@ </ul> <p> - <big><%= _('Annotations will be posted publicly here, and are - <strong>not</strong> sent to {{public_body_name}}.',:public_body_name=>h(@info_request.public_body.name)) %></big> + <span class="big"><%= _('Annotations will be posted publicly here, and are + <strong>not</strong> sent to {{public_body_name}}.',:public_body_name=>h(@info_request.public_body.name)) %></span> <% if @info_request.is_external? %> - <big><%= _('Note that the requester will not be notified about your annotation, because the request was published by {{public_body_name}} on their behalf.', :public_body_name => @info_request.public_body.name) %></big> + <span class="big"><%= _('Note that the requester will not be notified about your annotation, because the request was published by {{public_body_name}} on their behalf.', :public_body_name => @info_request.public_body.name) %></span> <% end %> </p> diff --git a/public/stylesheets/main.css b/public/stylesheets/main.css index 1a6aa1d84..2823f3978 100644 --- a/public/stylesheets/main.css +++ b/public/stylesheets/main.css @@ -1743,3 +1743,7 @@ text-decoration:underline; .request_listing a,.body_listing a,.user_listing a,.request_short_listing a,h2 a,.feed_link a { text-decoration:none; } + +.big { + font-size: larger; +} |