List of usage examples for com.vaadin.ui.themes ValoTheme PANEL_BORDERLESS
String PANEL_BORDERLESS
To view the source code for com.vaadin.ui.themes ValoTheme PANEL_BORDERLESS.
Click Source Link
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; }