-
-
Notifications
You must be signed in to change notification settings - Fork 75
various fixes #289
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
various fixes #289
Conversation
.repeating-conic { | ||
background: repeating-conic-gradient( | ||
from 3deg, | ||
hsl(200, 100%, 50%) 0deg,hsl(200, 100%, 50%) 15deg, | ||
hsl(200, 100%, 60%) 10deg, hsl(200, 100%, 60%) 30deg | ||
); | ||
background: repeating-conic-gradient( | ||
from 3deg, | ||
hsl(200, 100%, 50%) 0deg 15deg, | ||
hsl(200, 100%, 60%) 10deg 30deg | ||
); | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The value in postcss-value-parser
for hsl(200, 100%, 60%)
is hsl
.
So any double position gradients with CSS functions were broken :/
.repeating-conic {
background: repeating-conic-gradient(
from 3deg,
hsl(200, 100%, 50%) 0deg,hsl 15deg,
hsl(200, 100%, 60%) 10deg, hsl 30deg
);
}
while (a.nodes[ia] && a.nodes[ia].type === 'space') { | ||
ia++; | ||
} | ||
|
||
while (b.nodes[ib] && b.nodes[ib].type === 'space') { | ||
ib++; | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
space
nodes are now ignored when matching.
Makes it easier to match cases with irregular spacings : rgba(255,0, 255 , 1)
"postcss": "^8.3" | ||
}, | ||
"devDependencies": { | ||
"dependencies": { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Temporary laps in focus on my end?
LGTM! Thanks! |
double-position-gradients
transforms broke with CSS functions.package.json
error ingradients-interpolation-method
color-mix
inprogressive-custom-properties