diff options
-rw-r--r-- | templates/web/zurich/report/updates.html | 2 | ||||
-rw-r--r-- | web/cobrands/zurich/layout.scss | 16 |
2 files changed, 13 insertions, 5 deletions
diff --git a/templates/web/zurich/report/updates.html b/templates/web/zurich/report/updates.html index 1e835aab7..63f39d8f7 100644 --- a/templates/web/zurich/report/updates.html +++ b/templates/web/zurich/report/updates.html @@ -1,7 +1,7 @@ [% IF problem.state == 'fixed - council' OR problem.state == 'closed' %] <h4 class="static-with-rule">[% loc('Updates') %]</h4> <ul class="item-list item-list--updates"> - <li> + <li class="item-list__item item-list__item--updates"> <div class="item-list__update-wrap"> <div class="item-list__update-text"> <p class="meta-2">[% prettify_dt( problem.lastupdate, 'zurich' ) %]</p> diff --git a/web/cobrands/zurich/layout.scss b/web/cobrands/zurich/layout.scss index 79c374c67..a47c9dec0 100644 --- a/web/cobrands/zurich/layout.scss +++ b/web/cobrands/zurich/layout.scss @@ -249,14 +249,22 @@ body.fullwidthpage.admin .content { } body.mappage.admin { - .content { - margin-top: 5em; - margin-left: 0; - padding: 0px; + // Shuffle things around so they're in the right place + #map_box { + top: 11em; + left: 40em; + } + #map_sidebar { + top: 11em; width: 40em; + padding: 0; background: #fff url(/cobrands/zurich/admin-faux-columns.gif) top center repeat-y; @include box-shadow(0 0 5px rgba(0,0,0,0.5)); } + .content { + // To push down the admin navigation + margin-top: 6em; + } } .admin-report-edit { |