XF 1.5 How remove highlight, text decoration of Thread Tools?

Can you please screenshot it how you want thread tools to look like?

Its code can be found in thread_view template.

When you hover on the Thread Tools button itself. Just want to remove the highlight color and effects. I don't want to change anything in the menu. Just the button. Thanks.
 

Attachments

  • Untitled.webp
    Untitled.webp
    2.6 KB · Views: 5
try with:
Code:
.Popup .PopupControl.PopupOpen {
    background: transparent!important;
}
.Popup .PopupControl:hover {
    background-color: transparent!important;
}
 
Top Bottom