diff --git a/wp-content/themes/score/lib/scripts/custom.php b/wp-content/themes/score/lib/scripts/custom.php index 2885f4b..ca652ed 100644 --- a/wp-content/themes/score/lib/scripts/custom.php +++ b/wp-content/themes/score/lib/scripts/custom.php @@ -7,6 +7,15 @@ jQuery(document).ready(function(){ _fullscreen = jQuery('.controls_fullscreen').children('img'); _srcimg = _fullscreen.attr('src'); + _fullscreen.hover( + function() { + _fullscreen.attr('src', _srcimg.replace('fullscreen.png', 'fullscreen_on.png')); + }, + function() { + _fullscreen.attr('src', _srcimg.replace('fullscreen_on.png', 'fullscreen.png')); + } + ); + _fullscreen.bind('click', function(){ if (jQuery('#the_slider').hasClass('fullscreen_div')) { jQuery('#the_slider').removeClass('fullscreen_div'); diff --git a/wp-content/themes/score/lib/scripts/videoslider/css/videoGallery.css b/wp-content/themes/score/lib/scripts/videoslider/css/videoGallery.css index 405298c..3986bb1 100644 --- a/wp-content/themes/score/lib/scripts/videoslider/css/videoGallery.css +++ b/wp-content/themes/score/lib/scripts/videoslider/css/videoGallery.css @@ -135,13 +135,13 @@ height:40px; right:0px; top:0px; - background-color: rgb(0, 0, 0); - background-color: rgba(0, 0, 0, 0.6); + /*background-color: rgb(0, 0, 0); + background-color: rgba(0, 0, 0, 0.6);*/ } #componentWrapper .controls_fullscreen { /*left: 0px !important;*/ - bottom: 36px !important; + bottom: 70px !important; top: auto !important; } diff --git a/wp-content/themes/score/lib/scripts/videoslider/data/icons/fullscreen.png b/wp-content/themes/score/lib/scripts/videoslider/data/icons/fullscreen.png index ed2270c..40c7b5c 100644 Binary files a/wp-content/themes/score/lib/scripts/videoslider/data/icons/fullscreen.png and b/wp-content/themes/score/lib/scripts/videoslider/data/icons/fullscreen.png differ diff --git a/wp-content/themes/score/lib/scripts/videoslider/data/icons/fullscreen_exit.png b/wp-content/themes/score/lib/scripts/videoslider/data/icons/fullscreen_exit.png index 251fa7a..a1a851e 100644 Binary files a/wp-content/themes/score/lib/scripts/videoslider/data/icons/fullscreen_exit.png and b/wp-content/themes/score/lib/scripts/videoslider/data/icons/fullscreen_exit.png differ diff --git a/wp-content/themes/score/lib/scripts/videoslider/data/icons/fullscreen_on.png b/wp-content/themes/score/lib/scripts/videoslider/data/icons/fullscreen_on.png new file mode 100644 index 0000000..fe37efa Binary files /dev/null and b/wp-content/themes/score/lib/scripts/videoslider/data/icons/fullscreen_on.png differ