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,...
Saturday, June 20, 2015
Wednesday, June 10, 2015
Common BPMN modeling mistakes: Swimlanes
By Gregor Polancic
In BPMN terminology a “Swimlane” represents both primary grouping BPMN elements – Pools and Lanes.
Pools
A pool is a basic...