diff options
-rw-r--r-- | templates/web/fixmystreet/alert/choose.html | 2 | ||||
-rw-r--r-- | templates/web/fixmystreet/alert/index.html | 4 | ||||
-rw-r--r-- | templates/web/fixmystreet/alert/updates.html | 16 | ||||
-rw-r--r-- | templates/web/fixmystreet/report/display.html | 2 | ||||
-rw-r--r-- | web/cobrands/fixmystreet/base.scss | 6 |
5 files changed, 20 insertions, 10 deletions
diff --git a/templates/web/fixmystreet/alert/choose.html b/templates/web/fixmystreet/alert/choose.html index fad365088..312b9f520 100644 --- a/templates/web/fixmystreet/alert/choose.html +++ b/templates/web/fixmystreet/alert/choose.html @@ -4,7 +4,7 @@ [% IF possible_location_matches %] <p>[% loc('We found more than one match for that location. We show up to ten matches, please try a different search if yours is not here.') %]</p> - <ul class="pc_alternatives"> + <ul class="pc_alternatives plain-list"> [% FOREACH match IN possible_location_matches %] <li><a href="[% choose_target_uri %]?latitude=[% match.latitude | uri %];longitude=[% match.longitude | uri %]">[% match.address | html %]</a></li> [% END %] diff --git a/templates/web/fixmystreet/alert/index.html b/templates/web/fixmystreet/alert/index.html index 2e1d81c34..c7bcf248d 100644 --- a/templates/web/fixmystreet/alert/index.html +++ b/templates/web/fixmystreet/alert/index.html @@ -9,9 +9,9 @@ within a certain distance of a particular location.') %] </p> [% IF location_offshore %] - <ul class="error"><li>[% loc('That location does not appear to be covered by a council, perhaps it is offshore - please try somewhere more specific.') %]</li></ul> + <div class="error">[% loc('That location does not appear to be covered by a council, perhaps it is offshore - please try somewhere more specific.') %]</div> [% ELSIF location_error %] - <ul class="error"><li>[% location_error %]</li></ul> + <div class="error">[% location_error %]</div> [% ELSE %] [% INCLUDE 'errors.html' %] [% END %] diff --git a/templates/web/fixmystreet/alert/updates.html b/templates/web/fixmystreet/alert/updates.html index 5efc41bac..73d3727e6 100644 --- a/templates/web/fixmystreet/alert/updates.html +++ b/templates/web/fixmystreet/alert/updates.html @@ -10,11 +10,17 @@ </p> <form action="/alert/subscribe" method="post"> -<label class="n" for="alert_rznvy">[% loc('Email:') %]</label> -<input type="email" name="rznvy" id="alert_rznvy" value="[% email | html %]" size="30"> -<input type="hidden" name="id" value="[% problem_id | html %]"> -<input type="hidden" name="type" value="updates"> -<input type="submit" value="[% loc('Subscribe') %]"> + <fieldset> + <label class="hidden n" for="alert_rznvy">[% loc('Your email') %]</label> + + <div class="form-txt-submit-box"> + <input type="email" name="rznvy" id="alert_rznvy" value="[% email | html %]" placeholder="[% loc('Your email') %]"> + <input class="green-btn" type="submit" value="[% loc('Subscribe') %]"> + </div> + + <input type="hidden" name="id" value="[% problem_id | html %]"> + <input type="hidden" name="type" value="updates"> + </fieldset> </form> diff --git a/templates/web/fixmystreet/report/display.html b/templates/web/fixmystreet/report/display.html index 703e3519b..765923a2a 100644 --- a/templates/web/fixmystreet/report/display.html +++ b/templates/web/fixmystreet/report/display.html @@ -119,7 +119,7 @@ [% INCLUDE name %] - <input class="green-btn" type="submit" id="update_post" value="[% loc('Post') %]"> + <input class="final-submit green-btn" type="submit" id="update_post" value="[% loc('Post') %]"> [% ELSE %] diff --git a/web/cobrands/fixmystreet/base.scss b/web/cobrands/fixmystreet/base.scss index de1039fe9..3d48c3cf4 100644 --- a/web/cobrands/fixmystreet/base.scss +++ b/web/cobrands/fixmystreet/base.scss @@ -320,6 +320,9 @@ input[type=file] { font-size: 1em; line-height: 1.5em; } +input[type=file] { + margin-bottom:1em; +} label{ display: block; @@ -361,7 +364,8 @@ label{ .form-txt-submit-box { min-height:3em; input[type=password], - input[type=text] { + input[type=text], + input[type=email] { width: 65%; float:left; } |