diff options
-rw-r--r-- | assets/stylesheets/responsive/custom.scss | 54 | ||||
-rw-r--r-- | lib/views/help/about.html.erb | 30 |
2 files changed, 60 insertions, 24 deletions
diff --git a/assets/stylesheets/responsive/custom.scss b/assets/stylesheets/responsive/custom.scss index 036f758..9161270 100644 --- a/assets/stylesheets/responsive/custom.scss +++ b/assets/stylesheets/responsive/custom.scss @@ -612,6 +612,14 @@ a.link_to_this { } } +.sidebar { + .new-request-cta { + .new-request__make-new-requests { + @include button-primary(); + } + } +} + .feed_link_sidebar .link_button_green { @include button-primary(); } @@ -810,6 +818,29 @@ dt { } } + .intro__title { + color: $color_white; + text-shadow: 0 1px 2px transparentize($color_black, 0.7); + } + + .new-request__content { + background-color: $color_neutral_dark; + border-radius: 5px; + padding: 1.888888889em; + } + + .new-request__title { + color: $color_white; + font-size: 1.4375em; + margin: 0 0 0.5em; + } + + .new-request__description { + color: transparentize($color_white, 0.2); + @include ie8 { + color: $color_white; + } + } .new-request__make-new-requests { @include button-base; background-color: desaturate(darken($color_secondary, 10%), 5%); @@ -822,26 +853,3 @@ dt { } } -.intro__title { - color: $color_white; - text-shadow: 0 1px 2px transparentize($color_black, 0.7); -} - -.new-request__content { - background-color: $color_neutral_dark; - border-radius: 5px; - padding: 1.888888889em; -} - -.new-request__title { - color: $color_white; - font-size: 1.4375em; - margin: 0 0 0.5em; -} - -.new-request__description { - color: transparentize($color_white, 0.2); - @include ie8 { - color: $color_white; - } -} diff --git a/lib/views/help/about.html.erb b/lib/views/help/about.html.erb index 36120f1..9f7d7d5 100644 --- a/lib/views/help/about.html.erb +++ b/lib/views/help/about.html.erb @@ -32,6 +32,34 @@ it must be kept confidential. </dd> + <dt id="reporting">What if I see a request I feel to be inappropriate? <a href="#reporting">#</a></dt> + <dd> + <p> + Requests for personal information and vexatious requests are not considered valid for FOI purposes (read more). + </p> + + <p> + If you believe a request is not suitable, you can report it for attention by the site administrators. + </p> + </dd> + + <dt id="reporting_unavailable">Why won't it let me report some requests? <a href="#reporting_unavailable">#</a></dt> + <dd> + <p> + If a request has already been reported to the site administrators, you + can't report it a second time - this is to prevent the administrators + being notified multiple times about the same issue before they've had + a chance to conduct a review. + </p> + + <p> + Where a request has been previously reported but an administrator has + chosen not to hide it from public view, you can use the form in the + sidebar of the request page to contact the administrators if you still + think it should be hidden. + </p> + </dd> + <dt id="who">Who makes <%= site_name %> ? <a href="#who">#</a> </dt> <dd><%= site_name %> runs on <a href="http://alaveteli.org">Alaveteli</a>, which was created and run by <a href="http://www.mysociety.org">mySociety</a>, and was initially <a href="http://www.mysociety.org/2006/12/06/funding-for-freedom-of-information/">funded by the JRSST Charitable Trust</a>. mySociety is a project of the @@ -49,4 +77,4 @@ <p><strong>Next</strong>, read about <a href="<%= help_requesting_path %>">making requests</a> --></p> <div id="hash_link_padding"></div> -</div>
\ No newline at end of file +</div> |