Skip to content

Fix: Expandos no longer show pointer cursor on whole element #264

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 27, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions assets/css/v2/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -1043,9 +1043,6 @@ details summary {

details summary:hover {
text-decoration-color: oklch(var(--color-brand) / 0.8);
}

details:hover {
cursor: pointer;
}

Expand Down
25 changes: 23 additions & 2 deletions exampleSite/content/test-product/everything.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,30 @@ This won't render anything.


## details
<details>
<summary>Learn how to pin NGINX Plus to a specific version, closed by default</summary>

And this is the content on how to do so.
</details>

<details open>
<summary>Learn how to pin NGINX Plus to a specific version</summary>
And this is the content on how to do so.
<summary>example dynamic-agent.conf</summary>

{{<note>}}
Default location in Linux environments: `/var/lib/nginx-agent/agent-dynamic.conf`

Default location in FreeBSD environments: `/var/db/nginx-agent/agent-dynamic.conf`
{{</note>}}

```yaml
# Dynamic configuration file for NGINX Agent.

instance_group: my-instance-group
tags:
- dev
- qa
```

</details>

## [Heading with link](https://nginx.org/)
Expand Down
Loading