Ver Mensaje Individual
  #2 (permalink)  
Antiguo 10/08/2015, 22:25
Avatar de AngelKrak
AngelKrak
 
Fecha de Ingreso: noviembre-2014
Mensajes: 917
Antigüedad: 9 años, 5 meses
Puntos: 91
Respuesta: Bug con overflow y hover en chrome

el problema lo tienes aqui .portafolio article:hover .bw-wrap, cámbialo por .portafolio article:hover

Asi seria:
Código CSS:
Ver original
  1. .portafolio article:hover{
  2.     -webkit-transition: all 300ms linear;
  3.     -moz-transition: all 300ms linear;
  4.     -ms-transition: all 300ms linear;
  5.     -o-transition: all 300ms linear;
  6.     transition: all 300ms linear;
  7.     -webkit-filter: grayscale(0);
  8.     filter: grayscale(0);
  9. }