sproutcore / Todos-Example

http://guides.sproutcore.com/html_based.html
52 stars 15 forks source link

Stylesheet not loading, todos_mobile.css throws error #10

Closed zwippie closed 2 years ago

zwippie commented 13 years ago

I was having a problem with the file todos_mobile.css stylesheet. No style was rendered to the browser at all, sc-server error was:

Sass::SyntaxError: Undefined mixin 'border-radius'.
    tmp/chance/home/zwippie/src/todos/tmp/debug/staging/static/todos/en/current/resources/stylesheets/todos_mobile_css.scss:10:in `border-radius'

It turns out that the css3 mixins are required but not loaded. Put this on top of todos_mobile.css to fix the problem.

@import "compass/css3";
stevens commented 13 years ago

thanks. useful to me

Feuda commented 11 years ago

hit my problem, thanks

dcporter commented 11 years ago

This is a bug, right? Adding @zwippie's line to the top of the css file fixes it for everyone?