roccomuso/iot-433mhz

Weird Siren image behaviour on menu button hover event.

Closed this issue · 3 comments

The bug happens especially when the siren card is in the 2 column.

menu and siren bug

bootstrap.css:3709 --> z-index: 2

If removed, the siren no more disappear.

Another better fix:

  • Add to the .siren class:

    position: relative;
    z-index: 4;
    

Partially Fixed with 80b9705 .

Then noticed that seldomly occurs again.
Bug Related to this: http://stackoverflow.com/questions/6953497/webkit-transform-overwrites-z-index-ordering-in-chrome-13

Definetly fixed adding:

-webkit-transform: translate3d(0px, 0px, 0px);

b2ba71d