diff options
Diffstat (limited to 'web')
-rw-r--r-- | web/cobrands/eastsussex/layout.scss | 4 | ||||
-rw-r--r-- | web/cobrands/fixmystreet.com/layout.scss | 8 | ||||
-rw-r--r-- | web/js/fixmystreet-admin.js | 2 |
3 files changed, 1 insertions, 13 deletions
diff --git a/web/cobrands/eastsussex/layout.scss b/web/cobrands/eastsussex/layout.scss index dad118198..9e818f0a5 100644 --- a/web/cobrands/eastsussex/layout.scss +++ b/web/cobrands/eastsussex/layout.scss @@ -108,10 +108,6 @@ body.mappage { line-height: 14px; } -body.twothirdswidthpage.alertindex .content .sticky-sidebar aside { - top: -17em; -} - body.twothirdswidthpage .content .sticky-sidebar aside { top: 0; position: absolute; diff --git a/web/cobrands/fixmystreet.com/layout.scss b/web/cobrands/fixmystreet.com/layout.scss index c6f7c7df4..23f3c575d 100644 --- a/web/cobrands/fixmystreet.com/layout.scss +++ b/web/cobrands/fixmystreet.com/layout.scss @@ -249,14 +249,6 @@ body.twothirdswidthpage { } } -/* hide the footer on the alert page as the interaction with the - * photo sidebar is awkward to fix */ -body.alertindex { - #footer-nav { - display: none; - } -} - .next-steps { @include clearfix; margin-bottom: 2em; // add some space between this and the footer diff --git a/web/js/fixmystreet-admin.js b/web/js/fixmystreet-admin.js index e49516a5c..5e0d873c5 100644 --- a/web/js/fixmystreet-admin.js +++ b/web/js/fixmystreet-admin.js @@ -9,7 +9,7 @@ $(function(){ var show_open311 = false; if ($('#endpoint').val()) { show_open311 = true; // always show the form if there is an endpoint value - } else if (send_method && send_method.toLowerCase() != 'email') { + } else if (send_method && !send_method.match(/^(email|emptyhomes|noop|refused)$/i)) { show_open311 = true; } if (show_open311) { |