在我们的文档中,我们指导在 MainView 中使用 @ImportHtml 作为 html 样式模块来获取全局样式。
在全局样式模块中,您可以应用可主题混合来更改组件的可样式化阴影部分等。
如果您的目标不在 shadow DOM 中,您可以直接在自定义样式块中设置样式,例如
假设您的应用程序中有一个 Label 和 TextField
// If styles.html is in src/main/java/webapp/frontend/ path is not needed
@HtmlImport("styles.html")
public class MainLayout extends VerticalLayout implements RouterLayout {
...
Label label = new Label("Title");
label.addClassName("title-label");
add(label);
...
TextField limit = new TextField("Limit");
limit.addClassName("limit-field");
add(limit);
...
}
在 src/main/java/webapp/frontend/styles.html
<custom-style>
<style>
.title-label {
color: brown;
font-weight: bold;
}
...
</style>
</custom-style>
<dom-module theme-for="vaadin-text-field" id="limit-field">
<template>
<style>
:host(.limit-field) [part="value"]{
color:red
}
</style>
</template>
</dom-module>
并且您的“标题”文本将具有棕色粗体字体,文本字段中的值将为红色,但其标题不受影响。
另请参阅:在 Vaadin Flow Web 应用程序中动态更改字体、字体大小、字体颜色等