JqueryUI Theme with SASS

Has anyone used the jQueryUI theme in Sass? The search returned several projects on Github, but did anyone use them? Is it possible to easily change colors if only the basic theme is available (if the movie theme cannot be used).
Or what do you propose the theme of the basic theme?

+4
source share
3 answers

Just grab your favorite jQuery UI theme and use $ sass-convert to make it Sass or Scss

Sass-convert utility article : article

+5
source

Your best baseline is to do $ sass-convert in the jQuery UI Twitter Bootstrap theme - it uses LESS, so sass-convert will translate variables, nesting, etc. You can find the LESS versions here in addyosmani / jquery-ui-bootstrap

+1
source

This project has SASS converted jQuery-UI files with various style / theme options specified by SASS variables. Files are located in the app / assets / stylesheets folder. The project also has partial elements that define variables so that they match the default schemes in the themeroller. I just copied the entire styles folder into my project, and I import the files that I want to use into my main SASS sheet.

+1
source

All Articles