ExCSS icon indicating copy to clipboard operation
ExCSS copied to clipboard

ExCSS 4.3.0 does not properly parse transition CSS

Open lilysmith1206 opened this issue 11 months ago • 1 comments

Hello,

I have the following CSS:

* {
    transition-property: background-color, color, border-color;
    transition-duration: 0.5s;
    transition-timing-function: ease;
}

The transition-duration and transition-timing-function work fine, but the transition-property declaration is not parsed by ExCSS' StylesheetParser.Parse method.

lilysmith1206 avatar Feb 16 '25 20:02 lilysmith1206