Ci-dessous, les différences entre deux révisions de la page.
| Les deux révisions précédentesRévision précédenteProchaine révision | Révision précédente | ||
| devweb:less [21-09-2013 20:34] – edmc73 | devweb:less [08-02-2015 21:29] (Version actuelle) – [Méthode la plus simple] edmc73 | ||
|---|---|---|---|
| Ligne 4: | Ligne 4: | ||
| ===== Installation ===== | ===== Installation ===== | ||
| + | |||
| + | ==== Méthode la plus simple ==== | ||
| + | |||
| + | apt-get install node-less | ||
| + | |||
| + | |||
| + | ==== Méthode plus longue... ==== | ||
| # être root | # être root | ||
| Ligne 28: | Ligne 35: | ||
| make install | make install | ||
| - | #Installer less | + | |
| + | Installer less | ||
| npm install -g less | npm install -g less | ||
| | | ||
| Ligne 47: | Ligne 56: | ||
| $ lessc styles.less > styles.css | $ lessc styles.less > styles.css | ||
| + | | ||
| + | Pour minifier le code, il faut installer YUI Compressor | ||
| + | |||
| + | $ aptitude install yui-compressor | ||
| + | | ||
| To output minified CSS, simply pass the **-x** option. If you would like more involved minification, | To output minified CSS, simply pass the **-x** option. If you would like more involved minification, | ||
| To see all the command line options run lessc without parameters. | To see all the command line options run lessc without parameters. | ||
| + | |||
| + | Un petit script pour automatiser tout ça | ||
| + | |||
| + | <code bash> | ||
| + | #!/bin/bash | ||
| + | cd `dirname $0` | ||
| + | lessc --yui-compress public/ | ||
| + | </ | ||
| + | ===== Mixins library ===== | ||
| + | |||
| + | http:// | ||
| + | |||
| + | To use:\\ | ||
| + | Download the " | ||
| + | Place it in the same folder with your other LESS files.\\ | ||
| + | Reference it at the top of your LESS stylesheets with:\\ | ||
| + | |||
| + | @import " | ||
| + | |||
| + | |||
| + | |||
| + | https:// | ||