Tagged Questions

.LESS (dotLess CSS) is a .NET port of the dynamic CSS language LESS.

learn more… | top users | synonyms

17
votes
4answers
4k views

Open a file in Visual Studio's CSS Source Editor

I am using Phil Haack's T4CSS T4 template based on .less One bad thing about Phil's solution is that visual studio opens the .less files as plain text files rather than as css files. (Thus no ...
9
votes
1answer
157 views

Is there a CSS object model or CSS querying api for .net?

Is a library out there that will allow me to write the following kind of code, which parses CSS and returns a queryable object model string input = "p, span { font-family: arial; }"; var cssRules = ...
9
votes
6answers
2k views

Visual studio - precompile - dotless

I wonder if there is a way to precompile *.less files(http://www.dotlesscss.org/) with visual studio. The site gives me a dotless.compiler.exe but I am not sure how to hook this up to visual studio. I ...
4
votes
3answers
835 views

DotLess IntelliSense In Visual Studio 2010

I've recently found out about the DotLess library and I was so excited about it because CSS has been always annoying for me. I thought this library would be very convenient to use. Unfortunately, once ...
4
votes
2answers
579 views

How can I output errors when using .less programmatically?

I've written an ASP.NET MVC action method that receives a .less file name, processes it via Less.Parse(<filename>) and outputs the processed css file. This works fine as long as the .less code ...
3
votes
1answer
469 views

Dotless File Yields 404 Error in IIS

I've been successfully using *.less (ref here) files in my dev Cassini server for a few weeks but when I publish to my local IIS server they yield 404 errors. Attaching my debugger to IIS yields no ...
2
votes
2answers
302 views

Chirpy LESS choking on “filter” css property, other misc errors

I recently installed Chirpy v2.01 for Visual Studio 2010 and am very excited about the features it offers. I'm running into some issues in the LESS domain, however. As a first step, I copied over my ...
2
votes
1answer
140 views

Is dotless the same exact syntax as the less css language?

The .less library calls itself a port of ruby LESS library. Can I take away from that that they both are compilers for the same LESS file format or do they expect subtly different less code? Asked ...
2
votes
2answers
485 views

How to disable .less (dotLess CSS) syntax analysis in ReSharper 6?

ReSharper 6 considers .less files as .CSS, although they aren't. So instead of proper syntax highlighting, it underlines nearly everything with red (syntax error). How can I disable this "feature"? ...
1
vote
2answers
176 views

Unable to get dotLess to work

I am using dotLess. I followed all their instructions (which seems simple enough) it's only 4 steps :) my minimal web.config looks like this: <configuration> <configSections> ...
1
vote
1answer
30 views

dotless dos errorlevel

Can anybody help me? Im trying to use batch file with LESS (dotless.Compiler.exe) and I cannot figure out how this works - I always get 0 for response no matter where there are some errors or not. ...
1
vote
1answer
392 views

DotLess (.less) master.less file for variables and functions

Is there any way to utilize a master.less file to house all of the necessary config parameters for .less? I've got the following variables that I currently have to put at the top of each .less file ...
1
vote
1answer
111 views

dotless API call

Is there a way to call dotless API programmatically and get final CSS? Something like this: string lessCSS = File.ReadAllText(lessCSSfile); string finalCSS = dotless.Core.Less.Parse(lessCSS); ...
1
vote
1answer
159 views

Problems with dotLess Stopping characters and hacks list?

Have any one run into trouble when running dotLess and having hacks on your CSS files? Been working on a project... just installed dotLess after one year of development to ease a little bit the job of ...
0
votes
0answers
64 views

dotless css @import

Can I do something like below in dotless CSS: <link rel="stylesheet" href="myCss.less?importFile=something.less" /> & then in my .less file: @import @importFile;
0
votes
1answer
96 views

Visual studio - dotless.compiler

I need from file ".less" create ".css" file with standart CSS logic before build. I tried drop dotless.compiler.exe at folder and at Pre-Build event call this command ...
0
votes
1answer
16 views

dotlesscss does not show errors

There's something wrong with my css because no styles are being added to my website after compilation. How do I get dotlesscss to show errors? Regular .less shows you a nice message that's very ...
0
votes
1answer
67 views

Security Exception running dotless

I'm getting a Security Exception when I attempt to access a .less file in IIS7. The exception text is: Security Exception The application attempted to perform an operation not allowed by the ...
0
votes
0answers
110 views

How can I apply less stylesheets as a css on the fly?

Recently I started to experiment with LESS, and Im really enthusiastic about it. Its a really nice tool to optimize css. Anyway I installed into my project file as it was written on their website 4 ...
0
votes
1answer
109 views

Is it possible to have several CSS files reuse the same variables with Combres and Dotlesscss?

I've used Combres for a while and really like it. And now I've started to use Dotlesscss filter as well to enable variables and more readable code that can hopefully stay clean and readable... One ...
0
votes
1answer
141 views

dotless: how to process a list of LESS files using dotless.Compiler.exe

I wanted to know how to process a list of LESS files using the exe binaries, for example: ./dotless.Compiler.exe -m *.less Right now I only can do individual files, but can't do wildcard. The ...
0
votes
2answers
102 views

dotlesscss: How to change variables value from importer dotlesscss stylesheet

I would like to use a base stylesheet with the colours defined as dotless variables. Then, depending on the color theme that I use I would like to change this colors. - example of base stylesheet: ...
0
votes
1answer
292 views

dotLess files not always loaded on IIS 7

in my project, I'm using dotLess to define css. Everything works fine, but for some reason, sometimes (usually after project build or server restart, but not always) less files are not loaded (IIS ...
0
votes
3answers
238 views

Intellisense on .LESS files

I'm introducing LESS into an existing ASP.NET web forms application. In order to get intellisense to work, I decided to set up the LessCssHttpHandler to intercept requests for files ending in ...
0
votes
2answers
914 views

Allow anonymous access to a special file in Asp.Net

I started using dotless css in my asp.net site which requires a special httphandler to work. The site uses Forms Authentication. Here's the problem: When I'm logged in the request to ...