Less is an open-source stylesheet preprocessor that extends CSS with dynamic behavior such as variables, mixins, operations and functions.
0
votes
1answer
15 views
LESS: how to optimize code writing with multiple selectors
I'm using LESS CSS and I have the following situation. Can you suggest me if there is a way to further optimize LESS code?
As you can see, there are many objects sharing properties between them but ...
-1
votes
2answers
20 views
LESS CSS Programming
I am using an "OPEN SUSE-LINUX". There is no compiler available for less css in linux. For ex. "simple-less compiler" is not working in linux as it has .exe file.
So there is some difficulty which i ...
0
votes
0answers
11 views
command line lessc reports random syntax errors
We are experiencing a bizarre random behavior of the LESS compiler at the Windows Command Line. We are getting inconsistent syntax error messages like we were missing variables or mixins declarations. ...
1
vote
1answer
10 views
Using less-middleware to compile multiple source CSS files into one?
In my Node.js application, I am using less-middleware to compile the LESS files into CSS files. Works great with single files:
app.use(require('less-middleware')({ src: path.join(__dirname, '../', ...
1
vote
1answer
32 views
Combining / Merging CSS selectors
A basic CSS example. Every browser I have come across will render the item with the margin & padding and a red border
.test{
margin: 4px;
border: 1px solid black;
padding: 4px;
}
...
0
votes
1answer
24 views
Is appending class names within a class with LESS bad practices?
Take a look at this LESS Code:
#navbar {
color: #fff;
&Logo {
color: #000;
&:hover { color: #000; }
}
}
...which outputs:
#navbar {
color: #fff;
}
...
-1
votes
0answers
9 views
Visual Studio 2012 Referencing Less Files with Bundles
I'm using Visual Studio 2012 with Less Files Support, and I need to know How I do to reference Less files in my bundle configuration!
When I write an less file in my solution explorer and it generate ...
0
votes
0answers
60 views
target only immediate children, not nested children
I was wondering if this is possible.
I have a <div/> in which all child elements need to be spaced 10 pixels in between.
However, I don't want to define the types of children: they all need to ...
0
votes
0answers
21 views
Using the twitter bootstrap 3 basic navbar semantically
I want to know if there is a way to include the twitter bootstrap 3 basic navbar semantically using less and your own classes instead of using the prebuilt classes like this:
<div ...
0
votes
1answer
29 views
Get height of DOM element in LESS/CSS
I have a list of elements which I want to delete with an onclick. It give the element an extra css class which hides the element. The class in css says that the element will dissapear using an ...
0
votes
1answer
31 views
Extending Twitter's Bootstrap 2.x default grid (span classes) with less mixins
So I think I'm just starting to understand less and bootstrap. I am building a responsive theme and one of the issues I have is I have a span with a 1px border, this 1px border naturally increases the ...
0
votes
1answer
29 views
How to use parameters in Twitter Bootstrap loaded dynamically from the database
I have a website where I need multiple themes.
So www.mysite.com/Client1/ uses red buttons and www.mysite.com/Client2/ uses blue buttons.
The number of clients are dynamic stores in a DB, and the ...
1
vote
2answers
65 views
How to change parent style by child :hover action in LESS
I have this LESS setup:
.wrapper {
.parent {
height: 100px;
.children {
//some style;
&:hover {
.parent & {
height: ...
1
vote
1answer
31 views
CSS page-break properties
I am trying to use CSS page-break properties to avoid a page break after the title span. The html is as follows:
<div class="cnx-eoc free-response">
<div class="title">
...
-1
votes
1answer
17 views
Bootstrap - padding in span makes it bigger
<div class="row">
<div id="cover" class="span12"></div>
</div>
<div class="row">
<div id="first_left" class="span6 left">
...
0
votes
1answer
11 views
How to set up a local LESS environment
How would you set up a local environment that would allow you to see LESS in-browser, locally? So far, I can only get it to work from a remote server, and it's totally aggravating. I've downloaded ...
0
votes
3answers
18 views
LESS stylesheet not registering
Is there a trick to LESS? I can't get any of it to function in-browser. Maybe I'm declaring the stylesheet in the browser wrong? It's literally just not showing up at all. I've included the min and ...
0
votes
1answer
30 views
Using node.js/lessc command inside python (celery)?
I am not sure if it is good idea. I am not even sure if I can do this. But here is my requirement.
I have one default less css file and other dynamic less file generated from datasets. Now, I want ...
0
votes
2answers
16 views
PHP pass variable to LESS CSS or identify current environment in LESS
In my LESS CSS file I define a base-url:
@base-url: 'http://cdn.domain.com';
I now have the need to dynamically switch the base url depending on what environment I am on. Ex:
DEV: ...
0
votes
0answers
32 views
Including assets_version in CSS image paths (Symfony2)
Am using the Symfony2 assets_version feature to append a unique version to all images, JS, CSS etc including using the asset() function.
This works fine when assets are included individually (e.g. a ...
0
votes
0answers
46 views
Grunt-contrib-watch error when compiling less files
Not sure why I keep getting these errors when running this watch task.
GRUNT WATCH TASK
# Watch task
watch:
options:
nospawn: true
livereload: true
server_coffee:
files: ...
0
votes
2answers
24 views
How to get value in percentage (%) or pixel (px) after doing some maths? | Lesscss
I've a little and simple question regarding Lesscss. How I can get calculated value in percentage or pixel in Lesscss. Like, I have this : ((1 / 1) * 1) = 1. I know the answer is 1, but I want this ...
0
votes
1answer
16 views
Less global variable and mixin usage in media-queries
I've got a problem when using global varibale in a mixin which is used in @media-query.
Point is in different @media-query the variable is rewrited. So I would like the mixin to use updated value but ...
-1
votes
0answers
42 views
Less css crossbrowser border-radius, grandient image generator
Some time ago i used a plugin for sass that create images where i used border-radius.
Are there any preprocessors for less etc. that create images for border-radius, grandient
instead of using ...
0
votes
2answers
41 views
Using LESS to recursively style an inner class of the same name?
I just started working with LESS but haven't been able to find an answer to this anywhere.
Can less support some sort of nesting or recursion for the same class?
My requirement is that I may have a ...
0
votes
1answer
17 views
LESS: having feedback about coding errors
Less2css.org has a very useful function that give feedback in realtime about possible mistakes in writing LESS code.
When I write LESS code in my editor and then go back to browser to test my page, ...
0
votes
0answers
15 views
LESS: how to manage options for global object
I'm a LESS newby and I did not understand meaning of possible configuration suggested in official documentation. I reported here the unique block of code with a very short description:
<script ...
0
votes
0answers
20 views
LESS: watch() mode solve problems with @import?
I have this problem with a LESS project. It's first time that I try this new language... ;-)
I'm using less.js library to parse .less file in real time.
I created many .less files with a main.less ...
0
votes
2answers
31 views
Hover and active states in less
Can you add an active state on the same line as a hover state in [less] or does it have to be nested on line separate lines?
example:
standard less
nav {
color:@black;
display:block;
...
1
vote
0answers
48 views
LESS CSS not working locally
I really want to learn LESS but have had NO luck getting it to work at all. I would like to get it to work locally. Please help.
I just want to do a simple test.
Here is my LESS code:
@color: ...
0
votes
1answer
20 views
3-column layout to 2-column layout with minimum markup changes
In an app I am maintaining, I am implementing less (the styling language) changes for iPad form factors. I've already got media queries set up to handle this, but I have a slight problem with getting ...
0
votes
1answer
42 views
How to convert layout in LESS to SCSS
I've got a layout coded in LESS and I need to implement it into a Rails application. As Rails straight use SCSS, I would like to use this instead of LESS.
Is there any tool that could do the ...
0
votes
0answers
13 views
jq-idealforms Fall back CSS in old bowser especially in IE 7
I'm using jq-idealforms because of its beauty and Validation showcasing, very impressive but in older browser(IE 7 and Quirks mode) design collapsed, i know the plugin will not support for older ...
1
vote
1answer
21 views
LESS: Mixin with a unique argument to manage css3 transitions
Using LESS CSS, I would like to simplify my code using Mixins to put "out" transitions declarations, but the following syntax is wrong. The problem is in the attribute @color-time definition that has ...
-1
votes
0answers
53 views
Bootstrap responsive for 1024x768 resolution [closed]
I don't understand why Bootstrap Responsive doesn't cover the resolutions between 980ps and 1199ps, where 1024x768 is one of the most used resolution!
x < 767px OK
768px < x < ...
1
vote
2answers
90 views
Creating a transparent arrow above image in CSS3
I'm trying to create an effect where I have a transparent arrow above any image in CSS3. See the following image.
Any ideas how to do this effect? Using LESS if that comes to any help.
1
vote
2answers
21 views
Why populr.me theme dummy content not coming?
I am trying to build a theme using populr.me. I downloaded few themes from github. I ran them in localhost. These theme should fetch dummy-contents from lorem ipsum, and also should fetch images. But ...
0
votes
2answers
46 views
Build less @import url dynamically
While working on a google webfont import mixin, I noticed that it is not possible to build @import URLs dynamically.
.gFontImport (@name, @weights, @subsets) {
@url: ...
0
votes
1answer
52 views
Dotless fails silently when parsing Bootstrap 2.3.1 to CSS
Here's my LessTransform class I use to parse .less files into .css files:
public class LessTransform : IBundleTransform
{
public void Process(BundleContext context, BundleResponse response)
{
...
0
votes
0answers
47 views
Condense CSS definitions and HTML DIVs
I'm not sure if what I need is self-explanatory so I'll give it a try.
Please, before proceeding, do note that :
I'm using Twitter Bootstrap
I'm also making extensive use of LESS
So, I'm taking ...
0
votes
1answer
38 views
How can I call a mixin by reference in LESS?
The logical way would be:
.mymixin() {
sample_key: samplevalue;
}
@avar: mymixin;
.@{avar}();
but I get a parse error.
Is there a way to do it?
0
votes
0answers
30 views
Weird error when importing Bootstrap as LESS
OK, so what I'm trying to do is pretty straightforward :
I renamed my pre-customized Bootstrap CSS file to a .less extension (as the documentation seems to suggest)
I'm @importing this less file at ...
1
vote
2answers
45 views
How do you apply diferent colors from diferent css rules to the same object?
With the html code:
<div class="c1">Color 1</div>
<div class="c2">Color 2</div>
<div class="c1 c2">Mix of color 1 and 2</div>
and this css rules:
.c1 {
...
0
votes
2answers
47 views
Modify CSS using Less or other tools?
I have a lengthy CSS file (over 1K lines prepared by 3rd party)
e.g.
p {font-family: Arial;}
I want to have a build process that change all "font-family" under the p tag to
p {font-family: ...
1
vote
1answer
72 views
How to install and run lessc on top of node.js and Windows?
Hi I am learning LESS and I would like to install lessc on my Windows 7.
Following this tutorial http://verekia.com/less-css/dont-read-less-css-tutorial-highly-addictive
The first step is I ...
0
votes
1answer
39 views
PHP cannot find a LESS file on WAMP, but can on server
I'm trying to use lessphp on WAMP for local development. I'm trying to preprocess a particular less file on WAMP that is right next to the PHP file, but PHP throws errors saying it cannot find my ...
0
votes
1answer
31 views
IE Conditionals Causes .LESS error
I having an issue with LESS processing a file that has IE conditionals. For example I have a normal .less file and the last lines in the file are as follows.
<!--[if IE ]>
* .columncontainer ...
-3
votes
0answers
36 views
Can I use LESS to modify website visual look when a website is running? [closed]
I am learning the LESS CSS framework together with Twitter Bootstrap. You can find info about LESS at http://lesscss.org/
I have a hard time understanding why LESS is called dynamic.
I am coming ...
0
votes
0answers
21 views
.less and IIS 6.0 :: No data sent by server
I am using IIS 6.0 on a Windows 2003 machine. I have added the MIME Extension as follows.
Extension = .less
MIME Type: text/css
I have also added the Application extension as follows
Executable: ...
2
votes
1answer
60 views
Web Essentials LESS Compiler gives no Error Messages
With Visual Studio 2012 Update 2, Web Essentials 2.7.
Suppose there is an error in LESS. When saving the file, a message is shown in the preview pane. It reads...
/*
Compile Error.
See error list ...




