The theme includes styles for the spacer block for the front which appears to be unnecessary: * It adds `display: block` even though that is the default. * It removes top and bottom margin, even though this is not needed in the post content because of collapsing margins between blocks. * It uses a custom CSS property to force a specific height on mobile. This affects the patterns in the theme negatively. It also causes styling problems: * When the spacer block has a height set to `0` in the navigation block, as the theme forces this to be larger on smaller screens. * When the block is horizontal. Horizontal was not an option when this style was added. Consequences of removal: * Removing the use of the custom CSS property will cause a style change for websites that have adjusted the spacing property. Follow-up to [49216], [49574]. Props poena, mukesh27. Fixes #56222. Built from https://develop.svn.wordpress.org/trunk@54103 git-svn-id: http://core.svn.wordpress.org/trunk@53662 1a063a9b-81f0-0310-95a4-ce76da25c4cd
48 lines
939 B
PHP
48 lines
939 B
PHP
<?php
|
|
/**
|
|
* WordPress Version
|
|
*
|
|
* Contains version information for the current WordPress release.
|
|
*
|
|
* @package WordPress
|
|
* @since 1.2.0
|
|
*/
|
|
|
|
/**
|
|
* The WordPress version string.
|
|
*
|
|
* Holds the current version number for WordPress core. Used to bust caches
|
|
* and to enable development mode for scripts when running from the /src directory.
|
|
*
|
|
* @global string $wp_version
|
|
*/
|
|
$wp_version = '6.1-alpha-54103';
|
|
|
|
/**
|
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
|
*
|
|
* @global int $wp_db_version
|
|
*/
|
|
$wp_db_version = 53496;
|
|
|
|
/**
|
|
* Holds the TinyMCE version.
|
|
*
|
|
* @global string $tinymce_version
|
|
*/
|
|
$tinymce_version = '49110-20201110';
|
|
|
|
/**
|
|
* Holds the required PHP version.
|
|
*
|
|
* @global string $required_php_version
|
|
*/
|
|
$required_php_version = '5.6.20';
|
|
|
|
/**
|
|
* Holds the required MySQL version.
|
|
*
|
|
* @global string $required_mysql_version
|
|
*/
|
|
$required_mysql_version = '5.0';
|