Good day,
I’m trying to override a few styles in the valo theme with some changes in my project theme scss file.
My project scss file is defined as follows
@import “…/valo/valo.scss”;
.sentinel {
@include valo;
// Insert your own theme rules here
.sentinel.v-app {
background-color : $color-bg;
}
Issue 1
When I try and compile the SCSS with Compile Theme button in the Eclipse tool bar, the complie process takes HOURS and I end up having to forcefully shutdown eclipse. I decided to define a Compass builder to handle compilation for me
Issue 2
Once I has defined the compass builder and attempt to compile, I get the following error in my styles.css file
Error: File to import not found or unreadable: …/valo/valo.scss.
Load paths:
Compass::SpriteImporter
E:/Projects/sentinel/WebContent/VAADIN/themes/sentinel
C:/Ruby22-x64/lib/ruby/gems/2.2.0/gems/compass-core-1.0.3/stylesheets
on line 31 of E:/Projects/sentinel/WebContent/VAADIN/themes/sentinel/sentinel.scss
from line 1 of E:/Projects/sentinel/WebContent/VAADIN/themes/sentinel/styles.scss
I checked my libraries and confirmed that vaadin-themes-7.4.3.jar was indeed in the classpath.
I even changed the location of my defaultCacheDir for ivy and still no luck
This is really frustrating as it is holding up all other aspectes of development.
Other details about my environment are;
Using Elipse Luna
with the Vaadin 7 designer for eclipse (beta) v 0.8.1
with the Vaadin Plugin for Eclipse v 2.3.2.201503060752
Any help would be greately appreciated