Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / web / core / themes / seven / css / components / details.css
1 /**
2  * @file
3  * Collapsible details.
4  *
5  * @see collapse.js
6  */
7 .seven-details {
8   margin-top: 1em;
9   margin-bottom: 1em;
10   background-color: #fcfcfa;
11   border: 1px solid #bfbfbf;
12   border-radius: 3px;
13 }
14 .seven-details__summary {
15   cursor: pointer;
16   text-shadow: 0 1px 0 white;
17   color: #0074bd;
18 }
19 .seven-details__summary:hover,
20 .seven-details__summary:focus,
21 .seven-details[open] > .seven-details__summary {
22   color: #004f80;
23 }
24 .seven-details__wrapper {
25   padding: 0 1.5em 1em 1.5em;
26 }
27