diff options
author | Zarino Zappia <mail@zarino.co.uk> | 2019-03-12 12:32:11 +0000 |
---|---|---|
committer | Matthew Somerville <matthew-github@dracos.co.uk> | 2019-03-28 08:02:03 +0000 |
commit | 4abe01df6bae32d7578047ac67466794d92e5176 (patch) | |
tree | 072fa5a3b68cc51192820121e817422d98dd859e /web | |
parent | 884080d3944b6232aedbb36d830ab6e9dee7d1a5 (diff) |
Show detailed delivery info in expanded list items
Make the expandable list item’s expanded state look more like the
regular `.problem-header`, to more strongly imply that you don’t need
to visit the individual report page to read more.
Since expandable list items now *always* contain more information in
their expanded state, there’s no need for the `show_more` flag in the
templates.
Addresses part of the feedback in mysociety/fixmystreet-commercial#1304.
Diffstat (limited to 'web')
-rw-r--r-- | web/cobrands/sass/_base.scss | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/web/cobrands/sass/_base.scss b/web/cobrands/sass/_base.scss index 2491c4c21..8d80044ee 100644 --- a/web/cobrands/sass/_base.scss +++ b/web/cobrands/sass/_base.scss @@ -1339,6 +1339,16 @@ input.final-submit { margin-top: 0.5em; } + // A sort of hybrid between the .problem-header meta rows, + // and the regular .list-item meta row. + .report_meta_info, + .council_sent_info { + color: #666; + font-family: $meta-font; + font-style: italic; + font-size: 0.8125em; + } + p { line-height: 1.4em; margin-top: 0.5em; |