-
Notifications
You must be signed in to change notification settings - Fork 6
Open
Description
Hi,
I have tested Vaadin 7.3.0.beta1 and Listbuilder 0.7.3.v7BETA with the new Valo theme. Seems that up, down, remove, left and right button icons are rendered incorrectly in buttons. Seems to occur with Firefox 31 and Chromium 36 in Linux. Attached is a screencapture of the issue.
Here is the code for simple test app:
@Theme("valo")
public class ListbuilderdemoUI extends UI {
@Override
protected void init(VaadinRequest request) {
final VerticalLayout layout = new VerticalLayout();
ListBuilder listBuilder = new ListBuilder("Test");
listBuilder.addItem("Item1");
listBuilder.addItem("Item2");
listBuilder.addItem("Item3");
listBuilder.addItem("Item4");
layout.addComponent(listBuilder);
setContent(layout);
}
}
Metadata
Metadata
Assignees
Labels
No labels
