Vaadin Upload Component Upload Button, changing it's Style?

假如想象 提交于 2019-12-12 03:36:37

问题


Vaadin 7.6.2

How to apply setStyleName("small") on an Upload component’s upload button and have it work? If this requires custom CSS it would be great to see an example of what that looks like. This question is for the Upload Button, not the "browse" button, which has been hidden by setImmediate(true) in my case.


回答1:


Use this scss for the small upload buttons:

.v-upload-small .v-button
{
    height: 31px;
    padding: 0 14px;
    font-size: 14px;
    border-radius: 4px;
}

And on the upload button use the addStyleName("small") instead of setStyleName(...)



来源:https://stackoverflow.com/questions/35835618/vaadin-upload-component-upload-button-changing-its-style

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!