我尝试通过 shared-styles.html (webapp/frontend/styles) 更改 Vaadin Flow Grid 标题的背景颜色:
<custom-style>
<style>
<dom-module id="my-grid" theme-for="vaadin-grid">
<template>
<style>
[part~="header-cell"] {
background-color: blue;
}
</style>
</template>
</dom-module>
</style>
</custom-style>
对应于https://github.com/vaadin/vaadin-themable-mixin/wiki/3.-Stylable-Shadow-Parts和https://vaadin.com/components/vaadin-grid/html-api/elements/Vaadin .GridElement这应该可以工作 - 但它没有......
怎么了?