我有以下HTML:
我只是想添加stroke
属性来改变进度环的颜色。这个圆圈是由第三方库生成的,我无法控制它。我已经尝试了四个小时不同的选择,但没有一个工作:
svg::part(indeterminate-indicator-1) {
color: blue;
opacity: 1;
}
slot[name='indeterminate'] {
color: black !important;
opacity: 1;
}
slot[name=indeterminate] {
width: 400px;
stroke: black !important;
white-space: nowrap !important;
overflow: hidden !important;
text-overflow: ellipsis !important;
}
div > span > fluent-progress-ring[_bl_b6bfd787-f5d6-4b24-8906-74e2ca992e1c] > slot[name='indeterminate'] {
width: 400px;
stroke: black !important;
white-space: nowrap !important;
overflow: hidden !important;
text-overflow: ellipsis !important;
}
你知道哪里出了问题吗?是否可以在阴影根中更改样式?
提前感谢!
1条答案
按热度按时间xam8gpfp1#
经过多次尝试后,得到了它的工作:
fluent-progress-ring::part(indeterminate-indicator-1) { stroke: blue !important;}