Fixed Invalid change in public.css in 1.5.20

Arty

Well-known member
Affected version
1.5.20
New code in public.css in 1.5.20:
Code:
.bottomFixer
{
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 800;
    pointer-events: none;

    > *
    {
        pointer-events: auto;
    }
}

.bottomFixer > *
{
    pointer-events: auto;
}
This nested css block is invalid because 1.5.20 doesn't have LESS parser:
Code:
    > *
    {
        pointer-events: auto;
    }
 
Was searching whole day for this :p I am using the NixFifty AMP add-on and was giving errors in google AMP test tools. Removed the block and no more errors.
 
Top Bottom