作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我尝试通过 shared-styles.html (webapp/frontend/styles) 更改我的 Vaadin Flow Grid header 的背景颜色:
<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这应该有效 - 但它不......
怎么了?
最佳答案
<dom-module>
不应该在 <style>
里面或 <custom-style>
标签,但在它旁边。另外,背景色好像默认会被覆盖,所以你可以尝试添加!important
之后进行测试。对我来说设置 th[part~="header-cell"]
看起来足够具体,不会被覆盖。
<custom-style>
<style>
</style>
</custom-style>
<dom-module id="my-grid" theme-for="vaadin-grid">
<template>
<style>
th[part~="header-cell"] {
background-color: darkorange;
}
</style>
</template>
</dom-module>
关于java - VaadinFlow 中的样式网格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51749037/
我尝试通过 shared-styles.html (webapp/frontend/styles) 更改我的 Vaadin Flow Grid header 的背景颜色:
我是一名优秀的程序员,十分优秀!