Changeset 3376444
- Timestamp:
- 10/10/2025 06:58:41 PM (6 months ago)
- Location:
- kadence-blocks
- Files:
-
- 8 edited
- 1 copied
-
tags/3.5.24 (copied) (copied from kadence-blocks/trunk)
-
tags/3.5.24/includes/blocks/class-kadence-blocks-accordion-block.php (modified) (2 diffs)
-
tags/3.5.24/kadence-blocks.php (modified) (2 diffs)
-
tags/3.5.24/readme.txt (modified) (2 diffs)
-
tags/3.5.24/vendor/composer/installed.php (modified) (2 diffs)
-
trunk/includes/blocks/class-kadence-blocks-accordion-block.php (modified) (2 diffs)
-
trunk/kadence-blocks.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/vendor/composer/installed.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
kadence-blocks/tags/3.5.24/includes/blocks/class-kadence-blocks-accordion-block.php
r3375940 r3376444 194 194 $css->render_color_output( $title_styles, 'background', 'background' ); 195 195 $css->set_selector( 196 '.kt-accordion-id' . $unique_id . ' .kt-accordion-header-wrap.kt-blocks-accordion-header:hover,196 '.kt-accordion-id' . $unique_id . ' > .kt-accordion-inner-wrap > .wp-block-kadence-pane > .kt-accordion-header-wrap > .kt-blocks-accordion-header:hover, 197 197 body:not(.hide-focus-outline) .kt-accordion-id' . $unique_id . ' .kt-blocks-accordion-header:focus-visible' 198 198 ); … … 226 226 } 227 227 // Active styles. 228 //adding a bit of extra specificity to the active styles to override the non-active focus-visible styles 229 $css->set_selector( '.kt-accordion-id' . $unique_id . ' .kt-accordion-header-wrap .kt-blocks-accordion-header:focus-visible, .kt-accordion-id' . $unique_id . ' .kt-accordion-header-wrap .kt-blocks-accordion-header.kt-accordion-panel-active.kt-accordion-panel-active' ); 228 $css->set_selector( 229 '.kt-accordion-id' . $unique_id . ' .kt-accordion-header-wrap .kt-blocks-accordion-header:focus-visible, 230 .kt-accordion-id' . $unique_id . ' > .kt-accordion-inner-wrap > .wp-block-kadence-pane > .kt-accordion-header-wrap > .kt-blocks-accordion-header.kt-accordion-panel-active' 231 ); 230 232 $css->render_color_output( $title_styles, 'colorActive', 'color' ); 231 233 $css->render_color_output( $title_styles, 'backgroundActive', 'background' ); -
kadence-blocks/tags/3.5.24/kadence-blocks.php
r3375940 r3376444 6 6 * Author: Kadence WP 7 7 * Author URI: https://www.kadencewp.com 8 * Version: 3.5.2 38 * Version: 3.5.24 9 9 * Requires PHP: 7.4 10 10 * Text Domain: kadence-blocks … … 21 21 define( 'KADENCE_BLOCKS_PATH', realpath( plugin_dir_path( __FILE__ ) ) . DIRECTORY_SEPARATOR ); 22 22 define( 'KADENCE_BLOCKS_URL', plugin_dir_url( __FILE__ ) ); 23 define( 'KADENCE_BLOCKS_VERSION', '3.5.2 3' );23 define( 'KADENCE_BLOCKS_VERSION', '3.5.24' ); 24 24 25 25 require_once plugin_dir_path( __FILE__ ) . 'vendor/vendor-prefixed/autoload.php'; -
kadence-blocks/tags/3.5.24/readme.txt
r3375940 r3376444 4 4 Donate link: https://www.kadencewp.com/about-us/ 5 5 Requires at least: 6.6 6 Tested up to: 6.8. 27 Stable tag: 3.5.2 36 Tested up to: 6.8.3 7 Stable tag: 3.5.24 8 8 Requires PHP: 7.4 9 9 License: GPLv2 or later … … 174 174 175 175 == Changelog == 176 = 3.5.24 = 177 Release Date: 10th October 2025 178 * Fix: issue with accordion heading style active and hover selectors. 179 176 180 = 3.5.23 = 177 181 Release Date: 9th October 2025 -
kadence-blocks/tags/3.5.24/vendor/composer/installed.php
r3375940 r3376444 2 2 'root' => array( 3 3 'name' => 'kadencewp/kadence-blocks', 4 'pretty_version' => '3.5.2 3',5 'version' => '3.5.2 3.0',6 'reference' => ' 7402c472c73f6dbcdb84baf8bba9131d2fa2fbcc',4 'pretty_version' => '3.5.24', 5 'version' => '3.5.24.0', 6 'reference' => 'dcddb936d47ff2c733098b317b570cd2b3221e8d', 7 7 'type' => 'wordpress-plugin', 8 8 'install_path' => __DIR__ . '/../../', … … 48 48 ), 49 49 'kadencewp/kadence-blocks' => array( 50 'pretty_version' => '3.5.2 3',51 'version' => '3.5.2 3.0',52 'reference' => ' 7402c472c73f6dbcdb84baf8bba9131d2fa2fbcc',50 'pretty_version' => '3.5.24', 51 'version' => '3.5.24.0', 52 'reference' => 'dcddb936d47ff2c733098b317b570cd2b3221e8d', 53 53 'type' => 'wordpress-plugin', 54 54 'install_path' => __DIR__ . '/../../', -
kadence-blocks/trunk/includes/blocks/class-kadence-blocks-accordion-block.php
r3375940 r3376444 194 194 $css->render_color_output( $title_styles, 'background', 'background' ); 195 195 $css->set_selector( 196 '.kt-accordion-id' . $unique_id . ' .kt-accordion-header-wrap.kt-blocks-accordion-header:hover,196 '.kt-accordion-id' . $unique_id . ' > .kt-accordion-inner-wrap > .wp-block-kadence-pane > .kt-accordion-header-wrap > .kt-blocks-accordion-header:hover, 197 197 body:not(.hide-focus-outline) .kt-accordion-id' . $unique_id . ' .kt-blocks-accordion-header:focus-visible' 198 198 ); … … 226 226 } 227 227 // Active styles. 228 //adding a bit of extra specificity to the active styles to override the non-active focus-visible styles 229 $css->set_selector( '.kt-accordion-id' . $unique_id . ' .kt-accordion-header-wrap .kt-blocks-accordion-header:focus-visible, .kt-accordion-id' . $unique_id . ' .kt-accordion-header-wrap .kt-blocks-accordion-header.kt-accordion-panel-active.kt-accordion-panel-active' ); 228 $css->set_selector( 229 '.kt-accordion-id' . $unique_id . ' .kt-accordion-header-wrap .kt-blocks-accordion-header:focus-visible, 230 .kt-accordion-id' . $unique_id . ' > .kt-accordion-inner-wrap > .wp-block-kadence-pane > .kt-accordion-header-wrap > .kt-blocks-accordion-header.kt-accordion-panel-active' 231 ); 230 232 $css->render_color_output( $title_styles, 'colorActive', 'color' ); 231 233 $css->render_color_output( $title_styles, 'backgroundActive', 'background' ); -
kadence-blocks/trunk/kadence-blocks.php
r3375940 r3376444 6 6 * Author: Kadence WP 7 7 * Author URI: https://www.kadencewp.com 8 * Version: 3.5.2 38 * Version: 3.5.24 9 9 * Requires PHP: 7.4 10 10 * Text Domain: kadence-blocks … … 21 21 define( 'KADENCE_BLOCKS_PATH', realpath( plugin_dir_path( __FILE__ ) ) . DIRECTORY_SEPARATOR ); 22 22 define( 'KADENCE_BLOCKS_URL', plugin_dir_url( __FILE__ ) ); 23 define( 'KADENCE_BLOCKS_VERSION', '3.5.2 3' );23 define( 'KADENCE_BLOCKS_VERSION', '3.5.24' ); 24 24 25 25 require_once plugin_dir_path( __FILE__ ) . 'vendor/vendor-prefixed/autoload.php'; -
kadence-blocks/trunk/readme.txt
r3375940 r3376444 4 4 Donate link: https://www.kadencewp.com/about-us/ 5 5 Requires at least: 6.6 6 Tested up to: 6.8. 27 Stable tag: 3.5.2 36 Tested up to: 6.8.3 7 Stable tag: 3.5.24 8 8 Requires PHP: 7.4 9 9 License: GPLv2 or later … … 174 174 175 175 == Changelog == 176 = 3.5.24 = 177 Release Date: 10th October 2025 178 * Fix: issue with accordion heading style active and hover selectors. 179 176 180 = 3.5.23 = 177 181 Release Date: 9th October 2025 -
kadence-blocks/trunk/vendor/composer/installed.php
r3375940 r3376444 2 2 'root' => array( 3 3 'name' => 'kadencewp/kadence-blocks', 4 'pretty_version' => '3.5.2 3',5 'version' => '3.5.2 3.0',6 'reference' => ' 7402c472c73f6dbcdb84baf8bba9131d2fa2fbcc',4 'pretty_version' => '3.5.24', 5 'version' => '3.5.24.0', 6 'reference' => 'dcddb936d47ff2c733098b317b570cd2b3221e8d', 7 7 'type' => 'wordpress-plugin', 8 8 'install_path' => __DIR__ . '/../../', … … 48 48 ), 49 49 'kadencewp/kadence-blocks' => array( 50 'pretty_version' => '3.5.2 3',51 'version' => '3.5.2 3.0',52 'reference' => ' 7402c472c73f6dbcdb84baf8bba9131d2fa2fbcc',50 'pretty_version' => '3.5.24', 51 'version' => '3.5.24.0', 52 'reference' => 'dcddb936d47ff2c733098b317b570cd2b3221e8d', 53 53 'type' => 'wordpress-plugin', 54 54 'install_path' => __DIR__ . '/../../',
Note: See TracChangeset
for help on using the changeset viewer.