mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-08-07 09:13:02 +02:00
i broke colorbox on batch manager unit + use css animations
git-svn-id: http://piwigo.org/svn/trunk@28563 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
@@ -24,13 +24,7 @@ jQuery(function(){ {* <!-- onLoad needed to wait localization loads --> *}
|
||||
});
|
||||
|
||||
{* <!-- THUMBNAILS --> *}
|
||||
$(".elementEdit img")
|
||||
.css("opacity", 0.6) // Opacity on page load
|
||||
.hover(function(){
|
||||
$(this).fadeTo("slow", 1.0); // Opacity on hover
|
||||
},function(){
|
||||
$(this).fadeTo("slow", 0.6); // Opacity on mouseout
|
||||
});
|
||||
jQuery("a.preview-box").colorbox();
|
||||
}());
|
||||
{/footer_script}
|
||||
|
||||
|
||||
@@ -225,6 +225,12 @@ FIELDSET.elementEdit .thumb {
|
||||
display: block;
|
||||
float: right;
|
||||
text-align: center;
|
||||
opacity: 0.6;
|
||||
-webkit-transition:opacity 400ms ease;
|
||||
transition:opacity 400ms ease;
|
||||
}
|
||||
FIELDSET.elementEdit .thumb:hover {
|
||||
opacity:1;
|
||||
}
|
||||
|
||||
TABLE.doubleSelect {
|
||||
|
||||
Reference in New Issue
Block a user