Skip to content

Commit 7972109

Browse files
authored
Fix user-select issue
`auto` is better than `all`, because all makes the element selectable on one click, while auto causes the default behavior. See https://css-tricks.com/almanac/properties/u/user-select/
1 parent 79e347c commit 7972109

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/css/components/_stacks-buttons.less

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -540,7 +540,7 @@
540540
background: none;
541541
box-shadow: none;
542542
cursor: default;
543-
user-select: all;
543+
user-select: auto;
544544
}
545545

546546
.s-btn__unset:focus {

0 commit comments

Comments
 (0)