- From: Patrick Reader via GitHub <sysbot+gh@w3.org>
- Date: Sat, 10 Apr 2021 09:40:51 +0000
- To: public-css-archive@w3.org
pxeger has just created a new issue for https://github.com/w3c/csswg-drafts:
== [css-lists] The `cursor` property should apply to `::marker`s ==
[The spec for the properties which apply to `::marker`s](https://www.w3.org/TR/css-lists-3/#marker-properties) does not include the `cursor` property. I'd like to be able to apply this to the `::marker` of a `summary` element in particular, to give user feedback that clicking on it will do something (that is, open/close the `details`).
You can add `cursor` to the whole `summary`, but that also applies it to the actual content of the summary, and the blank space after the content, with no easy way to remove it there. [Demo](https://codepen.io/pxeger_/pen/qBRpVJv):
```html
<style>
summary {
cursor: pointer;
}
</style>
<details>
<summary>Label</summary>
Content
</details>
```
Please view or discuss this issue at https://github.com/w3c/csswg-drafts/issues/6203 using your GitHub account
--
Sent via github-notify-ml as configured in https://github.com/w3c/github-notify-ml-config
Received on Saturday, 10 April 2021 09:40:54 UTC