Compass is a charityware authoring framework. It uses the SASS stylesheet language to create clean and reusable CSS3 code.
Questions tagged [compass]
720 questions
4
votes
0 answers
android sensortag azimuth for compass isn't working (java code)
I am using Sensortag cc2541 as a sensor connected to a NEXUX 5 through bluetooth.
So the code below doesn't have the typical onSensorChanged since it ISN'T using the sensors of the phone itself. Instead, it uses the methods of the sensortag…

Matt
- 974
- 1
- 13
- 31
4
votes
2 answers
Rails SASS compiler doesn't know compass animation
I am using
@include keyframes(small) {
0% {
opacity: 0;
}
100% {
opacity: 0;
}
}
.small {
@include animation(small 1s infinite);
}
And rails gives me the following error:
Sass::SyntaxError at /
Undefined mixin 'keyframes'. (or…

ilyo
- 35,851
- 46
- 106
- 159
4
votes
3 answers
Install Compass on OS X Yosemite
I'm trying to install compass using GEM but i have a lot of error.
My macbook pro is running OS X Yosemite.
Anyone have the same problem ?
Thank you for your time.
Have a nice day
sudo gem install compass
Password:
ERROR: Error installing…

Paul Boiseau
- 76
- 1
- 6
4
votes
1 answer
Compass error: Webkit only supports pixels for the start and end stops for radial gradients
I'm having a problem in my Backbone app. I'm using sass and compass.
When I try to build the app, I get this error:
Running "compass:dev" (compass) task
warning Webkit only supports pixels for the start and end stops for radial gradients. Got:…

khough
- 41
- 1
4
votes
2 answers
How to find distance of displacement using accelerometer sensor in android smartphone?
I am having one android smart phone containing accelerator sensor, compass sensor and gyroscope sensor . i want to calculate the distance of displacement using this sensors.
I already tried with the basic method ie.,
final velocity = initial…

vishnu vigneshwar
- 109
- 1
- 1
- 7
3
votes
1 answer
Cannot connect to my MongoDB using Compass tool after upgrading from 1.25 to 1.30
I get the below error message when I use a used-to-be working connection string to connect to my Mongo DB on the server.
This started happening after I upgraded my Compass from 1.25 v to 1.30 v.
I had to upgrade because the export collection feature…

Abhishek Gupta
- 31
- 1
- 2
3
votes
0 answers
MongoDB on Docker (sharding) Connection failed
I can't connect to my MongoDb router.
This is my docker-compose:
version: '3.5'
volumes:
mongoshard1_volume:
mongoshard2_volume:
mongoconf_volume:
services:
# MONGO DB SERVICES
# Node…

Gianmarco
- 41
- 3
3
votes
0 answers
Error during compass build with an old ruby project
I've been using compass from http://compass-style.org/ to manage my sites css for a long time.
I have to make a small intervention on this website but the compass build command doesn't work anymore.
I'm trying to lauch the build command like this :…

Hedy
- 143
- 1
- 7
3
votes
1 answer
How can I get SASS/Compass into the DDEV web container?
A client needs Compass for SASS compilation inside the DDEV-Local web container. How can I get compass in there?

rfay
- 9,963
- 1
- 47
- 89
3
votes
1 answer
How to find direction with flutter compass?
Is there any way to find a specific direction with a Flutter compass. Does that compass indicate a specific long and lat coordinates?

Khaliq Izrail
- 89
- 2
- 10
3
votes
1 answer
Is it possible for an Apple Watch app to require compass? (app for Apple Watch Series 5 only)
I'm building a watchOS companion app for a navigation app. It relies on the compass, which was introduced on Apple Watch Series 5. The app is useless without a compass.
I'm familiar with UIRequiredDeviceCapabilities, but that doesn't seem to offer…

gohnjanotis
- 6,513
- 6
- 37
- 57
3
votes
1 answer
MongoDB Query - Filter only works with "_id"
I'm using mongodb v4.0.3, and this happens both with the shell and in compass.
This only happens with a certain collection. It previously had overriden ids (instead of the default mongodb id, there was a string. I dropped the collection and I…

user3743211
- 51
- 1
- 3
3
votes
0 answers
MongoDB Compass stuck loading data
Compass was working fine until today. Now I'm noticing the following behavior:
Very rarely, it gets stuck trying to connect.
When connecting is ok, then it gets stuck trying to load the data. This happens 100% since today.
Using the mongo…

Ten15
- 31
- 2
3
votes
3 answers
Find objects in nested array, mongodb, compass
I'm using Mongodb database and Compass tool to visualize my data.
My collection called 'ProbCancer' looks like that:
probCancers: [
cases: [
{
case: {
bi: Number,
age:…

Bentaiba Miled Basma
- 579
- 2
- 9
- 27
3
votes
1 answer
How to show MapKit compass?
Currently the compass only get's shown if a User applies a rotate-gesture. Otherwise the compass is hidden.
But it would be nice if my two wishes below were fulfilled!
Is it possible to display the compass always?
How to show / hide the…
user9225081