diff options
author | Jouni Koivuviita <jouni.koivuviita@itmill.com> | 2011-09-27 09:59:54 +0000 |
---|---|---|
committer | Jouni Koivuviita <jouni.koivuviita@itmill.com> | 2011-09-27 09:59:54 +0000 |
commit | a4990f201ec1da3b24414da4f7d24b44bed5f92a (patch) | |
tree | 89c9c9ac77a2a8647ec0190c77aa3329f2b306c0 /build/buildhelpers/com | |
parent | 849d5041e4d0de462058227f23a4d3ca6d54db2a (diff) | |
download | vaadin-framework-a4990f201ec1da3b24414da4f7d24b44bed5f92a.tar.gz vaadin-framework-a4990f201ec1da3b24414da4f7d24b44bed5f92a.zip |
Corrections to table column reordering styles.
Cleaned up table column drag styles for Reindeer (lost of duplication)
svn changeset:21334/svn branch:6.7
Diffstat (limited to 'build/buildhelpers/com')
-rw-r--r-- | build/buildhelpers/com/vaadin/buildhelpers/CompileDefaultTheme.java | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/build/buildhelpers/com/vaadin/buildhelpers/CompileDefaultTheme.java b/build/buildhelpers/com/vaadin/buildhelpers/CompileDefaultTheme.java index 2c4867e773..15d2acf6e9 100644 --- a/build/buildhelpers/com/vaadin/buildhelpers/CompileDefaultTheme.java +++ b/build/buildhelpers/com/vaadin/buildhelpers/CompileDefaultTheme.java @@ -42,11 +42,15 @@ public class CompileDefaultTheme { break; } } + // Compile Reindeer last, since it requires the spriting operation + // (makes testing the other themes a bit faster, since you don't need to + // wait for the spriting operation to finish before the theme CSS is + // compiled) combineTheme(new String[] { BASE }, false, ver); combineTheme(new String[] { BASE, RUNO }, false, ver); - combineTheme(new String[] { BASE, REINDEER }, true, ver); combineTheme(new String[] { BASE, LIFERAY }, false, ver); combineTheme(new String[] { BASE, CHAMELEON }, false, ver); + combineTheme(new String[] { BASE, REINDEER }, true, ver); } /** |