List of usage examples for com.vaadin.ui.themes ValoTheme LINK_LARGE
String LINK_LARGE
To view the source code for com.vaadin.ui.themes ValoTheme LINK_LARGE.
Click Source Link
From source file:com.constellio.app.ui.pages.base.MainLayoutImpl.java
protected Component buildFooter() { Link poweredByConstellioLink = new Link( $("MainLayout.footerAlt") + " (" + presenter.getCurrentVersion() + ")", new ExternalResource("http://www.constellio.com")); poweredByConstellioLink.setTargetName("_blank"); poweredByConstellioLink.addStyleName(ValoTheme.LINK_LARGE); poweredByConstellioLink.addStyleName("footer"); return poweredByConstellioLink; }