OpenProject is the leading open source project management software.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
openproject/app/assets/stylesheets/content/_collapsible_section.lsg

21 lines
513 B

# Collapsible section
```
<collapsible-section-augment initially-expanded="true"
section-title="My section title">
</collapsible-section-augment>
<div class="collapsible-section-augment--body" hidden>
<p><strong>Initially expanded</strong></p>
</div>
```
```
<collapsible-section-augment section-title="My closed section title">
</collapsible-section-augment>
<div class="collapsible-section-augment--body" hidden>
<p><strong>Initially closed</strong></p>
</div>
</collapsible-section>
```