Can :not(:hover)
be refactored in the following CSS, to avoid the repetition?
a.label {
&[href*="/abc"]:not(:hover),
&[href*="/def"]:not(:hover),
/* ... */
&[href*="/xyz"]:not(:hover) {
color: #f50;
}
}
Can :not(:hover)
be refactored in the following CSS, to avoid the repetition?
a.label {
&[href*="/abc"]:not(:hover),
&[href*="/def"]:not(:hover),
/* ... */
&[href*="/xyz"]:not(:hover) {
color: #f50;
}
}