我在我的应用程序上使用了 ag-Grid,并且使用默认主题 (ag-theme-balham) 破坏了它。
在一个特定的组件上,我想更改标题背景颜色,但是当我在我的 component.scss 文件中添加 CSS 时,没有任何反应。
我在 angular-cli.json 文件中添加了 ag-Grid css
"styles": [
"../node_modules/font-awesome/scss/font-awesome.scss",
"../node_modules/ag-grid/dist/styles/ag-grid.css",
"../node_modules/ag-grid/dist/styles/ag-theme-balham.css",
"styles.scss"
],
在 component.scss 文件中,我有以下 CSS
.ag-theme-balham .ag-header {
background-color: #e0e0e0;
}
但是什么也没有发生,并且颜色不会应用于标题。