Skip to content

Commit 06dbd49

Browse files
committed
merge trunk
2 parents a05f905 + 1846e1b commit 06dbd49

File tree

13 files changed

+495
-12
lines changed

13 files changed

+495
-12
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,13 @@ item (Added, Changed, Depreciated, Removed, Fixed, Security).
77
## [2026.01]
88

99
- Fixed: Removed top margin from spacer block
10+
- Added: Yoast Duplicate Post plugin v4.5 for easier content duplication in the editor.
11+
- Updated: Login logo styling
1012

1113
## [2025.12]
1214

1315
- Fixed: Image Card & Image Overlay Card blocks now properly pass animation attributes to the animation helper class.
16+
- Added: Inline Notice Block
1417
- Updated: Logo Marquee block now has updated padding between images & contains a range selector to adjust the marquee speed as needed.
1518
- Added: Caption elements in media blocks (Image, Video, Embed) are now contained to the content width.
1619
- Updated: Cleaned up core Details block with comments, consistent underline styling, and reordered `theme.json` styles for clarity.

composer.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,7 @@
109109
"vlucas/phpdotenv": "^5.5",
110110
"wp-cli/wp-cli-bundle": "^2.8",
111111
"wpackagist-plugin/disable-emojis": "^1.7",
112+
"wpackagist-plugin/duplicate-post": "^4.5",
112113
"wpackagist-plugin/limit-login-attempts-reloaded": "^2.26",
113114
"wpackagist-plugin/safe-svg": "^2.4",
114115
"wpackagist-plugin/seo-by-rank-math": "^1.0",

composer.lock

Lines changed: 19 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

wp-content/plugins/core/src/Assets/Admin_Assets_Enqueuer.php

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -70,15 +70,7 @@ public function update_login_header(): void {
7070
echo sprintf(
7171
'<style>
7272
body.login #login h1 a {
73-
width: 200px;
74-
height: 44px;
75-
margin: 0 auto 45px auto;
76-
background: url(%s) no-repeat center top transparent;
77-
background-size: contain;
78-
}
79-
80-
body.login #login {
81-
padding-top: 86px;
73+
background-image: url(%s);
8274
}
8375
</style>',
8476
esc_url( $login_logo )

wp-content/plugins/core/src/Blocks/Blocks_Definer.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ public function define(): array {
5252
'tribe/icon-picker',
5353
'tribe/image-card',
5454
'tribe/image-overlay-card',
55+
'tribe/inline-notice',
5556
'tribe/logo-marquee',
5657
'tribe/navigation-wrapper',
5758
'tribe/masthead-search',

wp-content/themes/core/assets/pcss/color/_variables.pcss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,7 @@
7171

7272
--color-alert-success: #84bd00;
7373
--color-alert-error: #df3a3a;
74+
--color-alert-error-dark: #d51c1c;
7475
--color-alert-warning: #f1c400;
7576

7677
/* -----------------------------------------------------------------------

wp-content/themes/core/assets/pcss/login/_variables.pcss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@
1212
--login-white-color: #fff;
1313
--login-background-image: radial-gradient(circle, var(--login-primary-color) 0%, var(--login-secondary-color) 100%);
1414
--login-logo-image: url(data:image/svg+xml,%3Csvg width="44" height="33" viewBox="0 0 44 33" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M8.3378 0L0.383431 31.4317L0 33H44L35.6021 0.0100784L21.9822 12.135L8.3378 0ZM9.76739 4.6473L20.1178 13.8526L3.77059 28.3429L9.76739 4.6473ZM23.8822 13.8212L34.1782 4.65514L40.1918 28.2788L23.8822 13.8212ZM22.0175 15.5396L38.8734 30.4804H5.16173L22.0175 15.5396Z" fill="black"%3E%3C/path%3E%3C/svg%3E);
15-
--login-logo-width: 150px;
16-
--login-logo-height: 113px;
15+
--login-logo-width: 200px;
16+
--login-logo-height: 44px;
1717
}
Lines changed: 70 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
{
2+
"$schema": "https://schemas.wp.org/trunk/block.json",
3+
"apiVersion": 3,
4+
"name": "tribe/inline-notice",
5+
"version": "0.1.0",
6+
"title": "Inline Notice",
7+
"category": "theme",
8+
"icon": "info-outline",
9+
"description": "An announcement block with inner blocks functionality",
10+
"attributes": {
11+
"isRounded": {
12+
"type": "boolean",
13+
"default": false
14+
},
15+
"iconLabel": {
16+
"type": "string",
17+
"default": ""
18+
},
19+
"iconSize": {
20+
"type": "number",
21+
"default": 30
22+
},
23+
"iconPadding": {
24+
"type": "number",
25+
"default": 0
26+
},
27+
"searchQuery": {
28+
"type": "string",
29+
"default": ""
30+
},
31+
"selectedIcon": {
32+
"type": "string",
33+
"default": "icon-circle-information"
34+
},
35+
"selectedIconColor": {
36+
"type": "string",
37+
"default": "#ffffff"
38+
},
39+
"selectedBgColor": {
40+
"type": "string",
41+
"default": "transparent"
42+
},
43+
"heading": {
44+
"type": "string",
45+
"default": ""
46+
},
47+
"headerTextColorTheme": {
48+
"type": "string",
49+
"default": "light",
50+
"enum": [ "light", "dark" ]
51+
},
52+
"themeColor": {
53+
"type": "string",
54+
"default": "#3050E5"
55+
}
56+
},
57+
"supports": {
58+
"html": false,
59+
"align": [ "wide", "grid", "full" ],
60+
"spacing": {
61+
"margin": true,
62+
"padding": false
63+
}
64+
},
65+
"textdomain": "tribe",
66+
"editorScript": "file:./index.js",
67+
"editorStyle": "file:./index.css",
68+
"style": "file:./style-index.css",
69+
"render": "file:./render.php"
70+
}

0 commit comments

Comments
 (0)