새로운 개인 메시지에서 페이드를 비활성화할 수 없습니다

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:)

Hello Aston,

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

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