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

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

Introduction

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

Prototype

String PANEL_BORDERLESS

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

Click Source Link

Document

Remove borders and the background color of the panel.

Usage

From source file:org.tylproject.vaadin.addon.fields.zoom.ZoomWindow.java

License:Apache License

public Layout makeLayout(ZoomField<T> field) {

    btnSelect.addStyleName(ValoTheme.BUTTON_PRIMARY);
    content.addStyleName(ValoTheme.PANEL_BORDERLESS);

    Component dialogContents = field.getZoomDialog().getDialogContents();

    content.setContent(dialogContents);/*www. j  av a 2  s .  co m*/
    content.setSizeFull();

    rootLayout.setSizeFull();
    rootLayout.setExpandRatio(content, 1);
    rootLayout.setMargin(new MarginInfo(true, false, true, false));

    return rootLayout;
}