Dragonglass

Expansion panels

Full-width details panels with a generated open-state marker.

Collapsed and open panels

Billing details

Your plan renews next month.

Account status

Your account is active.

<details data-expansion-panel open>
  <summary>Account status</summary>
  <p>Your account is active.</p>
</details>

Panel with form content

Contact details
<details data-expansion-panel open>
  <summary>Contact details</summary>
  <form>
    <label for="contact-email">Email</label>
    <input id="contact-email" type="email" name="email">
    <button type="submit">Save</button>
  </form>
</details>

Colored panel

Apply a bg-* utility to details to color the complete panel, including its heading and content.

Deployment status

The latest release is available.

<details class="bg-primary" data-expansion-panel open>
  <summary>Deployment status</summary>
  <p>The latest release is available.</p>
</details>

Colored heading

Apply a bg-* utility to summary when only the panel heading needs a distinct color.

Security settings

Two-factor authentication is active.

<details data-expansion-panel open>
  <summary class="bg-accent">Security settings</summary>
  <p>Two-factor authentication is active.</p>
</details>

Behavior

The native details element controls disclosure state. The open summary keeps a stable bottom border while its generated marker rotates. Reduced motion changes the marker and summary state without a transition.

API

Expansion panel elements, attributes, tokens and states
NameTypeDefaultDescription
details / summaryElementRequiredMatches details[data-expansion-panel] and its direct summary.
data-expansion-panelAttributeRequiredApplies the full-width expansion panel treatment.
openAttribute / stateAbsentRotates the generated disclosure marker.
--card-radius / --border-defaultTokenThemeControl panel corners and border color.
--spacing-3 / --spacing-4TokenThemeControl summary and content spacing.
--motion-duration-fast / --motion-easing-standardMotion token120ms / ease-in-outControl the marker, border and summary state transitions.