This commit is contained in:
Gianluca Sartori 2025-04-10 21:47:28 -07:00 committed by GitHub
commit 6327a7f3e8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 1 deletions

View File

@ -699,7 +699,7 @@ $utilities: map-merge(
// scss-docs-start utils-interaction
"user-select": (
property: user-select,
values: all auto none
values: all auto text none
),
"pointer-events": (
property: pointer-events,

View File

@ -13,6 +13,7 @@ Change the way in which the content is selected when the user interacts with it.
{{< example >}}
<p class="user-select-all">This paragraph will be entirely selected when clicked by the user.</p>
<p class="user-select-auto">This paragraph has default select behavior.</p>
<p class="user-select-text">This paragraph text will be selectable.</p>
<p class="user-select-none">This paragraph will not be selectable when clicked by the user.</p>
{{< /example >}}