Saturday, June 20, 2015

Vaadin 7 - SCSS - Import Custom CSS

Instead of a CSS file, provide a styles.scss file under /VAADIN/themes/<name> (in your case, the name is "custom"). The code below is just an example: 1 @import "../reindeer/styles.css"; 2 @import "../YOUR_CUSTOM_STYLES.css"; 3 $color: rgb(51,204,255); 4 $dark-color: darken($color,...

Wednesday, June 10, 2015