diff options
author | Zarino Zappia <mail@zarino.co.uk> | 2017-08-14 12:31:36 +0100 |
---|---|---|
committer | Matthew Somerville <matthew-github@dracos.co.uk> | 2017-08-15 15:22:22 +0100 |
commit | 2a202b9cdbaaabb19d785c4be6936d5088b941cc (patch) | |
tree | 3a055b8d7658bd0831c2ea2a80a769b425a35c49 /web | |
parent | 36deff73c55b2c69e7313f152d4894b0f8650c84 (diff) |
Clearer highlight for selected duplicate on inspect form
Fixes mysociety/fixmystreetforcouncils#211.
Diffstat (limited to 'web')
-rw-r--r-- | web/cobrands/sass/_base.scss | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/web/cobrands/sass/_base.scss b/web/cobrands/sass/_base.scss index 65abd8421..3a7501993 100644 --- a/web/cobrands/sass/_base.scss +++ b/web/cobrands/sass/_base.scss @@ -1187,6 +1187,21 @@ input.final-submit { } } +// List of potential duplicate reports (or a single confirmed duplicate) +// that appears in Inspector form, when closing a report as a duplicate. +.item-list--inspect-duplicates { + border-bottom: none; + + .item-list__item { + background-color: rgba(255, 255, 255, 0.5); + } + + .item-list--reports__item--selected { + border: 0.25em solid $primary; + background-color: #fff; + } +} + .item-list__heading { font-size: 1em; font-weight: normal; |