lessphp icon indicating copy to clipboard operation
lessphp copied to clipboard

LESS compiler written in PHP

Results 100 lessphp issues
Sort by recently updated
recently updated
newest added

In 0.3.9 lessphp supported the use of variables in import statements, per this spec: http://lesscss.org/features/#variables-feature-import-statements This same feature appears to be broken in 0.5. Example: @variable: "otherfile"; @import "@{variable}.less"; This...

@media (max-width: 767px) { .select-large, .input-large { font-size: 15px; } input[type="text"], input[type="email"], input[type="date"], input[type="password"], textarea, select { font-size: 16px; } }.icon { font-style: normal; font-weight: normal; line-height: 1; } try...

Hi, i can't seem to be able to pass rulesets to mixins as described in http://lesscss.org/features/#detached-rulesets-feature Is it not implemented, or is it implemented differently? I've tried this with lessphp...

I got undefined function, `.generate-font-size(@n, @i: 1)`, whenever I compile the code below: ``` /** Generate font size of 18n, where n is an integer and 0 < n <...

"parse error: failed at `&:extend(.clearfix all);" in mixins/grid.less on line 11

I'am using less in php project .I find that lessphp is faster than any other less php complier , it is only one file ,that's very nice ,but the 'extend...

I'm trying to compile Bootstrap less files, and the compiler throws this exception: `parse error: failed at `&:extend(.clearfix all);` The LESS code looks like the following: ``` less .container-fixed() {...

look at lessphp/tests/outputs/interpolation.css (10"yeah", #"yeah"), does the selector name are deliberately quoted??? can't find a way to use them in this way

I have a file that imports multiple less files and I've added comments to each of the files. The comments include the name of the file so that developers can...

It seems that the current implementation doesn't support variable override across files. If a variable is set, it's not possible to change it in a parent file. Works: ``` less...