KSES: Allow position-related CSS properties.
Adds support for the following CSS properties considered safe for inline CSS: * `position` * `top` * `right` * `bottom` * `left` * `z-index` References: * [https://github.com/WordPress/gutenberg/pull/46142 Gutenberg PR 46142]. Follow-up to [54117]. Props andrewserong, mukesh27. Fixes #57504. Built from https://develop.svn.wordpress.org/trunk@55184 git-svn-id: http://core.svn.wordpress.org/trunk@54717 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
379bec8ea6
commit
1056e0175c
|
@ -2277,6 +2277,7 @@ function kses_init() {
|
||||||
* nested `var()` values, and assigning values to CSS variables.
|
* nested `var()` values, and assigning values to CSS variables.
|
||||||
* Added support for `object-fit`, `gap`, `column-gap`, `row-gap`, and `flex-wrap`.
|
* Added support for `object-fit`, `gap`, `column-gap`, `row-gap`, and `flex-wrap`.
|
||||||
* Extended `margin-*` and `padding-*` support for logical properties.
|
* Extended `margin-*` and `padding-*` support for logical properties.
|
||||||
|
* @since 6.2.0 Added support for `position`, `top`, `right`, `bottom`, `left` and `z-index` position CSS properties.
|
||||||
*
|
*
|
||||||
* @param string $css A string of CSS rules.
|
* @param string $css A string of CSS rules.
|
||||||
* @param string $deprecated Not used.
|
* @param string $deprecated Not used.
|
||||||
|
@ -2438,6 +2439,13 @@ function safecss_filter_attr( $css, $deprecated = '' ) {
|
||||||
'overflow',
|
'overflow',
|
||||||
'vertical-align',
|
'vertical-align',
|
||||||
|
|
||||||
|
'position',
|
||||||
|
'top',
|
||||||
|
'right',
|
||||||
|
'bottom',
|
||||||
|
'left',
|
||||||
|
'z-index',
|
||||||
|
|
||||||
// Custom CSS properties.
|
// Custom CSS properties.
|
||||||
'--*',
|
'--*',
|
||||||
)
|
)
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '6.2-alpha-55183';
|
$wp_version = '6.2-alpha-55184';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
Loading…
Reference in New Issue