Skip to content
Open
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
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@ All notable changes to this project will be documented in this file. The format
on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). Each changelog entry gets prefixed with the category of the
item (Added, Changed, Depreciated, Removed, Fixed, Security).

## [2026.05]

- Updated: Open up the default block settings throughout ModernPress to allow more customization for design & client editors. New [Block Settings Support page](https://github.com/moderntribe/ModernPress/wiki/Block-Setting-Support) added to the GitHub Wiki.

## [2026.04]

- Updated: all plugins, composer & npm packages to latest; pin React to v18 as an override to resolve conflicts between ` @dnd-kit/core` and `@wordpress/icons`; pin several other packages to newer versions to resolve security warnings.

## [2026.03]
Expand All @@ -23,6 +28,7 @@ item (Added, Changed, Depreciated, Removed, Fixed, Security).
- Added: XDebug documentation

## [2026.02]

- Added: `moderntribe/tribe_embed` composer package v1.1.0.
- Updated: Renamed "Moose" to "ModernPress" across the project (excluding Lando configs and deployment pipelines).
- Updated: Expected PHP version to v8.4, Node version to v24 LTS
Expand Down
7 changes: 7 additions & 0 deletions wp-content/themes/core/assets/pcss/color/_variables.pcss
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,13 @@
--box-shadow-40: var(--wp--preset--shadow--40);
--box-shadow-50: var(--wp--preset--shadow--50);
--box-shadow-60: var(--wp--preset--shadow--60);

/* -----------------------------------------------------------------------
* Gradients
* ----------------------------------------------------------------------- */

--gradient-simple-black-horizontal: var(--wp--preset--gradient--simple-black-horizontal);
--gradient-simple-black-vertical: var(--wp--preset--gradient--simple-black-vertical);
}

:root,
Expand Down
1 change: 1 addition & 0 deletions wp-content/themes/core/blocks/core/embed/style.pcss
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
* Block - Embed - FE / Editor Styles
*
* ------------------------------------------------------------------------- */

.wp-block-embed {

@mixin media-block-shared-alignment;
Expand Down
180 changes: 39 additions & 141 deletions wp-content/themes/core/theme.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,171 +22,78 @@
"tribe/logo-marquee",
"tribe/vertical-tab"
],
"appearanceTools": true,
"blocks": {
"core/buttons": {
"spacing": {
"blockGap": true
}
},
"core/button": {
"border": {
"color": false,
"radius": false,
"style": false,
"width": false
},
"color": {
"text": false,
"background": false,
"gradients": []
},
"shadow": [],
"spacing": {
"padding": false
},
"typography": {
"fontFamilies": [],
"customFontSize": false,
"fontSizes": [],
"textTransform": false
}
},
"core/columns": {
"spacing": {
"blockGap": true
}
},
"core/cover": {
"border": {
"radius": true
}
},
"core/details": {
"border": {
"color": true,
"radius": false,
"style": false,
"width": true
},
"spacing": {
"margin": true,
"padding": false
"textTransform": false,
"fontWeight": false,
"fontStyle": false,
"lineHeight": false,
"letterSpacing": false,
"textDecoration": false
}
},
"core/group": {
"color": {
"background": true
},
"background": {
"backgroundImage": true,
"backgroundSize": true
},
"spacing": {
"blockGap": true
}
},
"core/heading": {
"typography": {
"fontFamilies": [],
"fontSizes": []
}
},
"core/image": {
"border": {
"color": true,
"radius": true,
"width": true
}
},
"core/list": {
"typography": {
"fontFamilies": [],
"fontSizes": []
}
},
"core/list-item": {
"typography": {
"fontFamilies": [],
"fontSizes": []
}
},
"core/navigation": {
"spacing": {
"blockGap": true
}
},
"core/paragraph": {
"typography": {
"fontFamilies": [],
"fontSizes": []
}
},
"core/post-featured-image": {
"border": {
"radius": true
"button": false,
"link": false
}
},
"core/post-template": {
"spacing": {
"blockGap": true
}
},
"core/pullquote": {
"typography": {
"fontFamilies": [],
"fontSizes": []
}
},
"core/quote": {
"typography": {
"fontFamilies": [],
"fontSizes": []
"blockGap": false
}
},
"core/query-pagination": {
"typography": {
"fontFamilies": [],
"fontSizes": []
}
},
"core/query-pagination-previous": {
"typography": {
"fontFamilies": [],
"fontSizes": []
}
},
"core/query-pagination-next": {
"typography": {
"fontFamilies": [],
"fontSizes": []
}
},
"core/query-pagination-numbers": {
"typography": {
"fontFamilies": [],
"fontSizes": []
}
},
"core/social-links": {
"spacing": {
"blockGap": true
"color": {
"link": false,
"text": false
}
},
"core/table": {
"typography": {
"fontFamilies": [],
"fontSizes": []
}
},
"outermost/social-sharing": {
"spacing": {
"blockGap": true
"color": {
"background": false,
"text": false
}
}
},
"color": {
"background": false,
"custom": false,
"customDuotone": false,
"customGradient": false,
"defaultGradients": false,
"defaultPalette": false,
"defaultDuotone": false,
"duotone": [],
"gradients": [],
"link": false,
"gradients": [
{
"slug": "simple-black-horizontal",
"name": "Simple horizontal gradient from transparent to black",
"gradient": "linear-gradient(90deg,rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%)"
},
{
"slug": "simple-black-vertical",
"name": "Simple vertical gradient from transparent to black",
"gradient": "linear-gradient(180deg,rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%)"
}
],
"palette": [
{
"color": "#3050E5",
Expand Down Expand Up @@ -230,9 +137,7 @@
"wideSize": "1136px"
},
"typography": {
"customFontSize": false,
"defaultFontSizes": false,
"dropCap": false,
"fluid": false,
"fontFamilies": [
{
Expand Down Expand Up @@ -325,14 +230,10 @@
"size": "clamp(3rem, 2.4rem + 3vw, 6rem)",
"name": "Font Size 90"
}
],
"fontStyle": false,
"fontWeight": false,
"letterSpacing": false,
"lineHeight": false,
"textDecoration": false
]
},
"shadow": {
"defaultPresets": false,
"presets": [
{
"name": "Shadow 10",
Expand Down Expand Up @@ -368,9 +269,6 @@
},
"spacing": {
"defaultSpacingSizes": false,
"margin": true,
"padding": true,
"blockGap": false,
"spacingSizes": [
{
"size": "clamp(0.25rem, 0.2rem + 0.25vw, 0.5rem)",
Expand Down Expand Up @@ -807,4 +705,4 @@
}
}
}
}
}
Loading