我正在尝试更改AngularMaterial提供的循环进度条的颜色。我尝试使用css将其颜色更改为白色,但它不起作用,进度条的颜色保持蓝色。我做错了什么?
.centeredPLEASE_WAIT {
display: flex;
justify-content: center;
align-items: center;
color: #fff;
height: 100%;
font-size: 20px;
}
.my-circular-progress {
color: white;
border-right: #ddd;
border-left: #ddd;
border-top: #ddd;
border-bottom: #ddd;
background-color: red;
}
<div class="centeredPLEASE_WAIT">
<md-progress-circular class="my-circular-progress" md-mode="indeterminate"></md-progress-circular>
</div>
答案 0 :(得分:6)
正如您可能知道的那样,您可以通过添加角度材质类(md-warn md-accent
等)来更改进度条颜色,因为它们在演示中显示:https://material.angularjs.org/latest/demo/progressCircular
但是如果你想手动更改它,你必须更改md-progress-circular
元素内的svg图像。您可以使用此选择器执行此操作:
md-progress-circular svg path { stroke: green; }
答案 1 :(得分:0)
您将需要更新以下类的CSS,如下所示。这将使颜色变成深粉色。
md-progress-circular.md-default-theme path, md-progress-circular path {
stroke:rgb(150,90,102);
}
您可以根据需要更改RGB。