diff options
author | Dave Whiteland <dave@mysociety.org> | 2012-12-05 15:25:26 +0000 |
---|---|---|
committer | Dave Whiteland <dave@mysociety.org> | 2012-12-05 15:25:26 +0000 |
commit | 5d05c85470d1637f19c0c1706279122f23df00d0 (patch) | |
tree | 201319dd1ddd0bfa5e01b95f3256a9a8f6397cb0 | |
parent | 57a1e53fbc047cbd762329166f99f138e642c848 (diff) |
put the sidebar tips and notices in the flow of the column, less ugly
-rw-r--r-- | web/cobrands/oxfordshire/layout.scss | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/web/cobrands/oxfordshire/layout.scss b/web/cobrands/oxfordshire/layout.scss index bf6ac1e14..e0eb8bcf4 100644 --- a/web/cobrands/oxfordshire/layout.scss +++ b/web/cobrands/oxfordshire/layout.scss @@ -75,12 +75,19 @@ body.twothirdswidthpage { } } +// show the sidebar tips and notices in the document flow, i.e., in the +// left-hand column, rather than in smaller text above the map .general-sidebar-notes, #report-a-problem-sidebar { - z-index: 99; // float above the map, since (like the map) this is the the right of the text/input column + position: static; + width: auto; + @include box-shadow(rgba(0, 0, 0, 0), 0, 0, 0); + .sidebar-tips, + .sidebar-notes { + font-size:1em; + } } - // To prevent font size larger interfering with the fixed Oxfordshire layout .container { width: auto; } .full-width { width: 464px; } |