webermaximilian92 commented on issue #3301: Add scss to css compiler URL: https://github.com/apache/cloudstack/pull/3301#issuecomment-487510844 Hey Rafael, - sass and 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 not the common standard for such complex pages like cloudstack anymore. - We can make the css code more modular and maintainable with sass/scss, by splitting files. - We could also split css files, but this is not best prectice, since many css files will result in many server requests, and with sass it's possible to compile many files into one css file in just under a second after scss change. - Later we could minify the final css file automatically, this will enhance loading times of 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
