I downloaded updates this weekend using the download builder. I'm looking for less/sass files but I don't see any. Did I miss an option? Ditto for DataTables.
The Editor build created with the download builder does not have the SCSS folder. Just DataTables and Editor selected for download. No compression or concatenation selected. And no styling framework selected either.
The root SCSS file seems to be missing in the Editor's SCSS source. I'm trying to build editor.dataTables.css. I created my own build script, but I have two issues:
A lot of the initial css code is missing when compared to the Editor distribution css file. Distribution starts with
div.DTE {
position: relative;
}
and I don't see this rule in the SCSS source
I also get this build error in lightbox.scss
Compilation Error
Error: Invalid CSS after " *top: 50%;": expected "}", was "#position: absolute"
on line 14 of sass/c:\wwwroot\fin-calcs4\scss\Editor\lightbox.scss
It looks like the main entry point SCSS files haven't been included in the download for some reason. Assuming you are using the DataTables styling, this is the file you are missing (editor.dataTables.scss):
Replies
Hi @Karl53 ,
If you want the source files you can go to the github repo,
Cheers,
Colin
Thanks @colin, but GitHub doesn't seem to have the .SCSS files either. And Editor is not on GitHub of course.
Hi,
Sorry, here is the direct link.
For Editor the SCSS files are in
/css/scss
in the download package.Allan (posting as Colin )
Thanks Allan. FYI, the v1.74 JS+CSS build here has the SCSS subfolder.
The Editor build created with the download builder does not have the SCSS folder. Just DataTables and Editor selected for download. No compression or concatenation selected. And no styling framework selected either.
You are correct - the download builder really just focuses on getting constructed files for you do to a quick include rather than the original source.
Allan
The root SCSS file seems to be missing in the Editor's SCSS source. I'm trying to build editor.dataTables.css. I created my own build script, but I have two issues:
and I don't see this rule in the SCSS source
This is my build order:
@import "mixins";
@import "fields";
@import "main";
@import "bubble";
@import "inline";
@import "lightbox";
@import "envelope";
@import "datatable";
@import "upload";
@import "datetime";
@import "processing";
Any assistance would be appreciated. I want to build a single CSS file and then eliminate the features I'm not using.
(The integration of DataTables' scss worked great.)
It looks like the main entry point SCSS files haven't been included in the download for some reason. Assuming you are using the DataTables styling, this is the file you are missing (
editor.dataTables.scss
):Allan
Thank you. That worked perfectly.