Tagged Questions

Sass is an extension of CSS3, adding nested rules, variables, mixins, selector inheritance, and more. It's translated to well-formatted, standard CSS using the command line tool or a web-framework plugin.

learn more… | top users | synonyms

31
votes
5answers
9k views

Any good SASS parser for PHP?

I'm currently using a modified CSS Cacheer as an alternative but its syntax is somewhat vague and adoption is, well, abysmally low... Documentation is hard to come by as well. I'm looking to switch ...
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 ...
25
votes
7answers
5k views

Using SASS with ASP.NET

I'm looking into ways to use SASS (Syntactically Awesome StyleSheets) from the Ruby HAML package in an ASP.NET environment. Ideally, I would like compilation of SASS files into CSS to be a seamless ...
21
votes
9answers
6k views

SASS implementation for Java?

I'm looking for SASS implementation in Java (could be used with JSP/JSF). For Python I've found CleverCSS, but there is nothing for Java. Anyone heard something about this sort of tool for generating ...
20
votes
4answers
4k views

What is the value of Compass for Rails 3.1?

I'm trying to decide if I should include Compass when starting a new Rails 3.1 project. I haven't used Compass before. Rails 3.1 now supports SCSS directly. The Rails 3.1 asset pipeline (via ...
19
votes
6answers
4k views

How to make Rails 3.1 use SASS (Over SCSS) as the default?

Having a hard time figuring out how to make SASS, not SCSS, as the default for stylesheets. I've tried making a sass_config.rb file with this: Sass::Plugin.options[:syntax] = :sass ...
16
votes
12answers
1k views

What would be some reasons to decide against HAML/SASS?

I've been reading up about HAML/SASS lately and I'm not quite sure why any one would not want to use it. It seems to be very easy to switch, makes things cleaner and more efficient. Update: What ...
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/ ...
14
votes
5answers
4k views

How to manage CSS Stylesheet Assets in Rails 3.1?

I'm just learning the new asset pipeline in Rails 3.1. One particular problem I'm having is with the way Sprockets just mashes all the found CSS stylesheets into one massive stylesheet. I understand ...
14
votes
5answers
2k views

What is the best method for storing SASS generated CSS in your application and souce control?

If you are using HAML and SASS in your Rails application, then any templates you define in public/stylesheet/*.sass will be compiled into *.css stylesheets. From your code, you use stylesheet_link_tag ...
12
votes
3answers
7k views

Using Haml & Sass with Eclipse

Are there any plugins for eclipse that add syntax highlighting and other niceties for editing Haml and Sass? Google searches only seem to point to a dead project on lucky-dip.net. Note: it's Sass I'm ...
11
votes
1answer
483 views

Difference between compass and sass?

I know this is kinda of a stupid question, but I've been searching google and I can't find any answers:/ So what's the difference between sass and compass, sass and scss. I'm getting really confused ...
10
votes
1answer
401 views

SASS to CSS via an ANT task + directory creation

I recently started playing with SASS [http://sass-lang.com/] in a Java-based project and wanted to create an Ant task that: for each .scss file + subdirectories containing .scss files in a top-level ...
10
votes
2answers
1k views

Is it worth to learn haml & sass?

In your professional experience have haml & sass proved to be useful? In which way?
9
votes
1answer
1k views

Should I use @import or manifest files?

Rails 3.1 introduces a new way of organizing both JS and CSS with the introduction of manifest files. For example, application.js might look like this: //= require jquery //= require jquery-ui //= ...
9
votes
3answers
771 views

What's the difference between SCSS and SASS?

From what I've been reading, SASS is a language that makes CSS more powerful with variable and math support. What's the difference with SCSS? Is it supposed to be the same language? Similar? ...
9
votes
4answers
1k views

Java libraries to manage CSS explosion and or reuse?

Java Q: I like CSS for simple web pages but loathe it when it comes to real world sites because you get css explosion and lots of repeating. I am tempted to use Sass and or Compass but they are Ruby ...
9
votes
6answers
4k views

Even better support for HAML in Netbeans?

This plugin is pretty good, definitely better than plain-text.. but I'm longing for a little more. Code completion, the Netbeans code generator shortcuts, 'ri' integration for looking up documentation ...
8
votes
2answers
648 views

Rails 3.1 asset pipeline doesn't pick up changes to @import'd sheets

I use @import'd partial sheets to organize my css/sass: /app /assets /stylesheets _constants.sass _layout.sass ... app.css.sass app.css.sass: @import _constants.sass ...
8
votes
1answer
771 views

Why was the SASS deprecated in favour of SCSS?

Basically, why SCSS, instead of SASS? The shorthand of SASS was the main reason why I picked up SASS, I recently came back to it and realised that it is no longer in favour. Any reasons why?
8
votes
4answers
3k views

rails + compass: advantages vs using haml + blueprint directly

I've got some experience using haml (+sass) on rails projects. I recently started using them with blueprintcss - the only thing I did was transform blueprint.css into a sass file, and started coding ...
8
votes
1answer
1k views

What are the main differences between HAML, SASS/Compass and ERB?

I'm looking for a templating engine. What are the important factors to consider when choosing among HAML, SASS/Compass and ERB?
7
votes
2answers
430 views

undefined method `sass' for #<Rails::Application::Configuration on Heroku

I've looked around a bit and didn't find similar errors reported. I don't recall having modified my production.rb. And for good measure, here's my application.rb Here's the stack trace from Heroku. ...
7
votes
2answers
1k views

SASS Global Variables + Rails 3.1

I am using Rails 3.1RC4 with default SASS setup. I have the following files application.css.scss /* * This is a manifest file that'll automatically include all the stylesheets available in this ...
7
votes
1answer
1k views

Carry Sass variables through the Assets Pipeline, Rails 3.1 rc1

I recently branched one of my Rails 3.0 projects with the 3.1 rc1 to try the new assets pipeline. I've been using Sass in the project before going 3.1 so I've been setting up some variables and ...
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
2answers
3k views

Haml/Sass Syntax Highlighting in Notepad++?

Has anybody made this yet?
6
votes
2answers
2k views

SASS, Rails 3.1: Loading stylesheets in vendor/assets

I'm using SASS to load stylesheets in a Rails 3.1(sass-rails 3.1) app. For example, sass partials in app/assets/stylesheets are loaded using @import in application.sass - @import "pages/common" ...
6
votes
2answers
705 views

In Rails 3.1, is it really impossible to avoid including duplicate copies of stylesheets?

I'm running into an upsetting issue when trying to share variables and mixins across Sass stylesheets. If I use @import to include a global stylesheet – one which includes global colors, mixins, ...
6
votes
1answer
141 views

How to += in SCSS?

Does anyone know how to += with SCSS? Example: .example { padding: 2px; &:hover { padding: current_padding + 3px; // OR padding+= 3px //... something ...
6
votes
1answer
513 views

Why use Sass (not SCSS)?

everyone — I was looking over a recent presentation on 960 Grid System, Refresh OKC – April 19th 2011, and on the penultimate slide (101/102), the guy recommends "if you're going to use ...
6
votes
3answers
2k views

Editor for writing SASS/SCSS?

I know there is an extensive list of working editors on the site itself, but I was wondering from you developers, what is the best tool for writing SASS, and more specifically and importantly, the new ...
5
votes
3answers
169 views

Asset Pipeline Cacheing CSS?

I am working on a Rails 3.1 app. I have created an application.css.scss.erb file. The .erb is in the end because I want to load a variable from the config file as the color variable in the css: ...
5
votes
4answers
908 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
3answers
833 views

SASS global variables not being passed to partials

Basically I have a structure that used to work perfectly in 3.0.x and now it breaks with undefined variable errors. partials _base.css.sass _header.css.sass main.css.sass application.css.sass ...
5
votes
1answer
693 views

Multiple background images (gradient + sprite)

This relates specifically to the compass framework for SASS. I have created a sprite and also a gradient mixin. Is it possible to combine the two on the same item, and if so how? @import ...
5
votes
2answers
91 views

In sass what does the = mean

For example in the following from sass. Is the = just a shorthand for @mixin? I can't seem to find any info for this on google =multi-line-button($base-color) +background-clip('padding-box') ...
5
votes
4answers
1k views

RVM, FSEvents, and CarbonCore on OS X

I'm setting up a project that uses SASS, which uses FSEvents to keep from polling the disk. It seems that this doesn't play nice with RVM, however. That means that when I run sass --watch I get this ...
5
votes
4answers
746 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
1answer
187 views

Is there a multiline in SASS?

I couldn't figure out that from SASS documentation. For example I would like to use Compass mixin with 5 parameters: =link-colors(!normal, !hover = false, !active = false, !visited = false, !focus = ...
5
votes
2answers
1k views

Is it possible to set different SASS output style for development and production with Compass in rails?

Let say I would like to set nested style for development and compressed for production. There is only one option in Compass configuration file: output_style = :compact # or :nested, :expanded, ...
5
votes
3answers
1k views

Elastic css framework with rails 3 and haml/sass?

I recently stumbled upon "elastic css" framework, which looks like a good thing to me. I tried blueprint already but I must say this seems to be an overkill for me (tried it with compass). So my ...
5
votes
1answer
887 views

Library for making static websites with HAML/SASS/CSS framework

I'm looking for a library or a collection of libraries that work together with the following requirements: HAML and SASS can be used. Have a small server capability to see HAML/SASS compiled every ...
5
votes
1answer
1k views

What advantages does Sass provide over regular CSS?

I'm trying to decide on technologies for a presentation layer. I have heard Sass talked about enthusiastically but am resistant to learn something new without knowing why it's better than 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
460 views

getting error after ugrading to sass-3.1.8

after upgrading to sass-3.1.8 form sass-3.1.7 I get this error: Functions may only be defined at the root of a document. any Idea how I can solve this? I'm using some of bourbon's mixins and ...
4
votes
1answer
387 views

Precompiling a .scss manifest file using Rails 3.1's asset pipeline

The release version of Rails 3.1 is having some weird issues with precompiling a sass manifest file with the extension scss. The weird thing is that the default manifest file application.scss compiles ...
4
votes
2answers
139 views

Many SCSS/SASS files to one CSS file?

I have a question: Is it possible to make sass listen to a directory with many sass files and generate one CSS file? I have found a way by including many sass files into one (style.scss): @import ...
4
votes
3answers
379 views

Compass: generate Sprites, plus width / height on each images in the sprite

I'm using Compass (a CSS Framework) to generate sprite images. It work, but compass generate only a background-position for each image. Is it possible to get also the width and the height for each ...

1 2 3 4 5 12