diff options
author | Matthew Somerville <matthew@mysociety.org> | 2016-01-06 13:12:53 +0000 |
---|---|---|
committer | Matthew Somerville <matthew@mysociety.org> | 2016-01-06 13:12:53 +0000 |
commit | c46b06e6376e4e522604d3dbee94e215dca4955c (patch) | |
tree | e0cb852e1b42ec723553076592088518ac2ece70 /web/cobrands/sass | |
parent | cfcdf83008e296a889e0eab1842e211ee5e09d36 (diff) | |
parent | 9d391efe1f05eaab3bfc25a3c44b2d6a77879904 (diff) |
Merge branch '1299-banner'
Diffstat (limited to 'web/cobrands/sass')
-rw-r--r-- | web/cobrands/sass/_base.scss | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/web/cobrands/sass/_base.scss b/web/cobrands/sass/_base.scss index 7f9808efd..79ed91d97 100644 --- a/web/cobrands/sass/_base.scss +++ b/web/cobrands/sass/_base.scss @@ -536,8 +536,17 @@ p.label-valid { .wrapper { width:100%; display:table; - caption-side:bottom; + // The 'caption' at large widths will be top, moving the menu up magically + caption-side: bottom; + // This is so absolutely positioned header stuff doesn't overlap banner... + position: relative; +} +// ...however position: relative stops the map being clickable (?), so better +// revert it there +body.mappage .wrapper { + position: static; } + // this is the user's logged in details or the login link etc #user-meta { p { |