diff options
-rw-r--r-- | app/views/help/unhappy.rhtml | 6 | ||||
-rw-r--r-- | public/stylesheets/main.css | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/app/views/help/unhappy.rhtml b/app/views/help/unhappy.rhtml index b2f7a4028..5362d57f9 100644 --- a/app/views/help/unhappy.rhtml +++ b/app/views/help/unhappy.rhtml @@ -25,7 +25,7 @@ to your request '<%=request_link(@info_request) %>'? <li>Either way, also <strong>use other means</strong> to answer your question.</li> </ol> -<h1 id="internal_review">1. Asking for an internal review <a href="#internal_review">#</a> </h1> +<h1 id="internal_review">1. Asking for an internal review <a class="hover_a" href="#internal_review">#</a> </h1> <p> <% if !@info_request.nil? %> @@ -44,7 +44,7 @@ you originally requested, or you will be told that the review upholds the original decision. </p> -<h1 id="complaining">2. Complaining to the Information Commissioner <a href="#complaining">#</a> </h1> +<h1 id="complaining">2. Complaining to the Information Commissioner <a class="hover_a" href="#complaining">#</a> </h1> <p>If you are still unhappy after the public authority has done their internal review, then you can complain to the Information Commisioner. To do this read @@ -69,7 +69,7 @@ you want to help the fight to improve Freedom of Information, or maybe getting the information slowly is still worthwhile. You can also try and get the information by <strong>other means...</strong></p> -<h1 id="other_means">3. Using other means to answer your question <a href="#other_means">#</a> </h1> +<h1 id="other_means">3. Using other means to answer your question <a class="hover_a" href="#other_means">#</a> </h1> <p>You can try persuing your problem or your research in other ways. diff --git a/public/stylesheets/main.css b/public/stylesheets/main.css index e6acceb42..3cbaa4b7b 100644 --- a/public/stylesheets/main.css +++ b/public/stylesheets/main.css @@ -881,17 +881,17 @@ div#about_sidebar margin: 0 0 0 1em; } -div#help_about dt a, div#help_about h1 a, div#help_unhappy h1 a +div#help_about dt a, div#help_about h1 a, div#help_unhappy h1 a.hover_a { text-decoration: none; font-size: 0.80em; color: #fff; background-color: #fff; } -div#help_about dt:hover > a, div#help_about h1:hover > a, div#help_unhappy h1:hover > a { +div#help_about dt:hover > a, div#help_about h1:hover > a, div#help_unhappy h1:hover > a.hover_a { color: #0000ee; } -div#help_about dt:hover > a:hover, div#help_about h1:hover > a:hover, div#help_unhappy h1:hover > a:hover { +div#help_about dt:hover > a:hover, div#help_about h1:hover > a:hover, div#help_unhappy h1:hover > a.hover_a:hover { text-decoration: underline; } |