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

Say you for example have these variables defined: ````LESS @color1: #0d0d0d;` @color2: lighten(@color1, 15%); @color3: @color2; ```` Is it possible to, after having called `$less->cachedCompile` (or one of the other...

``` Mixin allows for any placeholder css rules. .placeholder(@rules) { &::-webkit-input-placeholder { @rules(); } &:-moz-placeholder { @rules(); } &::-moz-placeholder { @rules(); } &:-ms-input-placeholder { @rules(); } } Example usage: .placeholder({...

Hello, I have this problem using lessphp with composer. This is my composer.json: ``` { "name": "ximware/xim_sbadmin2", "description": "Template for Joomla based on the SB Admin 2 Theme created and...

Hi there we just upgraded to the latest version and are getting lots of issues... seems like there are some new checks that happen for color variables... ie expected color...

Node.js lessc resolves the relative paths without checking for symlinks, in PHP (or any *nix based system) resolves the symlinks as it resolves the relative paths. For example: ``` /code/less...

Hi, I would like to make own mixin wtih mediaqueries like this. ``` .breakpoint(@maxWidth) { @media screen and (max-width: @maxWidth) { @content; } } ``` But it doesn't work. Support...

If you write `css-option+: css-value;` the `css-value` should merge together with previously defined css-values, that are also marked with `+`. Using this feature causes a **parse error**, which breaks the...

http://lesscss.org/features/#variables-feature-properties ``` .vendor(@property, @value) { -webkit-@{property}:@value; -khtml-@{property}:@value; -moz-@{property}:@value; -ms-@{property}:@value; -o-@{property}:@value; @{property}:@value; } .bla { .vendor(border-radius, 5px); } ```

I have the following error, with Flat-UI Kit by designmodo (download here: https://github.com/designmodo/Flat-UI/archive/master.zip ): ( ! ) Fatal error: Maximum function nesting level of '250' reached, aborting! in /website/lessc.inc.php on...

Hi, in v0.4.0 the round-function [lib_round($arg)] has no precision management included. Two arguments [ex. round(33.33333, 2)] creating an error. Documentation says that is possible. Source: ``` protected function lib_round($arg) {...