The tag has no wiki summary.

learn more… | top users | synonyms

28
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 ...
24
votes
6answers
5k 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 ...
11
votes
1answer
521 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 ...
9
votes
3answers
1k 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? ...
8
votes
1answer
807 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?
7
votes
3answers
185 views

Proper SCSS Asset Structure in Rails

So, I have an app/assets/stylesheets/ directory structure that looks something like this: |-dialogs |-mixins |---buttons |---gradients |---vendor_support |---widgets |-pages ...
6
votes
1answer
150 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
565 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
5answers
307 views

Import regular css file in scss file?

Is there anyway to import a regular css file with sass's @import command? While I'm not using all of the SCSS syntax from sass, I do still enjoy it's combining/compressing features, and would like to ...
5
votes
3answers
427 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 ...
5
votes
1answer
757 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 ...
4
votes
3answers
629 views

rails 3.1 asset pipeline css caching in development

I'm a bit confused as it seems like the application.css is including itself twice, once when it lists the resources from the manifest and then a cache of that. So when I delete an individual file it ...
4
votes
3answers
541 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
414 views

Rails 3.1 asset pipeline referencing the wrong image

In my application.css.scss I reference an image like this: body { background: #7d9ec4 url(asset-path('background.png', image)) no-repeat fixed bottom center; } It is located in ...
4
votes
1answer
255 views

Sharing mixins between scss files in rails 3.1

I'm trying to refer to a mixin defined in one file (application.css.scss) in another (home.css.scss). I have tried importing application into home but still get an "Undefined mixin" error. Is there a ...
4
votes
2answers
164 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
2answers
601 views

Rails 3.1 - force SCSS variable value refresh?

I've set up a set of [object].css.scss styles in my assets/stylesheets directory to correspond with the different views in my application. Every sheet includes a set of global style variable values ...
4
votes
1answer
534 views

rails 3.1 scss and where does compass fit in?

I am creating a new theme for my cms using scss. I am currently on rails 3.0.7 but am going to upgrade to 3.1 as soon as the the final is released so i can use the asset pipeline stuff. My question ...
4
votes
2answers
2k views

How to use SASS logic within a CSS 3 media query

I'm using saas via the compass framework and the blueprint/grid dependency. I want to be able to set the width of a column using a media query, like so: // /src/partials/_base.scss ...
3
votes
4answers
166 views
+50

sass css: target parent class from child

I am using sass and found problem. This is an example of what I am trying to do: .message-error { background-color: red; p& { background-color: yellow } } Expected css: ...
3
votes
1answer
34 views

SASS/SCSS: Refer to property without using an intermediate variable

Is it possible to refer to a property previously defined in a selector without introducing an intermediate variable? I'd like to say something like: .foo { padding: 15px; width: 300px - ...
3
votes
5answers
168 views

Rails 3.1 Assets: What's the advantage of per-controller stylesheets?

Just messing around with Rails 3.1, which separates stylesheets via controllers. I'm assuming there are benefits to this, but I'm struggling to determine what they are. Seems I have to include scss ...
3
votes
1answer
172 views

Compile SCSS at Runtime?

I have a project whose front-end is written in Sproutcore (1.6) and whose back-end is written in Ruby on Rails. I've been using SCSS in the Sproutcore project and I now need to allow the client to ...
3
votes
2answers
262 views

Does sass harms performance?

I've been educating myself. Reading this: The engine evaluates each rule from right to left, starting from the rightmost selector (called the "key") and moving through each selector until it finds ...
3
votes
3answers
1k views

Rails 3.1 Asset Pipeline and Caching

I'm working with Rails 3.1's asset pipeline and although it seems to work flawlessly in my development environment on my localhost, I'm having huge issues with it on engine yard. Here's my basic ...
3
votes
2answers
327 views

Create a cross-browser mixin for transform: rotate

I want to create a mixin for sass that will apply a rotation to the specified element. The mixin should take one parameter, for the number of degrees of rotation to apply. From css3please.com, I ...
3
votes
1answer
1k views

How does 'compass watch' work/how is it used with rails

I have done compass create . and compass init rails whilst in my project directory. A few questions: I have placed my .sass files in public/stylesheets. Is this the right place to put them? When I ...
3
votes
1answer
436 views

How do I define indents in vim based on curly braces?

I use https://github.com/cakebaker/scss-syntax.vim for syntax highlighting SCSS (or SASS) files on vim, which works very well for syntax highlighting. However, the plugin does not come with an indent ...
3
votes
2answers
963 views

generating css file from new sass format (scss) with sinatra and haml

I am writing a sinatra app with haml and sass. When I try to link in the stylesheet with a scss extension located in my views folder I get the following error: NoMethodError at /nav.css undefined ...
3
votes
2answers
86 views

In CSS, does it make sense or is it legal to nest an id in another id — such as “#main #display img { … }”

In CSS, if it is #main #display img { height: 80px } that means all images within an element with id display that is within another element with id main. But does it make sense or is it legal ...
2
votes
3answers
412 views

Rails app with Twitter Bootstrap works in Development, but not in Production

So I have a very simple app using the Twitter Bootstrap translated to SCSS files, works in local-development, but when I precompile and push to Heroku (using Cedar stack), I get this error in the ...
2
votes
2answers
170 views

Why does rails 3.1 and 3.2.0.rc2 create an application.css instead of an scss?

When a rails app is created with rails 3.1 or 3.2.0.rc2 it by default creates an app/assets/stylesheets/application.css file, however each controller/model created there after creates an ...
2
votes
4answers
112 views

User theme switching with SASS - Ruby on Rails

So I have an rails admin system that will allow a user to choose a theme, basically a set of SASS color variables that will recompile application.css.scss with the new colors. How would be the best ...
2
votes
1answer
84 views

What is the SCSS equivalent of LESS's Namespaces, bundling of classes

Browsing through the 2.0-wip branch of Twitter Bootstrap, I found LESS have a nice way of bundling variables and mixins. See the example code below: #font { #family { .serif() { ...
2
votes
1answer
43 views

vim folding syntax for scss

What are your techniques for folding scss code? It doesn't seam that Mr. Pope has this defined in his syntax file: https://github.com/tpope/vim-haml
2
votes
2answers
54 views

Apply style to multiple html elements of the same class with css or sass

I want to apply a style to all <p> and <input> elements of the numeric class using css. Is it possible to consolidate this so that I only write "numeric" once? p.numeric,input.numeric { ...
2
votes
1answer
200 views

How to use code completion on SCSS files in IntelliJ IDEA 10.5?

In general SCSS files are CSS files with some special features. When i want to edit a *.sass file in my project i noticed that IntelliJ knows that file type but there is no code completion at all. I ...
2
votes
3answers
208 views

CSS based framework like SCSS (Adaptive design)

I am designing a web app from scratch, which would be a fluid-based layout and the same HTML would render on different screens using the adaptive CSS. I am going to use adaptive CSS (or responsive ...
2
votes
2answers
50 views

Is it possible to style parents of a certain element type in SASS?

I want to do this: .classname { color: red a& { color: blue; } } and for it to compile to: .classname { color: red; } a.classname { color: blue; } Is there syntax available ...
2
votes
1answer
176 views

scss style sheets issue rails 3.1

my projects.css.scss file looks like the bellow one, // Place all the styles related to the Projects controller here. // They will automatically be included in application.css. // You can use Sass ...
2
votes
1answer
90 views

pass a list to a mixin as a single argument with SASS

I like to make mixins with SASS that help me make good cross-browser compatibility. I want to make a mixin that looks like this: @mixin box-shadow($value) { box-shadow: $value; ...
2
votes
2answers
225 views

Sass and combined child selector

I've just discovered Sass, and I've been so much excited about it. By the way, in my website I implement a tree-like navigation menu, styled using the combined child selector (E > F). Is there ...
2
votes
1answer
225 views

Using SASS, How can I escape the slash character in a font declaration?

I'm writing a font declaration with short-hand syntax, and I'm using SASS. I'd like to escape the '/' character to avoid SASS makes the divition operation. $fontSize: 14px; $lineHeight: 16px; ...
2
votes
1answer
100 views

Fixing Sass / SCSS bracket indentation

I have a regex puzzle for you all! A week or so ago, I decided to change the formatting of my Sass file from this: a { color: red; text-decoration: none; &:hover: { color: blue; ...
2
votes
2answers
596 views

Accessing Rails Models or Helpers in SCSS

I'm using Rails 3.1 and SCSS in the Asset Pipeline. Is there anyway to access Rails helpers or controller data in the SCSS file? Something like... #main { background-color: ...
2
votes
1answer
67 views

using hash with scss

hi i have many variables with colors. so want do something like this: $culture: #00CC66; $party:#CC9900; @each $i in culture, party { .bl_#{$i}{ border-left-color: #{$#{$i}}; } } for print: ...
2
votes
1answer
814 views

Copying Eclipse SASS/SCSS plugin from Aptana to Zend Studio

I am in desperate need of a SCSS plugin for my Zend Studio. Unfortunately Zend Studio doesn't support .scss files. And I can't find any other Eclipse plugins to help me. I noticed that Aptana Studio ...
2
votes
2answers
825 views

Automatic generation of CSS from SCSS/SASS with HAML and Rails

Is there a way to get your SCSS files to automatically generate new CSS each time a file is changed as part of Rails, without having to use sass --watch? Or is this just meant to happen anyway? By ...
2
votes
1answer
236 views

Why SASS stopped being the primary syntax (now SCSS is the one)?

In the official webpage they say: Although no longer the primary syntax, the indented syntax will continue to be supported. Doe anybody know why SCSS "partially took over" SASS?

1 2 3 4