Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ListBuilder with Valo and Vaadin 7.3.0.beta1 #5

Open
teepeltola opened this issue Aug 19, 2014 · 5 comments
Open

ListBuilder with Valo and Vaadin 7.3.0.beta1 #5

teepeltola opened this issue Aug 19, 2014 · 5 comments

Comments

@teepeltola
Copy link

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);
    }
}
@AndrejGajdos
Copy link

OS X 10.9 with Chrome 37, Firefox 31 and Safari 7 is the same problem.

@morphace
Copy link

+1

1 similar comment
@chiccorusso
Copy link

+1

@teepeltola
Copy link
Author

I have this in my .scss file:

    .v-listbuilder {    
        .v-button-caption {
            margin-left: -0.4em;
            display: inline-block;
        }
    }

@chiccorusso
Copy link

It works, and the arrows return on the buttons. Thank-you.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants