summaryrefslogtreecommitdiffstats
path: root/client
diff options
context:
space:
mode:
authorArtur Signell <artur@vaadin.com>2012-11-23 08:24:11 +0000
committerVaadin Code Review <review@vaadin.com>2012-11-23 08:24:11 +0000
commit1647984d05c5c576c1fe343111c826f3b6c71bc3 (patch)
tree6c17567f186de0f2b72997244c8e62f7174bfc73 /client
parent1f62c02e010434ec29f47c2459f57c890c9bba49 (diff)
parentd6caa6043adef61387ccfece57336593641875c4 (diff)
downloadvaadin-framework-1647984d05c5c576c1fe343111c826f3b6c71bc3.tar.gz
vaadin-framework-1647984d05c5c576c1fe343111c826f3b6c71bc3.zip
Merge "Fixes #6714 #10330 - wraps theme in themename{}, creates legacy-styles.css, updates themes to support this."
Diffstat (limited to 'client')
-rw-r--r--client/src/com/vaadin/client/ui/ui/UIConnector.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/src/com/vaadin/client/ui/ui/UIConnector.java b/client/src/com/vaadin/client/ui/ui/UIConnector.java
index 588fb5c5cf..1d2c830ea6 100644
--- a/client/src/com/vaadin/client/ui/ui/UIConnector.java
+++ b/client/src/com/vaadin/client/ui/ui/UIConnector.java
@@ -303,7 +303,7 @@ public class UIConnector extends AbstractSingleComponentContainerConnector
.getThemeName();
// Remove chars that are not suitable for style names
themeName = themeName.replaceAll("[^a-zA-Z0-9]", "");
- root.addStyleName("v-theme-" + themeName);
+ root.addStyleName(themeName);
root.add(getWidget());