Working on customizing a theme for my blog using the Discourse engine has been quite interesting. I have noticed that every post, or "topic," loads with a blue background that quickly transitions to the main background color. You can take a look at an example here.
I was informed that this issue is caused by this CSS. In an attempt to fix it, I added the following code to my custom CSS field:
.topic-body .cooked.highlighted {
animation: none;
}
However, it seems like my solution did not work. Can anyone point out what mistakes I may have made?