Compass Issue: Cannot resolve import into sass/scss file
Using Rails 3.2, Rubymine 4.5.4, compass-rails 1.0.3.
Here's my code:
@import "compass/css3";
.content {
background-color: #eee;
padding: 20px;
margin: 0 -20px; /* negative indent the amount of the padding to maintain the grid system */
@include border-radius(6px, 6px);
@include box-shadow(0,0,0,.15);
}
Works totally fine -- both border radius and box shadow get mixed in, no complaints by Compass compiler. But RubyMine says "cannot reslove import" and "cannot find mixin". Found a similar thread about this, but with no reply. Any idea what the issue is?
请先登录再写评论。