Warning, /webapps/ocs-webserver/library/lessphp/tests/inputs/mixin_functions.less is written in an unsupported language. File is not indexed.

0001 
0002 @outer: 10px;
0003 @class(@var:22px, @car: 400px + @outer) {
0004   margin: @var;
0005   height: @car;
0006 }
0007 
0008 @group { 
0009   @f(@color) {
0010     color: @color;
0011   }
0012   .cool {
0013     border-bottom: 1px solid green;
0014   }
0015 }
0016 
0017 .class(@width:200px) {
0018   padding: @width;
0019 }
0020 
0021 body {
0022   .class(2.0em);
0023   @group > @f(red);
0024   @class(10px, 10px + 2);
0025   @group > .cool;
0026 }
0027 
0028 
0029 @lots(@a: 10px, @b: 20px, @c: 30px, @d: 40px, @e: 4px, @f:3px, @g:2px, @h: 1px) {
0030         padding: @a @b @c @d;
0031         margin: @e @f @g @h;
0032 }
0033