diff options
author | Hakim Cassimally <hakim@mysociety.org> | 2014-12-04 17:26:42 +0000 |
---|---|---|
committer | Hakim Cassimally <hakim@mysociety.org> | 2015-01-08 12:28:56 +0000 |
commit | 72cee9781f996a6866ccd5b3bc67e8d682be9ea7 (patch) | |
tree | 0f8b94cfd68a81a541deb7979d8c32770b10c91b /web | |
parent | 395bf81b39cec7f706132837d39c75242070a088 (diff) |
[Harrogate] custom form fields
Requires previous (generic) commit to prevent information only
categories (e.g. Dead animals message) from displaying a spurious
textbox.
Also support for sending these custom fields by email:
Requires a hook in RS::Problem method, as by default, only a restricted
number of hard-coded fields are send in the email.
(And the template language is pseudo-PHP so we can't simply pass in the
whole data-structure.)
Diffstat (limited to 'web')
-rw-r--r-- | web/cobrands/harrogate/base.scss | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/web/cobrands/harrogate/base.scss b/web/cobrands/harrogate/base.scss index 118f0b8b7..94dd39ee7 100644 --- a/web/cobrands/harrogate/base.scss +++ b/web/cobrands/harrogate/base.scss @@ -34,3 +34,9 @@ body.frontpage #site-logo, color: $nav_fg; } } + +label[for=form_INFO_TEXT] { + background: yellow; + border: solid 1px black; + padding: 1em; +} |