# How to remove the fade-out effect when you enter a topic

**URL:** https://meta.discourse.org/t/how-to-remove-the-fade-out-effect-when-you-enter-a-topic/123276
**Category:** Support
**Created:** [July 18, 2019, 10:11am UTC](https://meta.discourse.org/t/how-to-remove-the-fade-out-effect-when-you-enter-a-topic/123276 "2019-07-18T10:11:58Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![aatishrkamble](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/aatishrkamble/32/140103_2.png) [@aatishrkamble](https://meta.discourse.org/u/aatishrkamble)
#### Post date: [July 18, 2019, 10:11am UTC](https://meta.discourse.org/t/how-to-remove-the-fade-out-effect-when-you-enter-a-topic/123276/1 "2019-07-18T10:11:58Z")

</div>

I am trying to find the CSS target to disable the fade-out effect when a user enters the topic thread. In Meta, you can see the blue fade-out effect when you try to enter a thread. Here’s a video link for better understanding: [Screen Recording](https://www.loom.com/share/f56c9165dbb74618b116428d261f9c93)

---

<div class="post-metadata">

### Author: ![Arkshine](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/arkshine/32/298682_2.png) [@Arkshine](https://meta.discourse.org/u/Arkshine)
#### Post date: [July 18, 2019, 10:49am UTC](https://meta.discourse.org/t/how-to-remove-the-fade-out-effect-when-you-enter-a-topic/123276/2 "2019-07-18T10:49:26Z")

</div>

The CSS responsible for this effect is `highlighted`.  
This class is dynamically added to the target element and removed once the animation ends.

Dirty fix could be:

```CSS
.highlighted {
    animation: none !important;
}

```

Of course, feel free to prepend any element if you want a specific context.

---

<div class="post-metadata">

### Author: ![system](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/system/32/443519_2.png) [@system](https://meta.discourse.org/u/system)
#### Post date: [August 17, 2019, 10:49am UTC](https://meta.discourse.org/t/how-to-remove-the-fade-out-effect-when-you-enter-a-topic/123276/3 "2019-08-17T10:49:30Z")

</div>

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