Version 4.3.2

This commit is contained in:
LC 2023-10-30 11:21:36 +01:00
parent 6de81123b4
commit a8dea9472f
1 changed files with 14 additions and 0 deletions

View File

@ -9,3 +9,17 @@
captionsData: "caption",
closeText: "×"
});
/* Affecte la bordure des blocs à la class galleryGalleryPicture */
$(document).ready(function(){
borderColor = "<?=$this->getData(['theme', 'block', 'borderColor'])?>";
borderRadius = "<?=$this->getdata(['theme', 'block', 'blockBorderRadius'])?>";
textColor = "<?=$this->getData(['theme', 'text', 'textColor'])?>";
linkColor = "<?=$this->getData(['theme', 'text', 'linkColor'])?>";
$(".galleryGalleryPicture").css("border","solid 1px");
$(".galleryGalleryPicture").css("border-color", borderColor);
$(".galleryGalleryPicture").css("border-radius", borderRadius);
$(".galleryGalleryName").css("color", textColor);
$(".picResized").css("color", linkColor);
});