This repository was archived by the owner on Sep 13, 2024. It is now read-only.
Description I believe this has come up before, but I couldn't find a solution so far.
The following Sass:
.test1 {
@include transition (opacity width 1s ease 2s , height 1s ease 2s );
}
.test2 {
@include transition (transform width 1s ease 2s );
}
.test3 {
@include transition (transform width 1s ease 2s , height 1s ease 2s );
}
Produces the following CSS:
.test1 {
-webkit-transition : opacity width 1s ease 2s , height 1s ease 2s ;
-moz-transition : opacity width 1s ease 2s , height 1s ease 2s ;
transition : opacity width 1s ease 2s , height 1s ease 2s ; }
.test2 {
-webkit-transition : -webkit-transform;
-moz-transition : -moz-transform;
transition : transform; }
.test3 {
-webkit-transition : -webkit-transform, height;
-moz-transition : -moz-transform, height;
transition : transform, height; }
I believe you can already see my issue, none of the options except the property names get through when there is a "transform" present.
I'm using libSass on Windows 10 if it matters.
Thanks in advance!
Reactions are currently unavailable
I believe this has come up before, but I couldn't find a solution so far.
The following Sass:
Produces the following CSS:
I believe you can already see my issue, none of the options except the property names get through when there is a "transform" present.
I'm using libSass on Windows 10 if it matters.
Thanks in advance!