Skip to content

ListBuilder with Valo and Vaadin 7.3.0.beta1 #5

Description

@teepeltola

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.

listbuilder_valo_7_3_0_beta1

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);
    }
}

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions