英文:
How to use a different color for the required indicator in Vaadin 23
问题
我想要始终将多个字段的所需指示器显示为红色,我尝试通过以下方式设置:
:host(.required-field)::part(required-indicator)::after {
color: var(--dg-color-red);
font-weight: bold;
}
如果设置了类required-field
并且字段标记为所需(setRequired(true)
),那么应该适用于所有类型的输入字段。
这是否可能?
英文:
I want to display the required indicator always red for several fields, I tried to set this via
:host(.required-field)::part(required-indicator)::after {
color: var(--dg-color-red);
font-weight: bold;
}
I should apply for all kind of input fields if the class required-field
is set and the field marked as required (setRequired(true)
).
Is this possible?
答案1
得分: 3
你可以为整个应用程序提供一个全局变量来设置所需指示器的样式。将以下内容添加到你的自定义主题中的styles.css文件中。
html {
--lumo-required-field-indicator-color: red;
}
英文:
You can supply a global variable to style the required indicator for the whole application. Add the following to your styles.css inside your custom theme.
html {
--lumo-required-field-indicator-color: red;
}
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论