Tagged Questions
CSS preprocessor, extends CSS with dynamic behavior such as variables, mixins, operations and functions.
30
votes
8answers
10k views
What CSS compiler do you use (SASS, Less, HSS, etc)?
I've been looking to make my web development a little more DRY. SASS+HAML seem to have a degree of popularity within the Ruby/Rails community, but, do those outside of that community generally use ...
27
votes
2answers
6k views
LESS or SASS (SCSS) when doing non-ruby projects?
I'm working on a Python-based project. I want to use some CSS preprocessor language which is based on CSS like LESS or Sass (SCSS), but which one should I use when doing a non-Ruby project?
Sass seem ...
19
votes
4answers
1k views
Compass style libraries for LESS css?
SASS has Compass (a community maintained library of sass mixins/methods).
Does LESS have any supporting libraries that can compare to Compass? Listing anything would be helpful!
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 ...
15
votes
3answers
3k views
Better CSS in .NET?
I'm getting slightly jealous of the innovation I'm seeing from the Python and Ruby community around CSS. For example, see:
http://sandbox.pocoo.org/clevercss/
http://lesscss.org/
...
13
votes
3answers
3k views
LESS CSS Support for Eclipse PDT?
does anyone knows a plugin for eclipse which adds LESS CSS support? It doen't need to have any functionality from LESS integrated to eclipse. I only need syntax highlighting and a "add less file" ...
12
votes
7answers
6k views
Node.js + Express.js. How to RENDER less css?
I am unable to render less css in my express workspace.
Here is my current configuration (my css/less files go in 'public/stylo/'):
app.configure(function()
{
app.set('views' , __dirname + ...
11
votes
2answers
2k views
How to make .less files to have .css syntax highlight in Vim?
I've been using LESS and I find it very useful
I would like to have CSS syntax highlight in Vim with all .less files.
Any suggestions?
9
votes
4answers
312 views
LESS.JS Redudancy in CSS, Use of Mixins instead of selector inheritance?
I am using less.js with some regular use of mixins. E.g. I do have a basic class 'gradientBlack' like this.
.gradientBlack {
background: #333333;
background: -moz-linear-gradient(top, #5a5a5a ...
9
votes
3answers
1k views
Is More (Less CSS plugin for Rails) still recommended?
The Less gem has been superseded by less.js, which runs on the server with Node.js. More, the "official" Less plugin for Rails, hasn't been updated since June 14, 2010.
In light of all that, what is ...
9
votes
8answers
1k views
Mobile UI development platform
I have a client that needs a mobile version of their site. I have never done a mobile-specific site.
I am looking for a platform to develop cross browser mobile websites.
I looked around, and ...
9
votes
4answers
2k views
Ruby LESS gem equivalent in Python
The Ruby LESS gem looks awesome - and I am working on a Python/Pylons web project where it would be highly useful. CSS is, as someone we're all familiar with recently wrote about, clunky in some ...
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 ...
8
votes
3answers
982 views
Is there a way of showing LESS CSS code (.less) in Firebug?
I've been using LESS CSS and I find it great. The only drawback is that the code is not shown on firebug's inspector.
IS there a way of dealing with this problem?
8
votes
3answers
2k views
Can I get Visual Studio to provide Intellisense and syntax coloring for Less Css?
I am experimenting with Less Css, and I am using Visual Studio 2010.
It would be nice if the editor provided support for syntax highlighting and Intellisense for Less, for instance coloring and ...
7
votes
4answers
464 views
ANT script to compile all (css) LESS files in a dir and subdirs with RHINO
I want do compile all *.less scripts in a specific folder and it subdirs with less-rhino-1.1.3.js.
There is an example on github for doing this for a specific file, which works perfect. But I want ...
7
votes
1answer
2k views
Notepad++ with .less colour highlight
I want Notepad++ to treat my .less files just as my .css files and thereby get color highlighting. Any tip?
7
votes
4answers
2k views
@media and @font-face support in LessCSS
Hello does anyone know how to do a media query with LessCSS?
@media screen and (max-width: 600px) {
#container{
width: 480px;
}
}
gives me the following error:
! Syntax ...
7
votes
5answers
2k views
Is there a SASS.js? Something like LESS.js?
I used LESS.js before. Its easy to use, something like
<link rel="stylesheet/less" href="main.less" type="text/css">
<script src="less.js" type="text/javascript"></script>
I saw ...
7
votes
3answers
799 views
less.js lazy sheet load
I'm wondering if there is a way to load a single less sheet sometime after a page load. This question has an answer that explains how to reload all the sheets, but for my use-case existing sheets ...
7
votes
2answers
749 views
View Mercurial log/status with less by default
Is there a way to make mercurial use less to show me the logs/diffs/whatever by default? Now mercurial just displays everything when I type 'hg log'. I suppose I can use aliases like 'hg log = less hg ...
6
votes
4answers
2k views
Using Less in a Rails 3.1 App
I've just upgraded my application to the latest release of rails (3.1) and I'm wanting to integrate Twitter's Bootstrap into my application but it uses LESS and not SASS which is what Rails 3.1 uses ...
6
votes
3answers
529 views
Anyway to set a common image path for LESS files?
I am using the LESS styling language.
Consider the following CSS:
.side-bg
{
background:url(../img/layout/side-bg.jpg) top no-repeat;
}
Right now all of my images are in the folder ../img/ ...
6
votes
1answer
188 views
Will LESS Become a Part of CSS [closed]
Many people use Less (CSS with variables, mixins, operations, functions) as part of the development process as it's more maintainable, readable, and expressive.
I looked around but couldn't find much ...
6
votes
2answers
1k views
What’s the difference between 960.gs/Blueprint and LESS?
Ultimately, I like to code my own CSS. I hate it when I have to conform to someone else's naming conventions... especially when they have no real meaning. However, I am attracted to the fact that a ...
6
votes
2answers
2k views
Add syntax highlighting to .less-files in NetBeans
I want to have files with a .less extension use the CSS syntax highlighting in NetBeans, and I don't have any clue how to do this.
I found a rather time consuming way to do this ...
5
votes
4answers
902 views
How to use Less in a rails 3.1 application?
What is the easiest (is there an easy way?) to use Less (in combination with Sass/Scss) in the rails 3.1 assets pipeline?
I want to load a file like foo.css.less like i would do for bar.css.scss
I ...
5
votes
2answers
702 views
Browsers won't read updated CSS
EDIT: My sincere apologies! This wasn't an issue with anything but myself - I had a global.css file with correct stuff in it, but below that I included another file with the old CSS in it, in the ...
5
votes
4answers
745 views
LESS/SASS CSS opposite from minification/optimizations?
i wonder can i say that LESS/SASS CSS "pre-processors(i think they are called?)" is the opposite from optimizations like minification? i wonder if there will be any noticeable performance impact? or ...
5
votes
2answers
2k views
To get colors to Less in Ubuntu's Zsh
How can you get similar highlightings to Zsh's Less than Bash's Less in Ubuntu?
I switched from OS X to Ubuntu. My Less do not work as expected in Zsh.
Manuals in my Less are green and black with or ...
4
votes
2answers
65 views
How to execute “less” with paging from a Java console application?
I need to execute the less command, with paging, from my Java console application. However, the only method I found to execute external commands is Runtime.getRuntime().exec(), which requires me to ...
4
votes
2answers
132 views
Immediate Child selector in LESS
Is there anyway to have LESS apply the immediate child selector ( > ) in its output?
In my style.less, I want to write something like:
.panel {
...
> .control {
...
}
}
and ...
4
votes
3answers
658 views
How to effectively use the Frameless grid?
I'm starting building a website good for mobile devices too. So I'm also starting studying media queries and the various grid frameworks. I've taken a look to all the 'main players' like inuit, the ...
4
votes
3answers
99 views
Is it possible to use CSS nested rules without installing anything on the server?
LESS and SASS allow us to use CSS nested rules; however, they require us to install their components on the web servers.
Is it possible to use similar feature without installing anything on the ...
4
votes
3answers
1k views
How do you change the colour of Twitter's Bootstrap CSS?
I've not used less before today.
I changed the colour in preboot.less to:
// Color Scheme
@baseColor: @orange; // Set a base color
I then complied the less files. It all ...
4
votes
1answer
100 views
How to combine numbers and strings with LESS?
I'm trying to use LESS css to do the following:
width: ((480/1366)*100)+'%';
The problem though is that the output becomes:
width: 35.13909224011713 '%';
How do I make it workable? ie.:
width: ...
4
votes
3answers
325 views
LESS CSS syntax useful for modernizr
Usually I use modernizr to find out the browser abilities. Same time, I use LESS CSS to make my css more readable and maintainable. Common style using LESS nested rules looks like this:
#header {
...
4
votes
5answers
1k views
Can't get less.js to work
I can't get less.js to work and I have no idea why. Heres the HTML i tried:
<!DOCTYPE HTML>
<html lang="en">
<head>
<meta charset="utf-8" />
<!-- CSS ...
4
votes
2answers
816 views
Less CSS performance and implementation
What are the best ways to use LESS for CSS.
Basically should the Devs write a Less File and then have it compile for production
Should I link the LESS code and the javascript file.
Or should I skip ...
4
votes
2answers
498 views
LESS file does not load (404)
I'm using IIS 7.5 and I'm unable to load the less file because it gives a 404 error.
HTML:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
...
4
votes
1answer
2k views
LESScss converting rgba to hex? how to nest color variables into a mixin?
Does LESScss convert all rgba colors to hex values?
I am trying to create a mixin, say, .color, that allows you to pass in a color variable previously defined, and I want it to be in rgba.
this ...
4
votes
2answers
377 views
Less - How to insert an @variable into property (as opposed to the value)
In less.js, I'm able to replace values with variables with no problems.
@gutter: 20px;
margin-left:e(%("-%d"), @gutter);
When trying to replace properties with variables, I get errors. How would I ...
4
votes
5answers
2k views
Is there an online tool to compile LESS?
I'm trying to use LESS in my webpage, but am having trouble compiling it. It's built to work on ruby, which I don't have permission to install on my pc. Is there an online tool for this compilation?
...
4
votes
3answers
1k views
CSS-Redundancy when using LESS and its @import
I really like the idea and the concept of LESS. Yet I stumbled upon a bug, which i reported quite a while ago to the author but did not yet get any feedback. Maybe it's just me who is doing something ...
3
votes
2answers
302 views
twitter bootstrap won't work with less.js
I have broken it down to it simplest form but still cannot find out why this is not working. All files resolve and the imports in bootstrap are loaded yet, the styles aren't loaded.
bootstrap 1.4.0
...
3
votes
2answers
175 views
Running LESS server-side vs. client-side
What are the advantages / disadvantages to running the LESS framework client-side vs. server-side? Does page load time take a hit if you run it client-side?
3
votes
1answer
52 views
replace styles.less with styles.css via git post-recieve
i have a local development web with an index.html which is using:
<!-- LESS -->
<link rel="stylesheet/less" type="text/css" href="css/styles.less" />
<script ...
3
votes
2answers
167 views
Radial gradient mixin in LESS isn't working?
If you are familiar with less, could you help me with this problem?
I am creating a radial gradient mixin for just a quick test case.
However both are not working?
.radialGradient(@posX:center ...
3
votes
5answers
746 views
nodejs mustache/handlebars example project
I've been looking to use mustache or handlebars and nodejs but I have't been successful to finding a sample project online that is working.
I just need a sample skeleton structure which uses ...
3
votes
1answer
89 views
.less css files in .NET and Visual Studio
Is the recommended way of handling .less files to use pre-compiled
static files or use some sort runtime conversion using for example a
HttpHandler? What are the pros and cons of the different ways ...