Skip to content

Commit

Permalink
Fix Content Options elements alignment in Customizer (#40445)
Browse files Browse the repository at this point in the history
* Fix position issue in Customizer Content Options

* changelog

Committed via a GitHub action: https://github.com/Automattic/jetpack/actions/runs/12233933607

Upstream-Ref: Automattic/jetpack@966ded9
  • Loading branch information
wojtekn authored and matticbot committed Dec 9, 2024
1 parent 6e32e47 commit 2b17cd4
Show file tree
Hide file tree
Showing 9 changed files with 100 additions and 92 deletions.
60 changes: 30 additions & 30 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions vendor/automattic/jetpack-classic-theme-helper/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.7.4-alpha] - unreleased

This is an alpha version! The changes listed here are not final.

### Fixed
- Customizer: Fix spacing issue in Content Options

## [0.7.3] - 2024-12-04
### Changed
- Updated package dependencies. [#40363]
Expand Down Expand Up @@ -162,6 +169,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed
- Add wordpress folder on gitignore. [#37177]

[0.7.4-alpha]: https://github.com/Automattic/jetpack-classic-theme-helper/compare/v0.7.3...v0.7.4-alpha
[0.7.3]: https://github.com/Automattic/jetpack-classic-theme-helper/compare/v0.7.2...v0.7.3
[0.7.2]: https://github.com/Automattic/jetpack-classic-theme-helper/compare/v0.7.1...v0.7.2
[0.7.1]: https://github.com/Automattic/jetpack-classic-theme-helper/compare/v0.7.0...v0.7.1
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<?php return array('dependencies' => array('wp-polyfill'), 'version' => '7c62fa19371d3d6a5483');
<?php return array('dependencies' => array('wp-polyfill'), 'version' => '35f8da5daaf424cc8e31');

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
*/
class Main {

const PACKAGE_VERSION = '0.7.3';
const PACKAGE_VERSION = '0.7.4-alpha';

/**
* Modules to include.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ function updatePostDetails( selectors, to, hiddenClass ) {
} else {
element.style.clip = 'auto';
element.style.height = 'auto';
element.style.overflow = 'auto';
element.style.overflow = 'visible';
element.style.position = 'relative';
element.style.width = 'auto';
document.body.classList.remove( hiddenClass );
Expand Down
2 changes: 1 addition & 1 deletion vendor/automattic/jetpack-mu-wpcom/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"automattic/jetpack-assets": "^4.0.1",
"automattic/jetpack-blocks": "^3.0.1",
"automattic/jetpack-calypsoify": "^0.2.0",
"automattic/jetpack-classic-theme-helper": "^0.7.3",
"automattic/jetpack-classic-theme-helper": "^0.7.4-alpha",
"automattic/jetpack-connection": "^6.2.0-alpha",
"automattic/jetpack-masterbar": "^0.10.2",
"automattic/jetpack-redirect": "^3.0.1",
Expand Down
Loading

0 comments on commit 2b17cd4

Please sign in to comment.