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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

135 lines
2.2 KiB
SCSS
Raw Normal View History

2015-11-30 18:32:01 +08:00
details {
position: relative;
2023-12-05 20:56:17 +08:00
.topic-body .cooked &,
.d-editor-preview,
&.details__boxed {
2023-12-05 20:56:17 +08:00
background-color: var(--primary-very-low);
padding: 0.25rem 0.75rem;
margin-bottom: 0.5rem;
&:not([open]) {
&:hover,
&:focus,
&:focus-within {
background-color: var(--d-hover);
}
}
2023-12-05 20:56:17 +08:00
aside.quote .title,
blockquote,
code {
background-color: rgba(var(--primary-rgb), 0.05);
}
}
2015-11-30 18:32:01 +08:00
}
details.details__boxed {
summary {
font-weight: bold;
}
}
2015-11-30 18:32:01 +08:00
details > *,
details .lightbox-wrapper {
display: none;
}
details,
summary {
outline: none;
}
summary {
> p {
margin-block: 0;
padding-block: 1rem;
}
}
2015-11-30 18:32:01 +08:00
summary:first-of-type {
cursor: pointer;
display: block;
}
summary:before {
content: "\25BA";
margin-right: 0.25em;
2015-11-30 18:32:01 +08:00
}
details[open] > *,
details[open] .lightbox-wrapper {
display: block;
}
2015-11-30 18:32:01 +08:00
details[open] > summary:before,
details.open > summary:before {
content: "\25BC";
2015-11-30 18:32:01 +08:00
}
details[open] > summary:first-of-type ~ *,
details.open > summary:first-of-type ~ * {
2015-11-30 18:32:01 +08:00
display: block;
}
/* hide native indicator */
summary::-webkit-details-marker {
display: none;
}
2023-12-05 20:56:17 +08:00
.topic-body .cooked,
.d-editor-preview {
.elided {
background-color: unset;
padding: 0;
&:not([open]) {
//specificity needed to overrule non-elided
&:hover,
&:focus,
&:focus-within {
background-color: unset;
}
summary:hover {
background: var(--d-hover);
}
}
2023-12-05 20:56:17 +08:00
&[open] {
background: var(--primary-very-low);
padding: 0.5rem 0.75rem;
summary {
padding: 0;
}
}
2023-12-05 20:56:17 +08:00
summary:before {
content: "" !important;
display: none;
}
2023-12-05 20:56:17 +08:00
summary {
@include unselectable;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
box-sizing: border-box;
margin: 0;
padding: 0.5rem 0.75rem;
color: var(--primary-medium);
background: var(--primary-very-low);
width: min-content;
line-height: 1;
&:hover,
&:focus,
&:focus-within {
color: var(--primary);
cursor: pointer;
}
}
}
}