Marcel Jackwerth
|
44ec3a151c
|
use diff in less-test.js to display more info on test failures
|
2012-08-05 11:44:10 +01:00 |
|
Marcel Jackwerth
|
c20cc598c5
|
added diff-dependency for easier test-debugging
|
2012-08-05 11:44:09 +01:00 |
|
skoni
|
be675c6566
|
Move error formatting to a seperate function
|
2012-08-05 11:26:12 +01:00 |
|
ben hockey
|
883e561b53
|
added test for selector string interpolation
|
2012-08-05 10:37:27 +01:00 |
|
Robert Law
|
fc55458915
|
Adjusting the line feeds if they're windows based (\r\n) to \n.
|
2012-08-04 21:33:46 +01:00 |
|
Luke Page
|
63821cdbe6
|
Fix all the parent combinator issues
|
2012-07-30 21:41:34 +01:00 |
|
Paul Mohr
|
f4518cc997
|
Added -khtml support for @keyframes
|
2012-07-29 17:00:17 +01:00 |
|
Luke Page
|
ec6569b0f0
|
Fix missing test css from #342
|
2012-07-29 16:53:52 +01:00 |
|
Evan Torrie
|
8284ce5fe0
|
Added CSS3 specific relative length units
See http://dev.w3.org/csswg/css3-values/#relative-length-units
|
2012-07-29 16:47:12 +01:00 |
|
Denys Mishunov
|
372569f726
|
If weight is not passed to mix() assume it's 50
|
2012-07-29 16:36:33 +01:00 |
|
Luke Page
|
70870dd9dd
|
Fix unit test for import-once so that tests pass. Previous test commit had bad assumptions
|
2012-07-29 16:26:55 +01:00 |
|
Luke Page
|
37dcad5b89
|
Add unit tests for transparent to make it clear what went wrong last time. fixes #806
|
2012-07-29 14:57:44 +01:00 |
|
Luke Page
|
e98a20a50d
|
allow windows and unix path seperators in rhino. Fixes #828
|
2012-07-29 14:03:32 +01:00 |
|
Luke Page
|
be5464d2a6
|
make rhino arguments match lessc
|
2012-07-29 11:47:17 +01:00 |
|
Luke Page
|
acace43415
|
merge compression argument support
|
2012-07-29 11:37:13 +01:00 |
|
Luke Page
|
1199ce41b0
|
Make rhino error support better
|
2012-07-28 23:16:10 +01:00 |
|
Simon Dittlmann
|
e0ebaeeb55
|
Fixed rhino's loadStyleSheet callback invocation (first parameter is the error object and not root)
|
2012-07-28 19:19:41 +01:00 |
|
Simon Dittlmann
|
29589bfa67
|
Added colors.js to rhino target in Makefile
|
2012-07-28 19:19:11 +01:00 |
|
Luke Page
|
d2d7042c9e
|
Support testing with node on windows
|
2012-07-28 18:30:54 +01:00 |
|
Andrew Stone
|
0d61ea6449
|
media test now passes
|
2012-07-28 18:14:49 +01:00 |
|
Andrew Stone
|
221e850b89
|
add support for ratios in media queries
|
2012-07-28 18:14:48 +01:00 |
|
Marcus Bointon
|
65e4806406
|
Merge pull request #879 from dmcass/attribute-selector
Allow numbers and underscores in attribute selectors
|
2012-07-27 02:18:22 -07:00 |
|
Dustin Cass
|
cb8856fe6f
|
Adjust all regexes in parser.js to use similar style for character classes
|
2012-07-26 16:28:10 -07:00 |
|
Dustin Cass
|
4821735ba2
|
Adjust attribute selector regex to allow for numbers and underscores in attribute names (fixes #863, fixes #876).
|
2012-07-26 15:47:53 -07:00 |
|
Sasha Sklar
|
5974b9e15a
|
Merge pull request #857 from clmsnskr/master
Revert adding "transparent" as a color name
|
2012-07-05 18:54:14 -07:00 |
|
Chris Coker
|
b004c19657
|
remove transparent from colors.js
|
2012-06-29 13:35:38 -04:00 |
|
Sasha Sklar
|
b235734a11
|
Merge pull request #753 from clarkni5/master
Adding "dpi" as a valid dimensions for media queries
|
2012-05-15 07:44:37 -07:00 |
|
Sasha Sklar
|
8774a436f6
|
Merge pull request #800 from SpadarShut/master
Added 'transparent' as a named color
|
2012-05-15 07:43:48 -07:00 |
|
Sasha Sklar
|
fcc50ac8e8
|
Merge pull request #804 from jreading/664a8d713ce130efa1120f31d2bd18db13ed33c3
Fix for unnamed parameters test fail & failing test for import-once
|
2012-05-14 14:18:06 -07:00 |
|
Sasha Sklar
|
744ec15477
|
Merge pull request #796 from comfuture/lessjs
fixed issue #795
|
2012-05-14 14:17:37 -07:00 |
|
John Reading
|
664a8d713c
|
failing test for 8891564917
|
2012-05-11 13:53:51 -04:00 |
|
John Reading
|
b144fc59eb
|
fix for unamed parameter
|
2012-05-11 13:24:30 -04:00 |
|
comfuture
|
94f70f7121
|
fixed issue #795
|
2012-05-06 11:13:30 +09:00 |
|
Pavel Shut
|
f42de9bacd
|
Added transparent: rgba(0,0,0,0) as a named color
|
2012-05-04 17:03:24 +03:00 |
|
Alexis Sellier
|
a2df119732
|
Merge pull request #268 from jamesfoster/master
Implemented named arguments
|
2012-04-30 02:56:41 -07:00 |
|
James Foster
|
1bb3dc1f26
|
Fix trailing space when parent selector is the last part of the selector.
'''
.foo {
.bar & {
&:hover {
color: orange;
}
}
}
'''
now outputs
'''
.bar .foo:hover {
color: orange;
}
'''
|
2012-04-30 03:30:14 +01:00 |
|
James Foster
|
1857b7c5aa
|
Implement named parameters
|
2012-04-30 03:30:02 +01:00 |
|
Nicholas Clark
|
6333fddaa2
|
Adding "dpi" to the list of valid dimensions.
|
2012-04-05 16:59:33 -04:00 |
|
cloudhead
|
cb78933423
|
remove duplicate rules automatically
|
2012-03-27 16:59:49 +02:00 |
|
cloudhead
|
8891564917
|
import-once functionality
|
2012-03-21 18:03:04 +01:00 |
|
Alexis Sellier
|
54e1a6ba29
|
CHANGELOG
v1.3.0
|
2012-03-10 20:36:27 +01:00 |
|
Alexis Sellier
|
3fb212d9c3
|
(dist) 1.3
|
2012-03-10 20:29:10 +01:00 |
|
Alexis Sellier
|
67ed7dfcb3
|
variable selectors must be paranthesized
|
2012-03-10 20:25:10 +01:00 |
|
Alexis Sellier
|
98d513a969
|
(test) fix benchmark
|
2012-03-04 22:35:02 +01:00 |
|
Alexis Sellier
|
d955198c85
|
Merge branch 'master' of github.com:cloudhead/less.js
|
2012-03-04 22:15:37 +01:00 |
|
Alexis Sellier
|
93b23d2c24
|
support strings as selectors
example:
@n: 1;
~".span@{n}" { ... }
|
2012-03-04 22:13:04 +01:00 |
|
Alexis Sellier
|
8fde644ce7
|
Merge pull request #673 from andrewjstone/master
mocha found a couple global variable leaks. Here's the fix.
|
2012-03-04 10:19:32 -08:00 |
|
Andrew Stone
|
6e57f91fd0
|
fix global variable leaks
|
2012-03-01 12:39:01 -05:00 |
|
Alexis Sellier
|
3e5a336f88
|
add ability to bind varargs
|
2012-02-28 19:23:39 +01:00 |
|
Alexis Sellier
|
99c3cb4c2e
|
(test) test for semi-variadic mixin
|
2012-02-28 18:06:38 +01:00 |
|