By this do you mean that –
the CSS code on the Styling tab isn’t fixing anything?
the CSS code on the Styling tab isn’t updating after you sync?
If it’s #1 , here are some suggestions to deal with this issue (which appears to be an iOS 17 problem). [But if it’s #2 , we can talk about syncing issues.]
Hi there,
I have the iOS version of the app (version 24.04), and some of the dark mode styling I am using in the Desktop app is not working.
I am using the pitch accent generated by this great add-on: 148002038
It suggests adding the following style to invert the pitch accent color.
.nightMode svg.pitch {
-webkit-filter: invert(1);
filter: invert(1);
}
However it doesn’t actually work on my device. The colors remain the same.
I was able to get this working by adding the following:
…
I’d always pick SVG if I have the choice, because as XML docs they can be modified much more precisely than raster images.
In OP’s example, instead of downloading the .svg.png via right-click “Save As”, you can use the download button here to get the original SVG:
[image]
Method 1
You can paste the SVG code directly into the HTML editor of a field:
[image]
Then changing the fill color is as simple as this:
/* override inline styles with !important */
svg path {
fill: yellow !importan…
And see also:
css, ios, svg, filter
2 Likes