/var/softaculous/less
NameSizeModeActions
images/-0755rm
php53/-0755rm
php56/-0755rm
php71/-0755rm
php81/-0755rm
php82/-0755rm
changelog.txt24220644editdlrm
fileindex.php170644editdlrm
info.xml22650644editdlrm
install.js9240644editdlrm
install.php40590644editdlrm
install.xml1990644editdlrm
md535710644editdlrm
notes.txt1790644editdlrm
Edit: /var/softaculous/less/info.xml (2265B)
{{overview}} {{features}} http://www.softaculous.com/demos/LESS http://www.softaculous.com/apps/js/libraries/LESS 158912 http://lesscss.org/ 4.9.0 49 13-08-2026 4.1.7 LESS is a dynamic stylesheet language.

LESS extends CSS with dynamic behavior such as variables, mixins, operations and functions. LESS runs on both the client-side (Chrome, Safari, Firefox) and server-side, with Node.js and Rhino.

LESS is licensed under the Apache License v2.0.
  • Variables : Variables allow you to specify widely used values in a single place, and then re-use them throughout the style sheet, making global changes as easy as changing one line of code.
  • Mixins : Mixins allow you to embed all the properties of a class into another class by simply including the class name as one of its properties. It's just like variables, but for whole classes. Mixins can also behave like functions, and take arguments.
  • Nested Rules : Rather than constructing long selector names to specify inheritance, in Less you can simply nest selectors inside other selectors. This makes inheritance clear and style sheets shorter.
  • Functions & Operations : Are some elements in your style sheet proportional to other elements? Operations let you add, subtract, divide and multiply property values and colors, giving you the power to create complex relationships between properties. Operations should only be performed within parentheses in order to ensure compatibility with CSS. Functions map one-to-one with JavaScript code, allowing you to manipulate values however you want.