2015-11-30 05:32:01 -05:00
|
|
|
details {
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
details > *,
|
|
|
|
details .lightbox-wrapper {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2016-03-11 11:51:16 -05:00
|
|
|
details,
|
|
|
|
summary {
|
|
|
|
outline: none;
|
|
|
|
}
|
|
|
|
|
2015-11-30 05:32:01 -05:00
|
|
|
summary:first-of-type {
|
|
|
|
cursor: pointer;
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
summary:before {
|
2018-06-08 05:49:31 -04:00
|
|
|
content: "\25BA";
|
|
|
|
margin-right: 0.25em;
|
2015-11-30 05:32:01 -05:00
|
|
|
}
|
|
|
|
|
2019-03-08 18:07:22 -05:00
|
|
|
details[open] > *,
|
|
|
|
details[open] .lightbox-wrapper {
|
2016-04-06 15:44:29 -04:00
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
2015-11-30 05:32:01 -05:00
|
|
|
details[open] > summary:before,
|
2018-06-08 05:49:31 -04:00
|
|
|
details.open > summary:before {
|
|
|
|
content: "\25BC";
|
2015-11-30 05:32:01 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
details[open] > summary:first-of-type ~ *,
|
2018-06-08 05:49:31 -04:00
|
|
|
details.open > summary:first-of-type ~ * {
|
2015-11-30 05:32:01 -05:00
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* hide native indicator */
|
|
|
|
summary::-webkit-details-marker {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2016-03-11 11:51:16 -05:00
|
|
|
.elided {
|
|
|
|
summary:before {
|
2018-06-08 05:49:31 -04:00
|
|
|
content: "" !important;
|
2018-02-08 22:59:11 -05:00
|
|
|
display: none;
|
2016-03-11 11:51:16 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
summary {
|
|
|
|
@include unselectable;
|
2018-02-08 22:59:11 -05:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
text-align: center;
|
2016-03-11 11:51:16 -05:00
|
|
|
box-sizing: border-box;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
2018-08-06 11:44:37 -04:00
|
|
|
color: $primary-medium;
|
|
|
|
background: $primary-low;
|
|
|
|
border: 1px solid $primary-low-mid;
|
|
|
|
width: 1.5em;
|
|
|
|
line-height: 1;
|
2016-03-11 11:51:16 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
summary:hover {
|
2018-08-06 11:44:37 -04:00
|
|
|
color: $primary;
|
|
|
|
background: $primary-low-mid;
|
|
|
|
border-color: currentColor;
|
2016-03-11 11:51:16 -05:00
|
|
|
}
|
|
|
|
}
|