Questions tagged [libsass]

Libsass is a SASS pre-processing language for CSS compiled in C instead of Ruby. It allows you to write cleaner style-sheets and makes collaboration on your CSS a breeze. Libsass is know faster, but its development is a bit delayed.

Sass is a pre-processing language for CSS. It allows you to write cleaner style-sheets and makes collaboration on your CSS a breeze.

131 questions
0
votes
1 answer

Using susy with libsass - wrong output

I'm using libsass as it's faster than ruby sass and importing susy using bower. @import "../bower_components/susy/sass/susy"; $susy: ( columns: 12, gutter-position: inside, global-box-sizing: border-box ); #content { …
Mireba
  • 35
  • 5
0
votes
1 answer

libsass binding not found in ubuntu

I was getting this error while setting up ionic project Error: 'libsass' bindings not found. Try reinstalling 'node-sass'? at getBinding (/home/ashish/meta-placement-mobile/node_modules/gulp-sass/node_modules/node-sass/lib/index.js:22:11) at…
dharmendra vaishnav
  • 1,851
  • 2
  • 17
  • 23
0
votes
1 answer

bangular: Error: `libsass` bindings not found. Try reinstalling `node-sass`?

I'm getting this error while doing gulp build task after installing "bangular" project (yo bangular). Error: libsass bindings not found. Try reinstalling node-sass?
Venkat Papana
  • 4,757
  • 13
  • 52
  • 74
0
votes
1 answer

Sass won't compile when using Libsass (argument must not be empty)

So I'm using some pretty complicated Sass to remove every other selector from "&" .test, .test-2, .test-3, .test-4 { $selectors: (&); @if length(&) != 1 { $selectors: (); // Works only with Ruby Sass $i: 1; @each…
ESR
  • 1,669
  • 1
  • 18
  • 22
0
votes
3 answers

Python Sass unable to load DLL

On Windows, Python 3.4 64bit. Installed libsass, but unable to run it. Probably something to do with the 32bit vs 64bit. pip install libsass Requirement already satisfied (use --upgrade to upgrade): libsass in…
Sherwyn Goh
  • 1,352
  • 1
  • 10
  • 19
0
votes
0 answers

Optimizing Foundation5 Workflow

I have a basic question about Foundation5 setup, and associated publishing workflow. I'm on a learning curve towards creating a better local dev-to-publish workflow, so bear with me please... Currently, I create F5 Compass projects;…
jivers
  • 910
  • 2
  • 9
  • 16
0
votes
0 answers

Compiling SASS using Libsass + SASSC - not emitting SourceMap?

I have a setup where I use Libsass + SASSC to compile SASS files (hugely faster than the regular ruby compiler). It is working great, but I can't manage to generate a SourceMap. The help (./sassc/bin/sassc -h) in the current version of SASSC says…
Angel
  • 1
0
votes
1 answer

Appending the parent selector to the end generates the incorrect result with Elixir/Libsass

I have the following SCSS: .btn { color: #000; @at-root { a#{&} { display: inline-block; } } } I'm expecting the following CSS: .btn { color: #000; } a.btn { display: inline-block; } But when I compile it…
Vn.
  • 37
  • 4
0
votes
1 answer

recursive paths for libsass

I am using gulp-sass to compile sass in node.js. I am using the libsass config to set the includePaths option. The following code works: includePaths: './project/components/controls/selectAgencies/' ...but I would like to do something with…
Brett
  • 2,775
  • 4
  • 27
  • 32
0
votes
1 answer

grunt-sass and custom functions

I would like to create custom functions inside my grunt file (or everywhere) to use with grunt-sass. I tried with this: options: { functions: { 'fakeList()': function() { var list = new require('node-sass').types.List(3); …
alberto-bottarini
  • 1,213
  • 9
  • 21
0
votes
0 answers

Sass Compile Error - property[1][0].replace(/progid:DXImageTransform\.Microsoft read property '0' of undefined

I am having troubles compliling certain lines of sass whilst using libsas I have included the entire error produced with this line of sass: SASS .cboxIE #cboxTopLeft{background:transparent; filter:…
Jamie Hutber
  • 26,790
  • 46
  • 179
  • 291
0
votes
1 answer

When using Libsass/Grunt is there a way to watch files on the fly?

I have installed Foundation 5 using >gem install foundation And then creating a new project using the command >foundation scratch --libsass The main reason being is that I'm on Windows and I really don't need/want to be using compass. I…
Eric Bishard
  • 5,201
  • 7
  • 51
  • 75
0
votes
1 answer

Error switching from grunt compass to libsass

I am working on moving over from grunt-contrib-compass to grunt-sass. I am seeing that the libsass compiler is failing on some of the imports in the main.scss file, though. Here is main.scss @import "breakpoint"; @import "compass/css3"; @import…
jerome
  • 4,809
  • 13
  • 53
  • 70
0
votes
1 answer

Autoprefixer: Not adding prefixes

Trying to get autoprefixer working with Grunt, Livereload and node-sass. I don't seem to be getting anything prefixed. Below is my Gruntfile.js: module.exports = function(grunt) { // Project configuration. grunt.initConfig({ autoprefixer:…
Rockitdev
  • 145
  • 1
  • 3
  • 13
0
votes
0 answers

Sass: get values and keys out of nested map

I'm trying to get the values and keys out of a nested map in Sass (using libsass, specifically). I'm successfully looping through the parent map, but I need to get the values and keys for each item in each child map. This is all on Sassmeister,…
freshyill
  • 393
  • 1
  • 7
  • 18
1 2 3
8
9