Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Missing SCSS mixins and notice about dependency of jQuery UI #4

Closed
Fensterbank opened this issue Apr 6, 2013 · 1 comment
Closed

Comments

@Fensterbank
Copy link

Hi,

after installing the gem, I received the error message of missing mixins border-radius and opacity.
I fixed this by adding

@mixin border-radius($radius:20px) {
  -webkit-border-radius: $radius;
  -moz-border-radius: $radius;
  border-radius: $radius;
}

@mixin opacity($value) {
  opacity: $value;
}

before @import 'hallo_rails';

Also you could add a notice in your readme, that jQuery UI is used.
Otherwise theres a syntax error 'jquery.Widget is not a function'.

Greets

@ncri
Copy link
Owner

ncri commented Apr 7, 2013

Hi,

it shouldn't be necessary to add this mixin, I don't do that in my projects. So this seems to be an issue not related to hallo-rails. Maybe this helps: http://stackoverflow.com/questions/15422098/why-do-i-get-undefined-mixin-border-radius-in-compass

Which rails version do you use? It might alos help to update the compass-rails gem.

@ncri ncri closed this as completed Apr 7, 2013
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants