more CSS-Selector syntax `token` can be Double-clicking selects
If can would be more cool/convenient, of course, this is not a big problem.
Let
support more CSS-Selector syntax token ?
/* For example: Pseudo-classes/element etc. */
:is(a,b) a:hover::after:not(#xxx) {color:blue}
a:after {/*single colon*/}
p::selection {background:#da09}
div:nth-of-type(3) {}
body::-webkit-scrollbar {}
#abc:not(:hover):not(:focus-within) {opacity:.4}
-
for Pseudo-classes/element
tokenshould be included in the:or::colon part.:link:visited:active:any-link:focus:focus-within.... etc. when Double-clicking:hover/:after/::selection/:::-webkit-scrollbar/ can select:hover/::after/:after/::selection/::-webkit-scrollbarrespectively. -
css-selector
tokenshould be included( )When Double-clicking:nth-of-typecan select:nth-of-type(3) -
When Double-clicking
:notcan select:not(#xxx)/:not(:hover)/:not(:focus-within)
:not(:nth-last-child(2)) double-clicking :nth-last-child can select :nth-last-child(2) , double-clicking :not can select :not(:nth-last-child(2))
- When Double-clicking
:iscan select:is(a,b)(Chromium will supportis()selector by default soon)