diff options
author | Matthew Somerville <matthew-github@dracos.co.uk> | 2016-10-13 17:49:04 +0100 |
---|---|---|
committer | Matthew Somerville <matthew-github@dracos.co.uk> | 2016-10-13 17:49:04 +0100 |
commit | 8ab9812e6cd5f686f7ab4d9a9859e8be4456ccd0 (patch) | |
tree | 5bf1a9d25d2707a70c023a8aa53cf01cbe2f8d71 /web/cobrands/sass/_base.scss | |
parent | 9fc69a31cda118948e3714bc7f4fff9d0a3ca84e (diff) | |
parent | b86c2142d2f82fb503807feae0a8df4b8af39571 (diff) |
Merge branch 'issues/forcouncils/86-show-shortlist-reports'
Diffstat (limited to 'web/cobrands/sass/_base.scss')
-rw-r--r-- | web/cobrands/sass/_base.scss | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/web/cobrands/sass/_base.scss b/web/cobrands/sass/_base.scss index 612d8cf55..3c76a3990 100644 --- a/web/cobrands/sass/_base.scss +++ b/web/cobrands/sass/_base.scss @@ -1086,6 +1086,34 @@ input.final-submit { } } +.shortlisted-status { + margin-top: 1em; + padding: 1em 1em 1em 4em; // Icon is always displayed on left, even in RtL mode + border-radius: 0.25em; + border: 1px solid rgba(0, 0, 0, 0.1); + background: rgba(255, 255, 255, 0.5) url(/cobrands/fixmystreet/images/shortlist.png) 1em 50% no-repeat; + background-size: 2em 2em; + + @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) { + background-image: url(/cobrands/fixmystreet/images/shortlist@2.png); + } + + @media all { + background-image: url(/cobrands/fixmystreet/images/shortlist.svg), none; + } + + h3 { + margin: 0; + font-size: 1em; + font-weight: bold; + } + + p { + margin: 0.5em 0 0 0; + font-size: 0.875em; + } +} + // map stuff #map_box { margin: 0 -1em 1em; |