我正在尝试使用 ng-bootstrap 组件实现引导进度条。该文档使用指令“type”提供了 4 种着色类型,该指令只能是 4 种之一:“success”、“info”、“warning”或“danger”。(https://ng-bootstrap.github.io/#/components/progressbar)
我确保在我的变量 sass 文件夹中自定义了所有颜色,以覆盖引导程序的默认变量。
然而,当使用主要时,该条显示为蓝色。
进度条码:
<ngb-progressbar type="primary" [value]="25"></ngb-progressbar>
CSS 试验:
//Doesn't work - no effect what so ever - this style is placed in a global stylesheet in order to have access to the progress bar.
.progress.progress-primary{
background-color: yellow;
}
有关如何更改该颜色的任何建议?