summaryrefslogtreecommitdiffstats
path: root/client
diff options
context:
space:
mode:
authorTeemu Pòˆntelin <teemu@vaadin.com>2014-06-13 15:57:37 +0300
committerVaadin Code Review <review@vaadin.com>2014-06-17 10:38:28 +0000
commit89eea17f571bce2ab99625dfeda90d59c101a337 (patch)
treeca1c2a8b7581889830a70531f2e59a6ed937ec03 /client
parentfa5d9f3d6e7f37386b0f657ab524f85f68850fc1 (diff)
downloadvaadin-framework-89eea17f571bce2ab99625dfeda90d59c101a337.tar.gz
vaadin-framework-89eea17f571bce2ab99625dfeda90d59c101a337.zip
Added initial style name for VColorPickerArea (#14021)
Change-Id: I0f7be75f51ec771a68f6e388b412346f2c366957
Diffstat (limited to 'client')
-rw-r--r--client/src/com/vaadin/client/ui/VColorPickerArea.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/client/src/com/vaadin/client/ui/VColorPickerArea.java b/client/src/com/vaadin/client/ui/VColorPickerArea.java
index e581cf3448..23a9379c80 100644
--- a/client/src/com/vaadin/client/ui/VColorPickerArea.java
+++ b/client/src/com/vaadin/client/ui/VColorPickerArea.java
@@ -34,6 +34,7 @@ import com.google.gwt.user.client.ui.Widget;
public class VColorPickerArea extends Widget implements ClickHandler, HasHTML,
HasClickHandlers {
+ public static final String CLASSNAME = "v-colorpicker";
private String color = null;
private boolean isOpen;
@@ -47,6 +48,7 @@ public class VColorPickerArea extends Widget implements ClickHandler, HasHTML,
public VColorPickerArea() {
super();
setElement(DOM.createDiv());
+ setStyleName(CLASSNAME);
caption = new HTML();
caption.addStyleName("v-caption");