1. koodry

    koodry - Feb 16, 2016 New Member

    Credit
    Point
    Hello, ".any:hover" automatically deleted from the final code. How i can turn off this filter?
     
    Loading...
  2. Brivium

    Brivium - Feb 18, 2016 XenForo Services Staff Member

    Credit
    Point
    Hello,

    You can follow this instruction to get hover effect back.

    1. Open file library/Brivium/QuickCreateThread/EventListeners/Helpers.php, find and remove
    Code:
    public static function replaceContent($content)
        {
            return str_replace(':hover',':active', $content);
        }
    2. Open file library/Brivium/QuickCreateThread/EventListeners/Listener.php, find and remove
    Code:
    if ($show)
        {
            $content = Brivium_Tellurium_EventListeners_Helpers::replaceContent($content);
        }
    Regards,
     
    #2