Hello,
there is a bug with linear-gradient mixin. When no gradient is defined, invalid css is generated.
For example:
Upload.Bootstrap.scss
// ProgressBar
.ruFileProgressWrap {
background-color
: $progress-bg;
background-image
: linear-gradient($progress-gradient);
border-radius:
2px
;
}
results in
.RadUpload_Bootstrap .ruFileLI .ruFileProgressWrap {
background-color
: whitesmoke;
background-image
: linear-gradient();
border-radius:
2px
; }
So background-image value is invalid and should be "none"
.RadUpload_Bootstrap .ruFileLI .ruFileProgressWrap {
background-color
: whitesmoke;
background-image
:
none
;
border-radius:
2px
; }
This is problem in source files, Skin builder generates the same files etc. When this css is passed for some postprocessing in build process (postcss and autoprefixer for example), it fails.
Best Regards
René