webermaximilian92 edited a comment on issue #3301: Add scss to css compiler URL: https://github.com/apache/cloudstack/pull/3301#issuecomment-487510844 Hey @rafaelweingartner , - SASS or SCSS are preprocessors of css. Similar to ES6 or TypeScript for JavaScript. - SCSS provides us many logical functions and advantages to organise CSS rules more easily - Using CSS is no longer the common standard for complex pages like cloudstack - We can make the CSS code more modular and maintainable with SCSS, by splitting rules in many files well organised files. - We could also split CSS files, but this is not best practice, since many CSS files will result in many server requests and with SCSS it's possible to compile many files into one single CSS file (full automatically in just under a second after any SCSS changes) - This compiled CSS file could also get minified, which will enhance loading times of cloudstack pages.
---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services
