无法禁用新 PM帖子的淡入淡出效果

我们通常这样做,但现在不起作用:

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

有什么建议吗?

(如果还能有一个选项保留标准帖子样式就更好了 :blush:

你好,Aston,

如果你想禁用动画,可以尝试这个方法。:slight_smile:

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