Package com.vaadin.classic.v8.ui
Class ValoTheme
- java.lang.Object
-
- com.vaadin.classic.v8.ui.ValoTheme
-
public class ValoTheme extends java.lang.ObjectLegacy version of ValoTheme to facilitate migrationAdditional style names which can be used with the Valo theme.
- Author:
- Vaadin Ltd
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringLABEL_BOLDBolder font weight.static java.lang.StringLABEL_COLOREDColored text.static java.lang.StringLABEL_FAILUREFailure badge style.static java.lang.StringLABEL_H1Header style for main application headings.static java.lang.StringLABEL_H2Header style for different sections in the application.static java.lang.StringLABEL_H3Header style for different sub-sections in the application.static java.lang.StringLABEL_H4Header style for different sub-sections in the application.static java.lang.StringLABEL_HUGEHuge font size.static java.lang.StringLABEL_LARGELarge font size.static java.lang.StringLABEL_LIGHTLighter font weight.static java.lang.StringLABEL_NO_MARGINstatic java.lang.StringLABEL_SMALLSmall font size.static java.lang.StringLABEL_SPINNERSpinner style.static java.lang.StringLABEL_SUCCESSSuccess badge style.static java.lang.StringLABEL_TINYTiny font size.static java.lang.StringPANEL_BORDERLESSRemove borders and the background color of the panel.static java.lang.StringPANEL_SCROLL_INDICATORShow a divider between the panel caption and content when the content area is scrolled.static java.lang.StringPANEL_WELLInset panel style.
-
Constructor Summary
Constructors Constructor Description ValoTheme()
-
-
-
Field Detail
-
LABEL_H1
public static final java.lang.String LABEL_H1
Header style for main application headings. Can be combined with any other Label style.- See Also:
- Constant Field Values
-
LABEL_H2
public static final java.lang.String LABEL_H2
Header style for different sections in the application. Can be combined with any other Label style.- See Also:
- Constant Field Values
-
LABEL_H3
public static final java.lang.String LABEL_H3
Header style for different sub-sections in the application. Can be combined with any other Label style.- See Also:
- Constant Field Values
-
LABEL_H4
public static final java.lang.String LABEL_H4
Header style for different sub-sections in the application. Can be combined with any other Label style.- See Also:
- Constant Field Values
-
LABEL_NO_MARGIN
public static final java.lang.String LABEL_NO_MARGIN
A utility style that can be combined with theLABEL_H1,LABEL_H2,LABEL_H3andLABEL_H4styles to remove the default margins from the header.- See Also:
- Constant Field Values
-
LABEL_TINY
public static final java.lang.String LABEL_TINY
Tiny font size. Suitable for additional/supplementary UI text. Can be combined with any other Label style.- See Also:
- Constant Field Values
-
LABEL_SMALL
public static final java.lang.String LABEL_SMALL
Small font size. Suitable for additional/supplementary UI text. Can be combined with any other Label style.- See Also:
- Constant Field Values
-
LABEL_LARGE
public static final java.lang.String LABEL_LARGE
Large font size. Suitable for important/prominent UI text. Can be combined with any other Label style.- See Also:
- Constant Field Values
-
LABEL_HUGE
public static final java.lang.String LABEL_HUGE
Huge font size. Suitable for important/prominent UI text. Can be combined with any other Label style.- See Also:
- Constant Field Values
-
LABEL_LIGHT
public static final java.lang.String LABEL_LIGHT
Lighter font weight. Suitable for additional/supplementary UI text. Can be combined with any other Label style.- See Also:
- Constant Field Values
-
LABEL_BOLD
public static final java.lang.String LABEL_BOLD
Bolder font weight. Suitable for important/prominent UI text. Can be combined with any other Label style.- See Also:
- Constant Field Values
-
LABEL_COLORED
public static final java.lang.String LABEL_COLORED
Colored text. Can be combined with any other Label style.- See Also:
- Constant Field Values
-
LABEL_SUCCESS
public static final java.lang.String LABEL_SUCCESS
Success badge style. Adds a border around the label and an icon next to the text. Suitable for UI notifications that need to in the direct context of some component. Can be combined with any other Label style.- See Also:
- Constant Field Values
-
LABEL_FAILURE
public static final java.lang.String LABEL_FAILURE
Failure badge style. Adds a border around the label and an icon next to the text. Suitable for UI notifications that need to in the direct context of some component. Can be combined with any other Label style.- See Also:
- Constant Field Values
-
LABEL_SPINNER
public static final java.lang.String LABEL_SPINNER
Spinner style. Add this style name to an empty Label to create a spinner.Example
Label spinner = new Label(); spinner.addStyleName(ValoTheme.LABEL_SPINNER);
- See Also:
- Constant Field Values
-
PANEL_BORDERLESS
public static final java.lang.String PANEL_BORDERLESS
Remove borders and the background color of the panel. Can be combined with any other Panel style.- See Also:
- Constant Field Values
-
PANEL_SCROLL_INDICATOR
public static final java.lang.String PANEL_SCROLL_INDICATOR
Show a divider between the panel caption and content when the content area is scrolled. Suitable with thePANEL_BORDERLESSstyle. Can be combined with any other Panel style.- See Also:
- Constant Field Values
-
PANEL_WELL
public static final java.lang.String PANEL_WELL
Inset panel style. Can be combined with any other Panel style.- See Also:
- Constant Field Values
-
-