Sass (Syntactically Awesome Stylesheets) is an extension of CSS adding features like nested rules, variables and mixins. This extends the possibility to write structured, manageable and reusable CSS. Sass translates to standard CSS.

learn more… | top users | synonyms (1)

0
votes
0answers
12 views

SCSS check if a text field has user input

I'm trying to have different styles for whether a user has typed something into a text field or not. There doesn't seem to be a pseudo-class (like :hover or :focus) for this, but honestly, I'm not ...
0
votes
0answers
22 views

Broken Zurb Foundation 4 responsive navbar menu icon

I'm using the latest zurb-foundation gem for a Ruby project. My navbar should be responsive and show a Menu with 3 horizontal bars when the screen width is small enough. I'm getting it to show the ...
0
votes
1answer
12 views

SCSS mixin with argument interpolation is not working

I'm creating a mixin to generate a CSS background gradient, per Ultimate CSS Gradient Generator. The mixin looks like this: @mixin gradient-2-colors($color-1, $color-1-pos, $color-2, $color-2-pos) { ...
0
votes
0answers
14 views

Chrome Canary Sass debugging switches between scss files and compiled css

After setting up source maps for my scss files, and getting sass debugging up and running for canary, I'm hitting a small but frustrating snag. When I first load or reload the page and inspect an ...
0
votes
1answer
20 views

Usa a Variable in a Mixin

I have a mixin set up to do a cross browser calc, @mixin calc($property, $expression...) { #{$property}: -moz-calc(#{$expression}); #{$property}: -o-calc(#{$expression}); #{$property}: ...
0
votes
0answers
10 views

How can I remove a zen-grid-item mixin declared in a previous media query?

I've been using Zen Grids for responsive layouts for a while now, and somehow never came across this. I've referenced the documentation, but for the life of me cannot figure out how to do something ...
-2
votes
1answer
25 views

Check for a Variable in Sass mixin & print it if it's defined

I'm creating a Sass mixin with 3 arguments one of them is optional & I want to print it out if it's passed otherwise I don't want to print anything. Here is how my mixin looks like: @mixin ...
0
votes
0answers
28 views

how to require libaries using Docpad Sass

I have been following the instructions here: docpad-plugin-sass And I have search all over for the answer even found someone requireing susy but their problem was with needing to update susy. ...
0
votes
1answer
13 views

Redefine an SCSS nesting selector depending on the body class inside of the nesting block

I have an SCSS ruleset which looks somewhat like this: .thing { div { // rules } } Sometimes I want to restyle this .thing div element depending on a class being added to the body so in ...
1
vote
0answers
24 views

SASS variables inter-files scope

In order to use @include box-shadow(0 0 10px black); you would have to include the "library": @import "compass/css3"; later in the file, I am including other scss: @import "sidebar/main"; ...
0
votes
1answer
14 views

NoMethodError on line [“32”] in Rails 3.2 with latest Compass and Sass

I have been searching around a bit to find a solution to this error message I am getting and based on my research it would appear this error should have been fixed in the latest compass-rails and/or ...
1
vote
1answer
35 views

SCSS Dynamically assign margin based on another element

I would rather not hard code a pixel value for my margin-left on one of my elements: .my_element { margin-left: 75px; } What I would like to do, is make that margin-left be equal to the width of ...
1
vote
0answers
30 views

Sass/Sprockets: Where is image-url?

I'm currently implementing a runtime module which creates a sass file, generates a css file from it, removes the sass and gets on with its life. I'm on Rails on Sprockets. I've been meddling with the ...
0
votes
1answer
9 views

Create default folder locations for quick reference…with mixins?

I'm not sure if this is possible to achieve with mixins specifically, but hey, that's why I'm here. I'm a recent convert to sass, and I'm working on a site with quite long path names. e.g. ...
2
votes
0answers
47 views

ASP.NET sass/scss compilation at run-time and at compile-time?

I am searching for a solution for compiling my .scss files at run-time and at compile-time. The reason I need both is that our designers work on Macs and prefer the ease of having their .scss files ...
1
vote
1answer
22 views

SASS @for loop output CSS as one block of code?

I have the following for loop: @for $i from 1 through $columns { .tile#{$i}.noMargin { margin:0; } } Which outputs as: .threeColForm .tile1.noMargin { margin: 0; } .threeColForm ...
0
votes
0answers
30 views

Sublime Text snippet doesn't work in .scss files

I have the following saved in ~/Library/Application Support/Sublime Text 3/Packages/User as sass_mq.sublime-snippet: <snippet> <content><![CDATA[ @include respond-min() {} ...
0
votes
0answers
25 views

Compiling sass via sass-maven-plugin and susy

I've been trying for a while now to get the sass-maven-plugin to use susy while compiling sass code via compass, without success. The latest try involves the following code, and the assumption that ...
0
votes
2answers
51 views

Using SASS for loop to define variable color

So I have some colors defined like this: $blue_1 : #ecf5f9; $blue_2 : #cfe5ef; $blue_3 : #b1d5e6; Now I want to automatically create .blue_{number} classes for every color. So far I ...
0
votes
2answers
25 views

Is it possible to exclude/ignore certain CSS-files from the Sass Processor?

I'm using SASS/SCSS. I have some .css-files which I want to be ignored by the RubySassProcessor. Does anybody know how to exclude them?
0
votes
1answer
16 views

Combine extend and mixin in with same rules

Okey! I have couple of extends in sass like %heading %paragraph %gutter and so on... I want to reuse thouse in media queries, but that doesnt work. I know that. Then i came up with the idea to ...
0
votes
2answers
35 views

Sass: Change color with @for loop

I try to darken a variable number of divs like that with following code: @mixin color-divs ($count, $baseName, $startcolor) { $color: $startcolor; @for $i from 0 through $count { ...
0
votes
3answers
29 views

wrong number of arguments (4 for 3) for `rgb' issue in css.scss file in rails 3.2.13

rgb wrong number of arguments issue in rails: I saw that rgb in css file takes 3 arguments as mentioned here http://www.w3schools.com/cssref/css_colors.asp But in my project abc.css.scss file have ...
1
vote
1answer
20 views

is there a way to escape @ when writing Mixins in SASS?

I am trying to write a mixin for animations in css3. An animation in css3 requires an @keyframe. But a mixin declaration in SASS (and other declarations) start with @ too. Like @mixin, @for, etc... So ...
1
vote
1answer
31 views

Just did `bundle update` and application.css.scss seems to not be compiling [closed]

I am noticing that none of the styles in my application.css.scss are being included in my app - all of a sudden. This just happened after I did a bundle update recently. This is what changed: ...
1
vote
1answer
17 views

Different Set of Variables for IE using SASS

I was wondering if anyone has come up with an idea for how to include a different set of SASS variables in IE than in other browsers. Essentially, I have a list of variable colors in a SASS sheet ...
0
votes
2answers
27 views

Compass compile error on Susy's at-breakpoint mixin

I'm using Susy/Compass/SASS for a simple responsive grid on my current project. However, the Compass compiler won't compile Susy's at-breakpoint mixin. Here's my grid: +border-box-sizing ...
0
votes
1answer
38 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
18 views

foundation generates error css file

I installed compass and foundation 4 on my new Computer an installed a testproject via Terminal. Now I've set compass watch … to compile the scss files. When writing something in in app.scss the file ...
2
votes
1answer
53 views

Html - Correct use of markup tags ,CSS and OCSS

I'm really interested in the correct way of writing markup, especially with the rollup of HTML5. And found that it's really hard to write markup that doesn't say anything about the looks of the ...
0
votes
3answers
26 views

Is there a way to make the CSS property mask-image responsive?

I want this image to expand the width of the page. How can I get the mask to expand too? If I set the width/height properties to 100% the mask does not scale, It just repeats. Here is an example of ...
0
votes
1answer
20 views

SASS inserts code comments periodically into my compiled CSS

just wondering why SASS does this and how to prevent it - I'm using Scout to manage all my Sass / Compass projects. Inside a "sass" folder I have a main.scss file which imports a partials/reset.scss ...
2
votes
0answers
32 views

SASS in Sinatra: couldn't set custom directory

I've read Sinatra SASS custom directory and Sinatra custom SASS directory . But it doesn't work for me. I write this app: require 'sinatra' require 'sass' require 'slim' configure do set ...
1
vote
1answer
29 views

Weird misalignment in my Susy layout

The elements I set the Susy span-column() mixin to, do not obey to it. They are misaligned ever so slightly. How do I achieve perfect alignment of my HTML elements? Screenshot of full website ...
0
votes
1answer
34 views

SASS extend/share/inherit specific properties from parent to child or visa vera

Is it possible to extend/share selected/specific properties to the child from parent for e.g. without creating a variable? .main-container { padding: 20px; margin: 20px; ul { ...
1
vote
1answer
35 views

Sublime Text: Reindent SCSS files?

I've got some SCSS files who's indentation has somehow managed to get pretty jacked up. I've tried doing Edit > Line > Reindent and changing various indentation settings, but none seem to work ...
0
votes
1answer
34 views

Issue with CSS3 transition flow

I have setup a background transition on this page. The first area of the page "Il Blog - Leggi tutti gli articoli" and "Gli Eventi - Leggi tutti gli eventi" shows a list of different post types in ...
-1
votes
0answers
11 views

Right Div on above Left Div after

I created a page with two dives using Compass and Sussy grid. Now using the media query I want to bring the .right div on above of the .left div. How can I do that? Thanks for your help
-1
votes
1answer
39 views

how to implement sass in sencha touch 2.0

Please tell me how to include our own pictos in sencha 2.0. This is my .scss file. $base_color:#FF83D6; @import 'sencha-touch/default/all'; @include sencha-toolbar-ui('india', #66FF66, 'matte'); ...
0
votes
0answers
21 views

zen grid item without position argument

I'm experimenting with zen grids for a new drupal site I'm working on using the zen starter theme.. let's say I have a 5 column grid with an unordered list that has 5 list-items in it. In my scss file ...
-2
votes
1answer
30 views

Compass generates invalid css3? [closed]

I recently tried to use compass for some background gradients, but at the moment I couln't get a valid stylesheet out of it. An example @include filter-gradient(#ededed,#d9d9d9); @include ...
0
votes
0answers
21 views

Compass/Susy at-breakpoint specificity issues

Often when writing the scss for new at-breakpoints--also even breakpoints that do not change the layout, but nonetheless still change styles at those breakpoints--if I do not specify exactly as I did ...
1
vote
1answer
26 views

:first-child affecting other child elements

I have this in my SASS file: .buttons { :first-child { padding-top:7px; } } HTML: <div class="buttons"> <div> <label> <input type="checkbox"> ...
0
votes
1answer
31 views

Vaadin/OSGi : ScssStylesheet class not found

I use vaadin and OSGi to create a modular application. After a long fight, I was able to deploy successfully the application. However, I can't load the style. When I try to access to ...
0
votes
1answer
35 views

Grouping CSS classes vs Individual Classes when have same attributes Performance - SASS/SCSS implementation

Previously without SASS if classes share the same CSS attributes it's easier to group them as below .header, .content, .footer { height:100%; } but with SASS/SCSS etc managing styles are so ...
0
votes
0answers
20 views

Does SASS/SCSS/Compass have a SWITCH function?

With SASS' ability to use variables, one would hope there is a large set of logic functions we can do with them. Is there a way to do something like this? $someVar: someValue !default; @switch ...
-1
votes
0answers
22 views

Sass only converting to .sass, not .scss using prompt sass-convert [closed]

So I'm on Windows and working from standard cmd prompt, though the issue seems like it would be applicable to any POSIX prompt as well. The language for either with sass is identical. So the ...
0
votes
0answers
304 views

Foundation 4 vs Bootstrap 3 for a responsive analytics Dashboard [closed]

We are considering using Angular/Ember js for a dashboard which will primarily have d3 graphs for server monitoring/analytics. The goal is to start developing with a responsive workflow in place and ...
2
votes
1answer
50 views

Bootstrap only for mixins/placeholders - with semantic classes

I'm thinking about using only semantic classes in my HTML, while still using Bootstrap's classes styles inside the semantic classes. For example: mixins: .newsItem { @include span4; } or ...
0
votes
1answer
39 views

How to obtain “stacking grid” in Susy (column on top of another)

Being completely new to susy and responsive web design, I'm trying to understand how to obtain this result with Susy (grid framework I've chosen): ...

1 2 3 4 5 43