Changeset 145389
- Timestamp:
- 03/29/2021 06:11:13 PM (5 years ago)
- Location:
- fluida/1.8.6.2
- Files:
-
- 4 edited
- 1 copied
-
. (copied) (copied from fluida/1.8.6.1)
-
functions.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
resources/js/frontend.js (modified) (1 diff)
-
style.css (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
fluida/1.8.6.2/functions.php
r145388 r145389 11 11 // theme identification and options management - do NOT edit unless you know what you are doing 12 12 define ( "_CRYOUT_THEME_NAME", "fluida" ); 13 define ( "_CRYOUT_THEME_VERSION", "1.8.6. 1" );13 define ( "_CRYOUT_THEME_VERSION", "1.8.6.2" ); 14 14 15 15 // prefixes for theme options and functions -
fluida/1.8.6.2/readme.txt
r145388 r145389 4 4 Requires at least: 4.5 5 5 Tested up to: 5.7 6 Stable tag: 1.8.6. 16 Stable tag: 1.8.6.2 7 7 Requires PHP: 5.6 8 8 License: GPLv3 … … 87 87 == Changelog == 88 88 89 = 1.8.6.2 = 90 *Release date - 29.03.2021* 91 92 * Fixed landing page animated featured boxes missing the overlay effect since 1.8.6 93 89 94 = 1.8.6.1 = 90 *Release date - 30.03.2021*95 *Release date - 29.03.2021* 91 96 92 97 * Added workaround for incorrect alignment on centered block butons with WordPress 5.7 -
fluida/1.8.6.2/resources/js/frontend.js
r145388 r145389 325 325 326 326 $el.on( 'mouseenter', function() { 327 $this.removeClass( 'in-direction-left in-direction-right in-direction-up in-direction-down' +327 jQuery( this ).removeClass( 'in-direction-left in-direction-right in-direction-up in-direction-down' + 328 328 ' out-direction-left out-direction-right out-direction-up out-direction-down' ); 329 $this.addClass( 'in-' + $output );329 jQuery( this ).addClass( 'in-' + $output ); 330 330 return; 331 331 } ); 332 332 333 333 $el.on( 'mouseleave', function() { 334 $this.removeClass( 'in-direction-left in-direction-right in-direction-up in-direction-down ' +334 jQuery( this ).removeClass( 'in-direction-left in-direction-right in-direction-up in-direction-down ' + 335 335 ' out-direction-left out-direction-right out-direction-up out-direction-down' ); 336 $this.addClass( 'out-' + $output );336 jQuery( this ).addClass( 'out-' + $output ); 337 337 return; 338 338 } ); -
fluida/1.8.6.2/style.css
r145388 r145389 5 5 Author: Cryout Creations 6 6 Author URI: http://www.cryoutcreations.eu 7 Version: 1.8.6. 17 Version: 1.8.6.2 8 8 Requires at least: 4.5 9 9 Tested up to: 5.7
Note: See TracChangeset
for help on using the changeset viewer.