Example usage for com.vaadin.ui.themes ValoTheme TABSHEET_PADDED_TABBAR

List of usage examples for com.vaadin.ui.themes ValoTheme TABSHEET_PADDED_TABBAR

Introduction

In this page you can find the example usage for com.vaadin.ui.themes ValoTheme TABSHEET_PADDED_TABBAR.

Prototype

String TABSHEET_PADDED_TABBAR

To view the source code for com.vaadin.ui.themes ValoTheme TABSHEET_PADDED_TABBAR.

Click Source Link

Document

Add a small amount of padding around the tabs in the tab bar, so that they don't touch the outer edges of the component.

Usage

From source file:qbic.vaadincomponents.InputFilesComponent.java

License:Open Source License

public InputFilesComponent() {
    this.setCaption(String.format("<font color=#FF0000>  Select input file(s) </font>"));
    this.setCaptionAsHtml(true);
    inputFileForm.setHeight(100.0f, Unit.PERCENTAGE);
    inputFileForm.addStyleName(ValoTheme.TABSHEET_FRAMED);
    inputFileForm.addStyleName(ValoTheme.TABSHEET_PADDED_TABBAR);
    setCompositionRoot(inputFileForm);//ww  w .j a v  a  2  s.  c o m
}