diff options
author | John Ahlroos <john@vaadin.com> | 2012-09-27 16:27:38 +0300 |
---|---|---|
committer | John Ahlroos <john@vaadin.com> | 2012-09-27 16:27:38 +0300 |
commit | d36234db5942602e34d59bf3515ea5b694038c7c (patch) | |
tree | 05cbe0ae016fa38ac7bc32960bf986c8928eb57c | |
parent | 31eed0ccb33b4c02999390f248c05dd71032b448 (diff) | |
download | vaadin-framework-d36234db5942602e34d59bf3515ea5b694038c7c.tar.gz vaadin-framework-d36234db5942602e34d59bf3515ea5b694038c7c.zip |
Added missing NativeButton state class #9724
-rw-r--r-- | shared/src/com/vaadin/shared/ui/button/NativeButtonState.java | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/shared/src/com/vaadin/shared/ui/button/NativeButtonState.java b/shared/src/com/vaadin/shared/ui/button/NativeButtonState.java new file mode 100644 index 0000000000..bb7b535c02 --- /dev/null +++ b/shared/src/com/vaadin/shared/ui/button/NativeButtonState.java @@ -0,0 +1,7 @@ +package com.vaadin.shared.ui.button; + +public class NativeButtonState extends ButtonState { + { + primaryStyleName = "v-nativebutton"; + } +} |