Compass is a charityware authoring framework. It uses the SASS stylesheet language to create clean and reusable CSS3 code.
Questions tagged [compass]
720 questions
0
votes
1 answer
How to use "use-percentages" on Compass?
I'm trying to use use_percentages to generate an image sprite with background position by percentage. But after compiling the SCSS file, the background-position declaration is still in pixels.
My SASS code:
@import…

rtkbr
- 3
- 1
0
votes
2 answers
Apple requires user permission to use compass?
We are about to submit and iOS app, and we would like to know: it is necessary to get the user permission to access the compass? Is the compass considered as a part of the location services, in terms of the user privacy?
Thanks

DavidGuaita
- 501
- 1
- 7
- 18
0
votes
1 answer
Shortening code by using a variable for including mixin
I'd like to know if there is a way to include a mixin (compass or my own) by a value of a specific variable.
Currently I have the following mixin (which works)
@mixin aligned-top-bottom-border($size, $side){
@if $side == "left"{
@include…

Nir Naor
- 637
- 6
- 5
0
votes
1 answer
compass compile under www-data user
I need to compile scss by www-data user from nginx/php5-fpm
command:
compass compile sass/screen.scss --config config.rb --boring
result:
/usr/local/rvm/rubies/ruby-2.1.3/lib/ruby/2.1.0/rubygems/dependency.rb:298:in `to_specs': Could not find…

fullpipe
- 368
- 4
- 14
0
votes
1 answer
Slick Carousel trying to change file path variable
I'm using Slick Carousel with Zurb Foundation and the recommended use it to have the css, js in its own folder in the root directory and when i set my project up like this i can get it to work perfectly.
But I'd like to add it into my current…

GCrane93
- 3
- 1
- 2
0
votes
1 answer
Get Compass to compile css into specific directory when using Grunt
I want to get a basic pre-processing workflow in place. I've set up a directory structure like this:
- website-root
- - index.html
- - css
- - pre-processing
- - - Gruntfile.js
- - - package.json
- - - sass
- - - - test.scss
I'm using Grunt, as…

Dan
- 5,836
- 22
- 86
- 140
0
votes
1 answer
Susy2 File to Import not found or unreadable, compiling with Compass via Gulp
Getting Compass and Susy to work together under Gulp - frustrating.
I can't seem to get Susy 2 working with gulp and compass unless I import the files manually (using the "Manual Start" directions from the Susy documentation).
(I've asked once…

JemBijoux
- 104
- 1
- 5
0
votes
0 answers
Slow livereload with grunt
Apologies in advance I'm very new to this, I previously was using Durandal with NPM and had liverealod working and it was lightning fast, now I'm using grunt with angular and my livereload has gotten much slower, sometimes 4-5 seconds. Didn't know…

user2002128
- 3
- 1
0
votes
1 answer
phpstorm - @import "compass" cannot resolve
I'm on Windows7, I've installed Compass and configured it correctly in my project folder.
I'm new to Scss and Compass but when I launch compass watch from CMD my style.scss gets automatically compiled and everything seems fine.
[ver. compass 1.0.1…

maioman
- 18,154
- 4
- 36
- 42
0
votes
1 answer
Custom compass on android google maps api v2
I would like to add a custom compass to the map or replace the current icon and items. Is it possible?

Artur Siwek
- 55
- 9
0
votes
0 answers
flexbox parameter issue in Compass
I am getting Mixin flexbox doesn't have an argument named $version in the following code. I have Compass 1.0.1 installed.
@import "compass/css3/flexbox";
@mixin all-spec-display-flex() {
@include flexbox((display: box, flex-direction: row),…

AppleGrew
- 9,302
- 24
- 80
- 124
0
votes
4 answers
Compass can't find any Sass files to compile
Trying to learn Grunt. I have installed the grunt-contrib-compass,and grunt-contrib-watch plugins. When I use grunt in terminal, it runs the compass task and comes back with
Running "compass:dist" (compass) task
Compass can't find any Sass files to…

iamgarrett
- 49
- 1
- 7
0
votes
1 answer
Can't find config.rb in existing project that uses SASS
I want to use/compile SASS on an existing project (which has the SASS files ready, it's a template). But I can't find the config.rb so I don't know where to point the CMD(ruby) too. Can I create a new one or something?

user50248
- 113
- 2
- 10
0
votes
1 answer
Adding ng-grid and compass to AngularJs fullstack installation
I've installed AngularJS using the fullstack installer here:
https://github.com/DaftMonk/generator-angular-fullstack
I want to now include ng-grid. How do I go about that? I've already ran npm install ng-grid which has copied the files to the…

WastedSpace
- 1,143
- 6
- 22
- 34
0
votes
1 answer
sass compass import not in compiled css
I am running sass 3.4.2 and compass 1.0.1 and compiling compass with grunt-contrib-compass.
I am importing Zurb Foundation scss files into a master stylesheet, but a few of the imports do not appear in the compiled css. After digging deeper, it…
user26858