diff options
author | Zarino Zappia <mail@zarino.co.uk> | 2018-02-23 15:42:07 +0000 |
---|---|---|
committer | Zarino Zappia <mail@zarino.co.uk> | 2018-03-01 11:36:15 +0000 |
commit | fb7e9dc597abe80c8cfdc385f75256456605fe29 (patch) | |
tree | 757e83a0bd3bc08c0b75a487b96770ad4054cfd9 | |
parent | 3bc248986218229c7de2d2669c85676ec29f4591 (diff) |
Increase size of sub map links
The tiny buttons could prove hard to trigger, especially on touchscreen
devices, and with large screens now more commonplace, there’s no reason
not to give them a few more pixels.
One of a number of enhancements suggested in #1462.
-rw-r--r-- | CHANGELOG.md | 1 | ||||
-rw-r--r-- | web/cobrands/oxfordshire/base.scss | 5 | ||||
-rw-r--r-- | web/cobrands/sass/_base.scss | 7 | ||||
-rw-r--r-- | web/cobrands/sass/_layout.scss | 8 |
4 files changed, 11 insertions, 10 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 20594f363..f7a0a19e5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,7 @@ * Unreleased - Front end improvements: - Improve questionnaire process. #1939 #1998 + - Increase size of "sub map links" (hide pins, permalink, etc) #2003 - Bugfixes: - Stop asset layers obscuring marker layer. #1999 - Don't delete hidden field values when inspecting reports. #1999 diff --git a/web/cobrands/oxfordshire/base.scss b/web/cobrands/oxfordshire/base.scss index 85fe0fbdf..f3e1c9bbe 100644 --- a/web/cobrands/oxfordshire/base.scss +++ b/web/cobrands/oxfordshire/base.scss @@ -34,11 +34,6 @@ dd, p { line-height: 1.4em; } -// TODO: Should this be applied to the base base stylesheet, to prevent possible similar issues in other cobrands? -#sub_map_links { - line-height: 1em; -} - .council_info_box { border-top: 1px solid #ccc; padding: 1em; diff --git a/web/cobrands/sass/_base.scss b/web/cobrands/sass/_base.scss index 41075907f..4f46d685a 100644 --- a/web/cobrands/sass/_base.scss +++ b/web/cobrands/sass/_base.scss @@ -1474,12 +1474,14 @@ html.js #map .noscript { background: #333; background: rgba(0, 0, 0, 0.7); margin: 0; + font-size: 1em; + line-height: 1em; a { display: inline-block; - font-size: 0.6875em; + font-size: 0.8em; color: #fff; - padding: 0.6em 1em 0.5em 1em; + padding: 0.7em 1em; &:hover { background-color: #000; @@ -1523,6 +1525,7 @@ html.js #map .noscript { } } +// The "Try again / OK" buttons in mobile reporting UI #mob_sub_map_links { position: absolute; bottom:0; diff --git a/web/cobrands/sass/_layout.scss b/web/cobrands/sass/_layout.scss index 1d1ecf205..2bd57f14a 100644 --- a/web/cobrands/sass/_layout.scss +++ b/web/cobrands/sass/_layout.scss @@ -671,11 +671,13 @@ body.authpage { &:after { content: ""; - display: inline-block; - vertical-align: middle; + display: block; + position: absolute; width: 6px; height: 12px; - margin-#{$left}: ((16px - 6px) / 2); // horizontally centre in 16px wide parent + top: 50%; + margin-top: -6px; + #{$left}: ((16px - 6px) / 2); // horizontally centre in 16px wide parent background-size: 96px 12px; @include svg-background-image('/cobrands/fixmystreet/images/map-tools'); } |