diff --git a/CHANGELOG.md b/CHANGELOG.md index 141050ad..6d6237ef 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## Features +* **css:** Apply hover cursor from Details component to Details element (#948) + ## Bug Fixes * **assets:** Update @mozilla-protocol/assets to 5.4.0 diff --git a/assets/sass/protocol/base/elements/_details.scss b/assets/sass/protocol/base/elements/_details.scss index 07769bc0..b63b158f 100644 --- a/assets/sass/protocol/base/elements/_details.scss +++ b/assets/sass/protocol/base/elements/_details.scss @@ -30,6 +30,10 @@ details .is-summary button[aria-expanded='true']::before, @include summary-open; } +summary { + cursor: pointer; +} + summary::-webkit-details-marker { display: none; }