You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
clean-css drops the color parameter in a border short-hand when the color is specified using css4 comma-less translucent hsl() – and possibly other color formats such as rgb() / hwb / but I have not tested those.
The border shorthand can be anything of border or border-top, etc. Surprisingly, the logical equivalent (e.g. border-block-start) seems to parse correctly.
clean-css drops the color parameter in a border short-hand when the color is specified using css4 comma-less translucent hsl() – and possibly other color formats such as rgb() / hwb / but I have not tested those.
input:
border-top: 1em solid hsl(0 5% 5% / .5);
actual output:
border-top:1em solid;
expected output:
border-top:1em solid hsl(0 5% 5% / .5);
The border shorthand can be anything of
border
orborder-top
, etc. Surprisingly, the logical equivalent (e.g.border-block-start
) seems to parse correctly.clean-css-cli version: 5.6.2
macOS 13.3.1
The text was updated successfully, but these errors were encountered: