gpt4 book ai didi

java - VaadinFlow 中的样式网格

转载 作者:行者123 更新时间:2023-11-29 04:16:57 25 4
gpt4 key购买 nike

我尝试通过 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-Partshttps://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/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com