From ee6d454e214311ffb661fd6ae21c29434ca83a86 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Beno=C3=AEt=20Dien?= Date: Tue, 2 Nov 2010 17:33:28 +0100 Subject: [PATCH] When hovering on an image, lighten the shadow --- data/booh/themes/gradient/root/booh.css | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/data/booh/themes/gradient/root/booh.css b/data/booh/themes/gradient/root/booh.css index c757acf..7198481 100644 --- a/data/booh/themes/gradient/root/booh.css +++ b/data/booh/themes/gradient/root/booh.css @@ -97,15 +97,15 @@ td { -moz-box-shadow: 0px 16px 60px rgba(0,0,0,0.25); -webkit-box-shadow: 0px 16px 60px rgba(0,0,0,0.25); box-shadow: 0px 16px 60px rgba(0,0,0,0.25); - -webkit-transition: -webkit-transform 0.25s linear; - -moz-transition: -moz-transform 0.25s linear; - transition: transform 0.25s linear; + -webkit-transition: all 0.25s linear; + -moz-transition: all 0.25s linear; + transition: all 0.25s linear; } .image img:hover, .thumbnail_video img:hover, .thumbnail_image img:hover { - -moz-box-shadow: 0px 16px 60px rgba(0,0,0,0.35); - -webkit-box-shadow: 0px 16px 60px rgba(0,0,0,0.35); - box-shadow: 0px 16px 60px rgba(0,0,0,0.35); + -moz-box-shadow: 0px 16px 60px rgba(0,0,0,0.1); + -webkit-box-shadow: 0px 16px 60px rgba(0,0,0,0.1); + box-shadow: 0px 16px 60px rgba(0,0,0,0.1); -webkit-transform: rotate(-1deg) scale(1.05); -moz-transform: rotate(-1deg) scale(1.05); transform: rotate(-1deg) scale(1.05); -- 2.21.3