diff options
-rw-r--r-- | CHANGELOG.md | 1 | ||||
-rw-r--r-- | web/cobrands/sass/_base.scss | 14 |
2 files changed, 7 insertions, 8 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index c3d229bd6..d4ad9a5c7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -20,6 +20,7 @@ - Report status filter All option works for body users #1845 - Always allow reports to be removed from shortlist #1882 - Remove shortlist form from inspect duplicate list. + - Fix pin size when JavaScript unavailable. - Admin improvements: - Character length limit can be placed on report detailed information #1848 - Inspector panel shows nearest address if available #1850 diff --git a/web/cobrands/sass/_base.scss b/web/cobrands/sass/_base.scss index 384566516..ffb31587f 100644 --- a/web/cobrands/sass/_base.scss +++ b/web/cobrands/sass/_base.scss @@ -1697,14 +1697,12 @@ html.js #map .noscript { img { cursor: move; } - img.pin { - z-index: 100; - background-color: inherit; - } - a img.pin { - cursor: pointer; - cursor: hand; - } +} + +/* For non-JS situations, as the image file is 2x pixel size */ +img.pin { + width: 48px; + height: 64px; } // only on mobile |