Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ 不具合修正 ] WordPress 6.7.1 の変更の影響で カード(水平)レイアウトの画像が縦長になってしまう不具合を修正 #1202

Merged
merged 1 commit into from
Nov 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion _g2/assets/css/common.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion _g2/assets/css/common_editor.css

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions _g2/inc/vk-components/package/_scss/_vk-post-type-card.scss
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,10 @@ https://github.com/vektor-inc/vektor-wp-libraries
color:#fff;
}
}
// WordPress 6.7.1 が contain-intrinsic-size: 3000px 1500px を出力するようになたのでリセット
img:is([sizes="auto" i], [sizes^="auto," i]) {
contain-intrinsic-size: revert ;
}
}

/*-------------------------------------------*/
Expand Down
2 changes: 1 addition & 1 deletion _g2/inc/vk-components/package/class-vk-component-posts.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* VK Components Posts
*
* @package VK Component
* @version 1.6.2
* @version 1.6.3
*
* *********************** CAUTION ***********************
* The original of this file is located at:
Expand Down
2 changes: 1 addition & 1 deletion _g2/inc/vk-components/package/css/vk-components.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion _g3/assets/css/editor.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion _g3/assets/css/style-theme-json.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion _g3/assets/css/style.css

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions _g3/inc/vk-components/package/_scss/_vk-post-type-card.scss
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,10 @@ https://github.com/vektor-inc/vektor-wp-libraries
color:#fff;
}
}
// WordPress 6.7.1 が contain-intrinsic-size: 3000px 1500px を出力するようになたのでリセット
img:is([sizes="auto" i], [sizes^="auto," i]) {
contain-intrinsic-size: revert ;
}
}

/*-------------------------------------------*/
Expand Down
2 changes: 1 addition & 1 deletion _g3/inc/vk-components/package/class-vk-component-posts.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* VK Components Posts
*
* @package VK Component
* @version 1.6.2
* @version 1.6.3
*
* *********************** CAUTION ***********************
* The original of this file is located at:
Expand Down
2 changes: 1 addition & 1 deletion _g3/inc/vk-components/package/css/vk-components.css

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,8 @@ https://www.vektor-inc.co.jp/inquiry/

== Changelog ==

[ G3 / G2 ][ Bug fix ] Since WordPress 6.7.1 started outputting contain-intrinsic-size: 3000px 1500px, add a reset for this in .card.

v15.28.0
[ G3 / G2 ][ Specification Change ] Added support for the "Writing Mode" option in Typography settings for WordPress 6.7.

Expand Down
Loading