VBC-915: user-select-none-slop
warningCategory: ux-dx
Analysis: Regex (line by line)
File types: .css
Scope: source code only, ignoring anything inside strings and comments
Tags: ux accessibility
What it reports
user-select: none detected at line {line}. Preventing users from copying text is usually a dark pattern.
Flagged
css
body { user-select: none; }Not flagged
css
body { user-select: text; }Pattern
regex
user-select:\s*none