Official website Sass on Rubygems
32
votes
9answers
8k 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 ...
8
votes
3answers
533 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
...
0
votes
2answers
193 views
What is the best way to find unused css-styles? [closed]
Possible Duplicate:
Tool to identify unused css definitions
I'm working on quite a big project and amount of css-styles (written in sass) grow big and now is about 250Kb. What tools can be ...
19
votes
4answers
10k 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 ...
19
votes
4answers
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/
...
37
votes
9answers
14k views
What CSS compiler do you use (SASS, Less, HSS, etc)? [closed]
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 ...
5
votes
3answers
837 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
625 views
How to have Assetic + sass work with Symfony2 in Windows?
I'm trying to get Assetic to run within Symfony 2.0.11 in order to use sass for css files.
I've been fiddling around that issue for hours, and from what I gather the current assetic version (1.0.2) ...
1
vote
2answers
552 views
rake assets:precompile not working (Rails 3.1.3 edition)
After review, this question has been asked many, many, many times. Yet I still don't grok why rake assets:precompile fails.
I can view the following results from my browser using local server (e.g. ...
6
votes
3answers
1k 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
...
32
votes
7answers
7k 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
4answers
5k 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 ...
10
votes
4answers
2k 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 ...
4
votes
4answers
2k views
Using @font-face with Rails 3.1 app?
I'm having trouble using the following @font-face declaration to work with my Rails 3.1 app. I put the fonts in the Asset Pipeline in its own folder called "Fonts" alongside images and stylesheets ...
4
votes
3answers
1k views
Is there a valid Gemfile for Rails 3.1 together with Scss, Haml, Compass and HTML-Boilerplate in production mode?
I have a successful Rails 3.0.x project with the following subset of Gems in the Gemfile:
gem "compass"
gem "haml"
gem "haml-rails"
gem "html5-boilerplate"
I tried today to upgrade to Rails 3.1 and ...
4
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
1answer
1k views
Rails 3.1 SASS asset helpers not not including RAILS_RELATIVE_URL_ROOT / relative_url_root
I have been working on an upgrade to Rails 3.1 from 2.3.11. One of the main hurdles to clear is the conversion to the asset pipeline. In this process I decided to convert my css to sass (scss). In ...
3
votes
2answers
1k views
In HAML on Ruby on Rails, how to use the :sass filter?
If using HAML on Ruby on Rails, then
:sass
#someDiv
border: 3px dashed orange
won't have any <style> tag around them.
and then
:css
:sass
#someDiv
border: 3px dashed ...
2
votes
1answer
237 views
Sass and rounding down numbers. Can this be configured?
Is there any way for me to modify the way that Sass will handle decimal places? I saw a few people saying that Sass will dynamically do the (target/parent)*100 calculation needed for responsive ...
2
votes
3answers
268 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 ...
1
vote
1answer
116 views
Can I turn off SASS RGB -> Color Name
I have a CSS rule like this:
background: #fff url('/assets/img/file.png');
It is compiling to:
background: white url("/assets/img/file.png");
Is there any way to prevent it from converting it ...
1
vote
1answer
986 views
Is there an eclipse editor for Sass's scss files or syntax coloring plugin?
I am looking for a plugin/editor for eclipse for syntax highlighting for .scss files.
I found these resources valuable:
http://sass-lang.com/editors.html has no editor for .scss files only .sass
...
0
votes
2answers
25 views
Change the output directory of .css files
New to ruby (I usually use python/django), new to sass. I'm simply trying to configure the output css directory option.
Related question here: changing the output directory of the resulting css file ...
0
votes
1answer
309 views
Asset pipeline not precompiling sass
I've updated my app to use the rails 3.1 asset pipeline (I think). I can compile .css files but not css.scss. I am running the sass-rails gem but nothing seems to work.
What should I check? Sorry, I ...
0
votes
1answer
110 views
How to expand CSS column to available space?
There is a way to do it using absolute positioning.
I have a two-column layout. The left column is a fixed 200px width plus 30px left margin. The right column contains the content and should expand ...
0
votes
1answer
490 views
Rails 3.0 - Turn Compass/SASS off in Production - Stylesheets 404
I am running on Compass on Rails 3.0 on Heroku and its pretty much working fine, but I occasionally have an issue where (some?) stylesheets aren't compiled as fast as the rest of the page so they ...
0
votes
0answers
681 views
getting Errno::ENOENT: No such file or directory on sass watch command
I installed Ruby on my Windows system to use Sass in order to follow Best practices in CSS Theming in my PHP project, as given in Best Practices - CSS Theming. I have never used Ruby or Sass before.
...
35
votes
5answers
11k 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 ...
28
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
...
31
votes
2answers
8k 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 ...
13
votes
2answers
2k views
Is it worth to learn haml & sass?
In your professional experience have haml & sass proved to be useful? In which way?
10
votes
4answers
4k 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 ...
7
votes
5answers
2k 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 ...
6
votes
2answers
2k views
.LESS together with Razor
Is it possible to use Razor View Engine (ASP.NET MVC) together with .LESS (similar to SASS - http://lesscss.org/ for .NET), since they're both using "@blah"?
What I want to achieve is to create ...
16
votes
5answers
5k 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 ...
9
votes
2answers
1k 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
...
10
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 ...
5
votes
3answers
8k views
Node.js - express - jade - compile SASS/LESS
Anyone have a really newbie guide to nodejs - express - SASS/LESS? I have not been able to get this working. The example I have now is a bareboned as possible..
var express = require('express'),
...
4
votes
2answers
455 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
712 views
Image paths in CSS to support CDN
I am trying to deploy our images to a cdn. Currently the css has relative paths to images on our site. These paths will need to support the CDN image location. Does anyone have advice on how I can ...
13
votes
1answer
728 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
4answers
5k views
How do I use reference images in Sass when using Rails 3.1?
I have a Rails 3.1 project with the asset pipeline working great. The problem is that I need to reference images in my Sass, but Rails calculates image URLs. (This is particularly important in ...
9
votes
2answers
4k views
6
votes
3answers
3k 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
4answers
934 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 ...
4
votes
5answers
4k views
less/sass with php
I am a front end developer and have recently considered using sass or less for css developemnt.
However I do not use ruby and I dont want to rely on users having javascript active. Anyone have any ...
2
votes
2answers
805 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
4answers
1k views
How can I quote strings in SASS?
I'm using SASS to generate a @font-face mixin, however this:
=remotefont(!name, !url)
@font-face
font-family = !name
src = url(!url + ".eot")
src = local(!name), url(!url + ".ttf") ...
2
votes
1answer
2k views
SASS Image CSS Cache Busting (via Compass)
Can anyone explain a best practice approach to implementing a cache buster in SASS? Meaning, on 'compilation' of my CSS, it appends a timestamp to images files. E.g.,
The following SASS code:
...
1
vote
1answer
569 views
CSS: Manage Sprite Images with .Less
Like SASS with Compass (in SCSS files), is there is a way (via an extention or a tool) to manage Sprite directly from the .Less ?