This thread looks to be a little on the old side and therefore may no longer be relevant. Please see if there is a newer thread on the subject and ensure you're using the most recent build of any software if your question regards a particular product.
This thread has been locked and is no longer accepting new posts, if you have a question regarding this topic please email us at support@mindscape.co.nz
|
I'm using the kendo theme builder with WW, and they have a @require statement at the bottom to link in their less template Is that something not supported?...or...just no syntax highlighting? |
|
|
It's not part of Less. Looking at the Telerik fork of Less, it looks like something they've added (https://github.com/telerik/less.js/commit/c23ec4d2532a463dd028dc5d162e4e132e2af2d9) but hasn't been folded back into the official version of the language. |
|
|
I managed to get Crunch (crunchapp.net) to compile my kendoui template by replacing the @require line with this.. .box-shadow (@x: 0, @y: 0, @blur: 0, @opacity: 0) { box-shadow: @arguments; -moz-box-shadow: @arguments; -webkit-box-shadow: @arguments; } .border-radius(@a: 0) { border-radius: @arguments; } @import "template.less"; |
|
|
dotnetless also works after making the change above. |
|