I am struggling with the HTML code below:
https://i.sstatic.net/MY3jx.png
My goal is to modify the stroke
property in order to alter the color of a progress ring. Unfortunately, the circle is created using a third-party library and I do not have the ability to directly edit it. Despite spending hours attempting various options, none of my solutions seem to be effective:
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;
}
Do you have any insights on what may be causing this issue? Is it feasible to customize the style within a shadow root?
Thank you in advance!