Less is an open-source stylesheet preprocessor that extends CSS with dynamic behavior such as variables, mixins, operations and functions.
0
votes
0answers
3 views
Tabs to spaces impossible to achieve
I have a document styles.less which somehow has ended up with sections using tabs as indents and others with spaces.
I've used any number of methods to convert these tabs to spaces and nothing works, ...
0
votes
2answers
22 views
SASS vs LESS - for making WordPress theme which one is better?
Saas and less - two css predecessor,
I am planning to use one of them in my next wordpress theme, Which one should i choose as specially for wordpress theme structure?
With use of Bones theme which ...
0
votes
1answer
14 views
less css not working properly on server
So I recently bought a theme that uses less css, I tested it on my local wamp server and everything worked fine in ie chrome and chrome mobile.
I then proceeded to upload it to my online server and ...
1
vote
1answer
8 views
LESS, compile issues with variables inside CSS urls
I've created a small LESS based mixin for outputting images in either standard or retina format. I can't get my head around wrapping variables inside some of the CSS urls that goes along with this - ...
0
votes
0answers
17 views
{LESS] multiple gradients with vendor prefixes
I want to create a background-image aka. gradient mixin with these features:
unlimited amount (not finished yet, but kinda works)
adapting vendor prefixes (partially works)
I tried lesshat, but ...
0
votes
0answers
11 views
Change LESS variable if media query conditional is met
I wish to change some LESS variables (for maintaining high-res image pathways) if certain media query conditionals are met throughout my stylesheet, but I can't seem to get it to work.
// Default
...
0
votes
1answer
13 views
app.less in not loading variables - boostrap
I am using app.less to build the website but everytime i use variables that is in complied boostrap.css it says:
12:19:57 C:\wamp\www\client\wp-content\themes\roots-master\assets\less\app.less
...
0
votes
1answer
14 views
LESS variable value to string
I'm updating some old CSS sheets and creating a new LESS sheet for my project. In the old CSS sheet I have, I have two hex values that are used to make a gradient.
The hex values are passed like hex ...
0
votes
0answers
15 views
How do I dynamically declare variables in Less?
I am trying to create a less helper file that just creates a bunch of less variables for me. I would like to try to use parameterised mixins to do this so that I can cut down on the amount of ...
1
vote
1answer
10 views
LessCssProcessor import and declaration for wro4j
I'm trying to use a LessCss processor in my maven project using wro4j version 1.45. I use this import statement and I get an error at build time saying it isn't recognized.
import ...
0
votes
1answer
13 views
Custom CSS attributes while using LESS?
I have been using SASS for a while now, and one thing I really like is how I can use it for my FlashBuilder projects also, namely that is supports custom CSS attributes, like 'embedAsCFF' and ...
0
votes
2answers
22 views
How to use Preboot mixins in a Rails project with Twitter Bootstrap
I'm looking for a way to use the Less Preboot mixins in my Rails project.
Gems Gemfile:
gem "less-rails"
gem "twitter-bootstrap-rails"
Layout application.html.erb:
<%= stylesheet_link_tag ...
3
votes
0answers
33 views
How to integrate GruntJS with Netbeans 7.3? [closed]
How do I integrate Grunt into Netbeans 7.3, or alternatively allow Netbeans define some external script/program to exec as part of a build.
This is so I can setup Netbeans to compile Less into CSS ...
0
votes
1answer
17 views
Exclude css files by default when checking in
I am using Less in Visual Studio to generate css files. When I check in I only want to check in the less files and exclude the generated css files. Is it possible to exclude css files by default when ...
1
vote
1answer
18 views
LESS: How can I include (concatenate) a css file without being processed?
How can I include (concatenate) a css file without being processed by less?
I can use @import (less) file.css; but it processes the css file which is not desired. On the other hand @import (css) ...