diff options
author | Henrik Paul <henrik@vaadin.com> | 2015-01-12 16:08:18 +0200 |
---|---|---|
committer | Vaadin Code Review <review@vaadin.com> | 2015-01-13 15:12:04 +0000 |
commit | bb2e6035d2297025fb55f88911d435747eab3819 (patch) | |
tree | c9f612162813d2564514bae4ef6b1c7451b6441c /server/src/com/vaadin | |
parent | 2e0d4f149a9b02e38fe32411d66b715714bd526a (diff) | |
download | vaadin-framework-bb2e6035d2297025fb55f88911d435747eab3819.tar.gz vaadin-framework-bb2e6035d2297025fb55f88911d435747eab3819.zip |
Adds PROGRESSBAR_STATIC to Reindeer and Runo (#16173)
Grid's ProgressBarRenderer uses that style by default.
Change-Id: Ie3e1ec33168f61f921efdaf554714fba10cb2644
Diffstat (limited to 'server/src/com/vaadin')
-rw-r--r-- | server/src/com/vaadin/ui/themes/Reindeer.java | 20 | ||||
-rw-r--r-- | server/src/com/vaadin/ui/themes/Runo.java | 12 |
2 files changed, 24 insertions, 8 deletions
diff --git a/server/src/com/vaadin/ui/themes/Reindeer.java b/server/src/com/vaadin/ui/themes/Reindeer.java index 6eeebd8a03..e0ab792a15 100644 --- a/server/src/com/vaadin/ui/themes/Reindeer.java +++ b/server/src/com/vaadin/ui/themes/Reindeer.java @@ -15,14 +15,6 @@ */ package com.vaadin.ui.themes; -import com.vaadin.ui.CssLayout; -import com.vaadin.ui.FormLayout; -import com.vaadin.ui.GridLayout; -import com.vaadin.ui.HorizontalLayout; -import com.vaadin.ui.HorizontalSplitPanel; -import com.vaadin.ui.VerticalLayout; -import com.vaadin.ui.VerticalSplitPanel; - public class Reindeer extends BaseTheme { public static final String THEME_NAME = "reindeer"; @@ -90,6 +82,18 @@ public class Reindeer extends BaseTheme { /*************************************************************************** * + * ProgressBar Styles + * + **************************************************************************/ + + /** + * Displays the progress bar with a static background, instead of an + * animated one. + */ + public static final String PROGRESSBAR_STATIC = "static"; + + /*************************************************************************** + * * SplitPanel styles * **************************************************************************/ diff --git a/server/src/com/vaadin/ui/themes/Runo.java b/server/src/com/vaadin/ui/themes/Runo.java index 11f1bae682..6f8d5f37d9 100644 --- a/server/src/com/vaadin/ui/themes/Runo.java +++ b/server/src/com/vaadin/ui/themes/Runo.java @@ -59,6 +59,18 @@ public class Runo extends BaseTheme { /*************************************************************************** * + * ProgressBar Styles + * + **************************************************************************/ + + /** + * Displays the progress bar with a static background, instead of an + * animated one. + */ + public static final String PROGRESSBAR_STATIC = "static"; + + /*************************************************************************** + * * TabSheet styles * **************************************************************************/ |