Version Description
Release Date: April 8th, 2022 * Fix: Possible issue where vertically aligning section blocks could break layout.
Download this release
Release Info
Developer | britner |
Plugin | Kadence Blocks – Gutenberg Page Builder Toolkit |
Version | 2.4.1 |
Comparing to | |
See all releases |
Code changes from version 2.4.2 to 2.4.1
- dist/class-kadence-blocks-frontend.php +0 -6
- kadence-blocks.php +2 -2
- readme.txt +1 -5
dist/class-kadence-blocks-frontend.php
CHANGED
@@ -9060,8 +9060,6 @@ class Kadence_Blocks_Frontend {
|
|
9060 |
$css->add_property( 'justify-content', $align );
|
9061 |
$css->add_property( 'flex-direction', 'column' );
|
9062 |
$css->add_property( 'display', 'flex' );
|
9063 |
-
$css->set_selector( '.kadence-column' . $unique_id . ' > .kt-inside-inner-col > .aligncenter' );
|
9064 |
-
$css->add_property( 'width', '100%' );
|
9065 |
}
|
9066 |
}
|
9067 |
// inside of Row.
|
@@ -9185,8 +9183,6 @@ class Kadence_Blocks_Frontend {
|
|
9185 |
if ( $desktop_direction === 'vertical' && ! empty( $attr['verticalAlignment'] ) ) {
|
9186 |
$css->set_selector( '.kadence-column' . $unique_id . ' > .kt-inside-inner-col' );
|
9187 |
$css->add_property( 'justify-content', 'inherit' );
|
9188 |
-
$css->set_selector( '.kadence-column' . $unique_id . ' > .kt-inside-inner-col > .aligncenter' );
|
9189 |
-
$css->add_property( 'width', 'auto' );
|
9190 |
}
|
9191 |
// If desktop vertical lets add the horizontal css.
|
9192 |
$css->set_selector( '.kadence-column' . $unique_id . ' > .kt-inside-inner-col' );
|
@@ -9318,8 +9314,6 @@ class Kadence_Blocks_Frontend {
|
|
9318 |
if ( $desktop_direction === 'vertical' && ! empty( $attr['verticalAlignment'] ) ) {
|
9319 |
$css->set_selector( '.kadence-column' . $unique_id . ' > .kt-inside-inner-col' );
|
9320 |
$css->add_property( 'justify-content', 'inherit' );
|
9321 |
-
$css->set_selector( '.kadence-column' . $unique_id . ' > .kt-inside-inner-col > .aligncenter' );
|
9322 |
-
$css->add_property( 'width', 'auto' );
|
9323 |
}
|
9324 |
// If desktop vertical lets add the horizontal css.
|
9325 |
$css->set_selector( '.kadence-column' . $unique_id . ' > .kt-inside-inner-col' );
|
9060 |
$css->add_property( 'justify-content', $align );
|
9061 |
$css->add_property( 'flex-direction', 'column' );
|
9062 |
$css->add_property( 'display', 'flex' );
|
|
|
|
|
9063 |
}
|
9064 |
}
|
9065 |
// inside of Row.
|
9183 |
if ( $desktop_direction === 'vertical' && ! empty( $attr['verticalAlignment'] ) ) {
|
9184 |
$css->set_selector( '.kadence-column' . $unique_id . ' > .kt-inside-inner-col' );
|
9185 |
$css->add_property( 'justify-content', 'inherit' );
|
|
|
|
|
9186 |
}
|
9187 |
// If desktop vertical lets add the horizontal css.
|
9188 |
$css->set_selector( '.kadence-column' . $unique_id . ' > .kt-inside-inner-col' );
|
9314 |
if ( $desktop_direction === 'vertical' && ! empty( $attr['verticalAlignment'] ) ) {
|
9315 |
$css->set_selector( '.kadence-column' . $unique_id . ' > .kt-inside-inner-col' );
|
9316 |
$css->add_property( 'justify-content', 'inherit' );
|
|
|
|
|
9317 |
}
|
9318 |
// If desktop vertical lets add the horizontal css.
|
9319 |
$css->set_selector( '.kadence-column' . $unique_id . ' > .kt-inside-inner-col' );
|
kadence-blocks.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* Description: Advanced Page Building Blocks for Gutenberg. Create custom column layouts, backgrounds, dual buttons, icons etc.
|
6 |
* Author: Kadence WP
|
7 |
* Author URI: https://www.kadencewp.com
|
8 |
-
* Version: 2.4.
|
9 |
* Text Domain: kadence-blocks
|
10 |
* License: GPL2+
|
11 |
* License URI: https://www.gnu.org/licenses/gpl-2.0.txt
|
@@ -20,7 +20,7 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|
20 |
|
21 |
define( 'KADENCE_BLOCKS_PATH', realpath( plugin_dir_path( __FILE__ ) ) . DIRECTORY_SEPARATOR );
|
22 |
define( 'KADENCE_BLOCKS_URL', plugin_dir_url( __FILE__ ) );
|
23 |
-
define( 'KADENCE_BLOCKS_VERSION', '2.4.
|
24 |
/**
|
25 |
* Add a check before redirecting
|
26 |
*/
|
5 |
* Description: Advanced Page Building Blocks for Gutenberg. Create custom column layouts, backgrounds, dual buttons, icons etc.
|
6 |
* Author: Kadence WP
|
7 |
* Author URI: https://www.kadencewp.com
|
8 |
+
* Version: 2.4.1
|
9 |
* Text Domain: kadence-blocks
|
10 |
* License: GPL2+
|
11 |
* License URI: https://www.gnu.org/licenses/gpl-2.0.txt
|
20 |
|
21 |
define( 'KADENCE_BLOCKS_PATH', realpath( plugin_dir_path( __FILE__ ) ) . DIRECTORY_SEPARATOR );
|
22 |
define( 'KADENCE_BLOCKS_URL', plugin_dir_url( __FILE__ ) );
|
23 |
+
define( 'KADENCE_BLOCKS_VERSION', '2.4.1' );
|
24 |
/**
|
25 |
* Add a check before redirecting
|
26 |
*/
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Tags: gutenberg, blocks, page builder, google fonts, dual buttons, svg icons, ed
|
|
4 |
Donate link: https://www.kadencewp.com/about-us/
|
5 |
Requires at least: 5.9
|
6 |
Tested up to: 5.9
|
7 |
-
Stable tag: 2.4.
|
8 |
License: GPLv2 or later
|
9 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -81,10 +81,6 @@ Install the plugin into the `/wp-content/plugins/` folder, and activate it.
|
|
81 |
|
82 |
== Changelog ==
|
83 |
|
84 |
-
= 2.4.2 =
|
85 |
-
Release Date: April 8th, 2022
|
86 |
-
* Fix: Possible issue with nesting rows inside of flex areas.
|
87 |
-
|
88 |
= 2.4.1 =
|
89 |
Release Date: April 8th, 2022
|
90 |
* Fix: Possible issue where vertically aligning section blocks could break layout.
|
4 |
Donate link: https://www.kadencewp.com/about-us/
|
5 |
Requires at least: 5.9
|
6 |
Tested up to: 5.9
|
7 |
+
Stable tag: 2.4.0
|
8 |
License: GPLv2 or later
|
9 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
81 |
|
82 |
== Changelog ==
|
83 |
|
|
|
|
|
|
|
|
|
84 |
= 2.4.1 =
|
85 |
Release Date: April 8th, 2022
|
86 |
* Fix: Possible issue where vertically aligning section blocks could break layout.
|