discourse/plugins/discourse-details/assets/stylesheets/details.scss

39 lines
594 B
SCSS
Raw Normal View History

2015-11-30 05:32:01 -05:00
details {
position: relative;
}
details > *,
details .lightbox-wrapper {
display: none;
}
summary:first-of-type {
cursor: pointer;
display: block;
}
summary:before {
content: '\25BA';
margin-right: .25em;
}
details[open] > summary:before,
details.open > summary:before {
content: '\25BC';
}
details[open] > summary:first-of-type ~ *,
details.open > summary:first-of-type ~ * {
display: block;
}
/* hide native indicator */
summary::-webkit-details-marker {
display: none;
}
/* FF: hide div generated by lazyYT plugin */
details .lazyYT-container {
display: none;
}