less4j
less4j copied to clipboard
Less language is an extension of css and less4j compiles it into regular css. Less adds several dynamic features into css: variables, expressions, nested rules, and so on. Less was designed to be comp...
hi Not available LICENSE file in source directory structure Please. Added license and copyright notice. the fedora pakaging guideline is very strictly precise about this problem https://fedoraproject.org/wiki/Packaging:LicensingGuidelines?rd=Packaging/LicensingGuidelines#License_Text Thanks in advance...
The following line causes an error with less4j, where lessc does not have a problem with it. When I change the parameter name from @media to @mediaX the error is...
lessc does not consider the following an error, where less4j does: com.github.sommeri.less4j.Less4jException: Could not compile less. 1 error(s) occurred: ERROR my.less 3512:2 missing EOF at ';' in stylesheet (which started...
Hello. We use LESS4j for a year and we are happy with it. Thanks for the great work. I just have noticed an inconsistency: ``` @web-font-path: "https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700"; .web-font(@path) { @import...
Less.js 2.7.0. allows semi-colon in functions. https://github.com/less/less.js/issues/ 1505
Is it possible to avoid cloning a lot of AST in the CustomFunctions.evaluate. It appears that even for simple functions that don't use most of the arguments a lot of...
hi i get: ``` [INFO] [INFO] ------------------------------------------------------------------------ [INFO] Building less4j 1.17.2 [INFO] ------------------------------------------------------------------------ [INFO] [INFO] --- antlr3-maven-plugin:3.5.2:antlr (run antlr) @ less4j --- [INFO] ANTLR: Processing source directory ~/rpmbuild/BUILD/less4j-less4j-1.17.2/src/main/antlr3 ANTLR Parser...
Logo
It should be similar to less.js one. This is closest I came up with so far: ``` svg { less4j } ```
https://github.com/less/less.js/issues/1359
Different behaviour in LESS and LESS4J, see following example: **CODE** ``` .test { .test-base(arg1; arg2; arg3); } .test-base(...) { .test-1(@arguments); .test-2(@arguments); .test-3(@arguments); .test-4(@arguments); } // Extract from @arguments passed in...