Can't disable fade on new PM posts

We’d normally do this but it’s not working:

.archetype-private_message .highlighted {
  animation: none !important;
}

Any ideas?

(It would be nice if we could just select an option to keep the standard post style too if possible :blush:)

1 Like

Hello Aston,

If you want to disable the animation try this. :slight_smile:

.archetype-private_message {
  .topic-body.highlighted {
    .cooked {
      animation: none !important;
    }
  }
}
3 Likes

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.