Twenty Twenty-Four: Bugfixes and refinement for 6.4 RC4.
This update includes the following changes: * [https://github.com/WordPress/twentytwentyfour/pull/723 Remove custom CSS for links]. * [https://github.com/WordPress/twentytwentyfour/pull/718 Fix the link to the theme's docs]. * [https://github.com/WordPress/twentytwentyfour/pull/719 Separate outline css to its own function] - which introduces `twentytwentyfour_block_stylesheets()` for enqueuing custom block stylesheets. * [https://github.com/WordPress/twentytwentyfour/pull/720 Fix height of newsletter landing pattern]. * [https://github.com/WordPress/twentytwentyfour/pull/722/ Resolve border colors in variations]. Follow up to [57036], [56999], [56951], [56813], [56764], [56716]. Props onemaggie, richtabor, luminuu, huzaifaalmesbah, sabernhardt, poena, rajinsharwar. Fixes #59812. Built from https://develop.svn.wordpress.org/trunk@57067 git-svn-id: http://core.svn.wordpress.org/trunk@56578 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
faa928f218
commit
ea9d0c8dce
|
@ -20,23 +20,6 @@ if ( ! function_exists( 'twentytwentyfour_block_styles' ) ) :
|
|||
* @return void
|
||||
*/
|
||||
function twentytwentyfour_block_styles() {
|
||||
/**
|
||||
* The wp_enqueue_block_style() function allows us to enqueue a stylesheet
|
||||
* for a specific block. These will only get loaded when the block is rendered
|
||||
* (both in the editor and on the front end), improving performance
|
||||
* and reducing the amount of data requested by visitors.
|
||||
*
|
||||
* See https://make.wordpress.org/core/2021/12/15/using-multiple-stylesheets-per-block/ for more info.
|
||||
*/
|
||||
wp_enqueue_block_style(
|
||||
'core/button',
|
||||
array(
|
||||
'handle' => 'twentytwentyfour-button-style-outline',
|
||||
'src' => get_parent_theme_file_uri( 'assets/css/button-outline.css' ),
|
||||
'ver' => wp_get_theme( get_template() )->get( 'Version' ),
|
||||
'path' => get_parent_theme_file_path( 'assets/css/button-outline.css' ),
|
||||
)
|
||||
);
|
||||
|
||||
register_block_style(
|
||||
'core/details',
|
||||
|
@ -50,7 +33,6 @@ if ( ! function_exists( 'twentytwentyfour_block_styles' ) ) :
|
|||
.is-style-arrow-icon-details {
|
||||
padding-top: var(--wp--preset--spacing--10);
|
||||
padding-bottom: var(--wp--preset--spacing--10);
|
||||
border-bottom: 1px solid var(--wp--preset--color--contrast-2, currentColor);
|
||||
}
|
||||
|
||||
.is-style-arrow-icon-details summary {
|
||||
|
@ -164,6 +146,40 @@ endif;
|
|||
|
||||
add_action( 'init', 'twentytwentyfour_block_styles' );
|
||||
|
||||
/**
|
||||
* Enqueue block stylesheets.
|
||||
*/
|
||||
|
||||
if ( ! function_exists( 'twentytwentyfour_block_stylesheets' ) ) :
|
||||
/**
|
||||
* Enqueue custom block stylesheets
|
||||
*
|
||||
* @since Twenty Twenty-Four 1.0
|
||||
* @return void
|
||||
*/
|
||||
function twentytwentyfour_block_stylesheets() {
|
||||
/**
|
||||
* The wp_enqueue_block_style() function allows us to enqueue a stylesheet
|
||||
* for a specific block. These will only get loaded when the block is rendered
|
||||
* (both in the editor and on the front end), improving performance
|
||||
* and reducing the amount of data requested by visitors.
|
||||
*
|
||||
* See https://make.wordpress.org/core/2021/12/15/using-multiple-stylesheets-per-block/ for more info.
|
||||
*/
|
||||
wp_enqueue_block_style(
|
||||
'core/button',
|
||||
array(
|
||||
'handle' => 'twentytwentyfour-button-style-outline',
|
||||
'src' => get_parent_theme_file_uri( 'assets/css/button-outline.css' ),
|
||||
'ver' => wp_get_theme( get_template() )->get( 'Version' ),
|
||||
'path' => get_parent_theme_file_path( 'assets/css/button-outline.css' ),
|
||||
)
|
||||
);
|
||||
}
|
||||
endif;
|
||||
|
||||
add_action( 'init', 'twentytwentyfour_block_stylesheets' );
|
||||
|
||||
/**
|
||||
* Register pattern categories.
|
||||
*/
|
||||
|
|
|
@ -29,8 +29,8 @@
|
|||
|
||||
<!-- wp:columns {"align":"wide","style":{"spacing":{"blockGap":{"top":"var:preset|spacing|50","left":"var:preset|spacing|20"}}}} -->
|
||||
<div class="wp-block-columns alignwide">
|
||||
<!-- wp:column {"style":{"spacing":{"padding":{"right":"var:preset|spacing|30","left":"var:preset|spacing|30","top":"var:preset|spacing|30","bottom":"var:preset|spacing|10"}},"border":{"top":{"color":"var:preset|color|base-3","width":"1px"}}}} -->
|
||||
<div class="wp-block-column" style="border-top-color:var(--wp--preset--color--base-3);border-top-width:1px;padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--10);padding-left:var(--wp--preset--spacing--30)">
|
||||
<!-- wp:column {"style":{"spacing":{"padding":{"right":"var:preset|spacing|30","left":"var:preset|spacing|30","top":"var:preset|spacing|30","bottom":"var:preset|spacing|10"}},"border":{"top":{"color":"var:preset|color|contrast-3","width":"1px"}}}} -->
|
||||
<div class="wp-block-column" style="border-top-color:var(--wp--preset--color--contrast-3);border-top-width:1px;padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--10);padding-left:var(--wp--preset--spacing--30)">
|
||||
<!-- wp:heading {"textAlign":"center","level":4,"style":{"spacing":{"padding":{"top":"1px"}}},"fontSize":"medium"} -->
|
||||
<h4 class="wp-block-heading has-text-align-center has-medium-font-size" style="padding-top:1px">
|
||||
<em><?php echo esc_html_x( 'Free', 'Sample heading for the first pricing level', 'twentytwentyfour' ); ?></em>
|
||||
|
@ -52,8 +52,8 @@
|
|||
<p class="has-text-align-center"><?php echo wp_kses_post( _x( 'Access to 5 exclusive <em>Études Articles</em> per month.', 'Feature for pricing level', 'twentytwentyfour' ) ); ?></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:separator {"backgroundColor":"base-3"} -->
|
||||
<hr class="wp-block-separator has-text-color has-base-3-color has-alpha-channel-opacity has-base-3-background-color has-background is-style-wide" />
|
||||
<!-- wp:separator {"backgroundColor":"contrast-3"} -->
|
||||
<hr class="wp-block-separator has-text-color has-contrast-3-color has-alpha-channel-opacity has-contrast-3-background-color has-background is-style-wide" />
|
||||
<!-- /wp:separator -->
|
||||
|
||||
<!-- wp:paragraph {"align":"center","style":{"elements":{"link":{"color":{"text":"var:preset|color|contrast-2"}}}},"textColor":"contrast-2"} -->
|
||||
|
@ -62,8 +62,8 @@
|
|||
</p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:separator {"backgroundColor":"base-3"} -->
|
||||
<hr class="wp-block-separator has-text-color has-base-3-color has-alpha-channel-opacity has-base-3-background-color has-background is-style-wide" />
|
||||
<!-- wp:separator {"backgroundColor":"contrast-3"} -->
|
||||
<hr class="wp-block-separator has-text-color has-contrast-3-color has-alpha-channel-opacity has-contrast-3-background-color has-background is-style-wide" />
|
||||
<!-- /wp:separator -->
|
||||
|
||||
<!-- wp:paragraph {"align":"center","style":{"elements":{"link":{"color":{"text":"var:preset|color|contrast-2"}}}},"textColor":"contrast-2"} -->
|
||||
|
@ -114,16 +114,16 @@
|
|||
<p class="has-text-align-center"><?php echo wp_kses_post( _x( 'Access to 20 exclusive <em>Études Articles</em> per month.', 'Feature for pricing level', 'twentytwentyfour' ) ); ?></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:separator {"backgroundColor":"base-3"} -->
|
||||
<hr class="wp-block-separator has-text-color has-base-3-color has-alpha-channel-opacity has-base-3-background-color has-background is-style-wide" />
|
||||
<!-- wp:separator {"backgroundColor":"contrast-3"} -->
|
||||
<hr class="wp-block-separator has-text-color has-contrast-3-color has-alpha-channel-opacity has-contrast-3-background-color has-background is-style-wide" />
|
||||
<!-- /wp:separator -->
|
||||
|
||||
<!-- wp:paragraph {"align":"center"} -->
|
||||
<p class="has-text-align-center"><?php echo esc_html_x( 'Weekly print edition.', 'Feature for pricing level', 'twentytwentyfour' ); ?></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:separator {"backgroundColor":"base-3"} -->
|
||||
<hr class="wp-block-separator has-text-color has-base-3-color has-alpha-channel-opacity has-base-3-background-color has-background is-style-wide" />
|
||||
<!-- wp:separator {"backgroundColor":"contrast-3"} -->
|
||||
<hr class="wp-block-separator has-text-color has-contrast-3-color has-alpha-channel-opacity has-contrast-3-background-color has-background is-style-wide" />
|
||||
<!-- /wp:separator -->
|
||||
|
||||
<!-- wp:paragraph {"align":"center"} -->
|
||||
|
@ -149,8 +149,8 @@
|
|||
</div>
|
||||
<!-- /wp:column -->
|
||||
|
||||
<!-- wp:column {"style":{"spacing":{"padding":{"right":"var:preset|spacing|30","left":"var:preset|spacing|30","top":"var:preset|spacing|30","bottom":"var:preset|spacing|10"}},"border":{"top":{"color":"var:preset|color|base-3","width":"1px"}}}} -->
|
||||
<div class="wp-block-column" style="border-top-color:var(--wp--preset--color--base-3);border-top-width:1px;padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--10);padding-left:var(--wp--preset--spacing--30)">
|
||||
<!-- wp:column {"style":{"spacing":{"padding":{"right":"var:preset|spacing|30","left":"var:preset|spacing|30","top":"var:preset|spacing|30","bottom":"var:preset|spacing|10"}},"border":{"top":{"color":"var:preset|color|contrast-3","width":"1px"}}}} -->
|
||||
<div class="wp-block-column" style="border-top-color:var(--wp--preset--color--contrast-3);border-top-width:1px;padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--10);padding-left:var(--wp--preset--spacing--30)">
|
||||
<!-- wp:heading {"textAlign":"center","level":4,"style":{"spacing":{"padding":{"top":"1px"}}},"fontSize":"medium"} -->
|
||||
<h4 class="wp-block-heading has-text-align-center has-medium-font-size" style="padding-top:1px">
|
||||
<em><?php echo esc_html_x( 'Expert', 'Sample heading for the third pricing level', 'twentytwentyfour' ); ?></em>
|
||||
|
@ -172,16 +172,16 @@
|
|||
<p class="has-text-align-center"><?php echo wp_kses_post( _x( 'Exclusive, unlimited access to <em>Études Articles</em>.', 'Feature for pricing level', 'twentytwentyfour' ) ); ?></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:separator {"backgroundColor":"base-3"} -->
|
||||
<hr class="wp-block-separator has-text-color has-base-3-color has-alpha-channel-opacity has-base-3-background-color has-background is-style-wide" />
|
||||
<!-- wp:separator {"backgroundColor":"contrast-3"} -->
|
||||
<hr class="wp-block-separator has-text-color has-contrast-3-color has-alpha-channel-opacity has-contrast-3-background-color has-background is-style-wide" />
|
||||
<!-- /wp:separator -->
|
||||
|
||||
<!-- wp:paragraph {"align":"center"} -->
|
||||
<p class="has-text-align-center"><?php echo esc_html_x( 'Weekly print edition.', 'Feature for pricing level', 'twentytwentyfour' ); ?></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:separator {"backgroundColor":"base-3"} -->
|
||||
<hr class="wp-block-separator has-text-color has-base-3-color has-alpha-channel-opacity has-base-3-background-color has-background is-style-wide" />
|
||||
<!-- wp:separator {"backgroundColor":"contrast-3"} -->
|
||||
<hr class="wp-block-separator has-text-color has-contrast-3-color has-alpha-channel-opacity has-contrast-3-background-color has-background is-style-wide" />
|
||||
<!-- /wp:separator -->
|
||||
|
||||
<!-- wp:paragraph {"align":"center"} -->
|
||||
|
|
|
@ -23,8 +23,8 @@
|
|||
</div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:separator {"backgroundColor":"base-3","className":"is-style-wide"} -->
|
||||
<hr class="wp-block-separator has-text-color has-base-3-color has-alpha-channel-opacity has-base-3-background-color has-background is-style-wide" />
|
||||
<!-- wp:separator {"backgroundColor":"contrast","className":"is-style-wide"} -->
|
||||
<hr class="wp-block-separator has-text-color has-contrast-color has-alpha-channel-opacity has-contrast-background-color has-background is-style-wide"/>
|
||||
<!-- /wp:separator -->
|
||||
|
||||
<!-- wp:group {"style":{"spacing":{"blockGap":"16px"}},"layout":{"type":"constrained"}} -->
|
||||
|
@ -37,8 +37,8 @@
|
|||
</div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:separator {"backgroundColor":"base-3","className":"is-style-wide"} -->
|
||||
<hr class="wp-block-separator has-text-color has-base-3-color has-alpha-channel-opacity has-base-3-background-color has-background is-style-wide" />
|
||||
<!-- wp:separator {"backgroundColor":"contrast","className":"is-style-wide"} -->
|
||||
<hr class="wp-block-separator has-text-color has-contrast-color has-alpha-channel-opacity has-contrast-background-color has-background is-style-wide"/>
|
||||
<!-- /wp:separator -->
|
||||
|
||||
<!-- wp:group {"style":{"spacing":{"blockGap":"26px"}},"layout":{"type":"constrained"}} -->
|
||||
|
@ -62,8 +62,8 @@
|
|||
</div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:separator {"backgroundColor":"base-3","className":"is-style-wide"} -->
|
||||
<hr class="wp-block-separator has-text-color has-base-3-color has-alpha-channel-opacity has-base-3-background-color has-background is-style-wide" />
|
||||
<!-- wp:separator {"backgroundColor":"contrast","className":"is-style-wide"} -->
|
||||
<hr class="wp-block-separator has-text-color has-contrast-color has-alpha-channel-opacity has-contrast-background-color has-background is-style-wide"/>
|
||||
<!-- /wp:separator -->
|
||||
|
||||
<!-- wp:group {"style":{"spacing":{"blockGap":"16px"}},"layout":{"type":"flex","orientation":"vertical","justifyContent":"stretch"}} -->
|
||||
|
|
|
@ -10,8 +10,8 @@
|
|||
*/
|
||||
?>
|
||||
|
||||
<!-- wp:group {"align":"full","style":{"spacing":{"padding":{"right":"var:preset|spacing|50","left":"var:preset|spacing|50","top":"var:preset|spacing|60","bottom":"var:preset|spacing|60"},"margin":{"top":"0","bottom":"0"}},"dimensions":{"minHeight":"100vw"}},"backgroundColor":"accent-3","layout":{"type":"flex","orientation":"vertical","justifyContent":"center","verticalAlignment":"center"}} -->
|
||||
<div class="wp-block-group alignfull has-accent-3-background-color has-background" style="min-height:100vw;margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--60);padding-right:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--60);padding-left:var(--wp--preset--spacing--50)">
|
||||
<!-- wp:group {"align":"full","style":{"spacing":{"padding":{"right":"var:preset|spacing|50","left":"var:preset|spacing|50","top":"var:preset|spacing|60","bottom":"var:preset|spacing|60"},"margin":{"top":"0","bottom":"0"}},"dimensions":{"minHeight":"100vh"}},"backgroundColor":"accent-3","layout":{"type":"flex","orientation":"vertical","justifyContent":"center","verticalAlignment":"center"}} -->
|
||||
<div class="wp-block-group alignfull has-accent-3-background-color has-background" style="min-height:100vh;margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--60);padding-right:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--60);padding-left:var(--wp--preset--spacing--50)">
|
||||
<!-- wp:group {"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group">
|
||||
<!-- wp:image {"align":"center","width":"45px","height":"49px","scale":"cover","sizeSlug":"full","linkDestination":"none"} -->
|
||||
|
|
|
@ -16,12 +16,12 @@
|
|||
|
||||
<!-- wp:group {"align":"wide","layout":{"type":"default"}} -->
|
||||
<div class="wp-block-group alignwide">
|
||||
<!-- wp:separator {"backgroundColor":"contrast-2","className":"is-style-wide"} -->
|
||||
<hr class="wp-block-separator has-text-color has-contrast-2-color has-alpha-channel-opacity has-contrast-2-background-color has-background is-style-wide"/>
|
||||
<!-- wp:separator {"backgroundColor":"base","className":"is-style-wide"} -->
|
||||
<hr class="wp-block-separator has-text-color has-base-color has-alpha-channel-opacity has-base-background-color has-background is-style-wide"/>
|
||||
<!-- /wp:separator -->
|
||||
|
||||
<!-- wp:details {"style":{"spacing":{"margin":{"top":"0"}}},"className":"is-style-arrow-icon-details","fontSize":"medium"} -->
|
||||
<details class="wp-block-details is-style-arrow-icon-details has-medium-font-size" style="margin-top:0">
|
||||
<!-- wp:details {"style":{"spacing":{"margin":{"top":"0"}},"border":{"top":{"width":"0px","style":"none"},"right":{"width":"0px","style":"none"},"bottom":{"color":"var:preset|color|base","style":"solid","width":"1px"},"left":{"width":"0px","style":"none"}}},"className":"is-style-arrow-icon-details","fontSize":"medium"} -->
|
||||
<details class="wp-block-details is-style-arrow-icon-details has-medium-font-size" style="border-top-style:none;border-top-width:0px;border-right-style:none;border-right-width:0px;border-bottom-color:var(--wp--preset--color--base);border-bottom-style:solid;border-bottom-width:1px;border-left-style:none;border-left-width:0px;margin-top:0">
|
||||
<summary><?php echo esc_html_x( 'What is your process working in smaller projects?', 'Question on the details block', 'twentytwentyfour' ); ?></summary>
|
||||
<!-- wp:paragraph {"placeholder":"Type / to add a hidden block","style":{"elements":{"link":{"color":{"text":"var:preset|color|contrast-1"}}}},"textColor":"contrast-1"} -->
|
||||
<p class="has-contrast-1-color has-text-color has-link-color"><?php echo esc_html_x( 'Études offers comprehensive consulting, management, design, and research solutions. Our vision is to be at the forefront of architectural innovation, fostering a global community of architects and enthusiasts united by a passion for creating spaces. Every architectural endeavor is an opportunity to shape the future.', 'Hidden answer on the details block', 'twentytwentyfour' ); ?></p>
|
||||
|
@ -29,8 +29,8 @@
|
|||
</details>
|
||||
<!-- /wp:details -->
|
||||
|
||||
<!-- wp:details {"style":{"spacing":{"margin":{"top":"0"}}},"className":"is-style-arrow-icon-details","fontSize":"medium"} -->
|
||||
<details class="wp-block-details is-style-arrow-icon-details has-medium-font-size" style="margin-top:0">
|
||||
<!-- wp:details {"style":{"spacing":{"margin":{"top":"0"}},"border":{"top":{"width":"0px","style":"none"},"right":{"width":"0px","style":"none"},"bottom":{"color":"var:preset|color|base","style":"solid","width":"1px"},"left":{"width":"0px","style":"none"}}},"className":"is-style-arrow-icon-details","fontSize":"medium"} -->
|
||||
<details class="wp-block-details is-style-arrow-icon-details has-medium-font-size" style="border-top-style:none;border-top-width:0px;border-right-style:none;border-right-width:0px;border-bottom-color:var(--wp--preset--color--base);border-bottom-style:solid;border-bottom-width:1px;border-left-style:none;border-left-width:0px;margin-top:0">
|
||||
<summary><?php echo esc_html_x( 'Who is behind Études?', 'Question on the details block', 'twentytwentyfour' ); ?></summary>
|
||||
<!-- wp:paragraph {"placeholder":"Type / to add a hidden block","style":{"elements":{"link":{"color":{"text":"var:preset|color|contrast-1"}}}},"textColor":"contrast-1"} -->
|
||||
<p class="has-contrast-1-color has-text-color has-link-color"><?php echo esc_html_x( 'Études offers comprehensive consulting, management, design, and research solutions. Our vision is to be at the forefront of architectural innovation, fostering a global community of architects and enthusiasts united by a passion for creating spaces. Every architectural endeavor is an opportunity to shape the future.', 'Hidden answer on the details block', 'twentytwentyfour' ); ?></p>
|
||||
|
@ -38,8 +38,8 @@
|
|||
</details>
|
||||
<!-- /wp:details -->
|
||||
|
||||
<!-- wp:details {"style":{"spacing":{"margin":{"top":"0"}}},"className":"is-style-arrow-icon-details","fontSize":"medium"} -->
|
||||
<details class="wp-block-details is-style-arrow-icon-details has-medium-font-size" style="margin-top:0">
|
||||
<!-- wp:details {"style":{"spacing":{"margin":{"top":"0"}},"border":{"top":{"width":"0px","style":"none"},"right":{"width":"0px","style":"none"},"bottom":{"color":"var:preset|color|base","style":"solid","width":"1px"},"left":{"width":"0px","style":"none"}}},"className":"is-style-arrow-icon-details","fontSize":"medium"} -->
|
||||
<details class="wp-block-details is-style-arrow-icon-details has-medium-font-size" style="border-top-style:none;border-top-width:0px;border-right-style:none;border-right-width:0px;border-bottom-color:var(--wp--preset--color--base);border-bottom-style:solid;border-bottom-width:1px;border-left-style:none;border-left-width:0px;margin-top:0">
|
||||
<summary><?php echo esc_html_x( 'I\'d like to get to meet fellow architects, how can I do that?', 'Question on the details block', 'twentytwentyfour' ); ?></summary>
|
||||
<!-- wp:paragraph {"placeholder":"Type / to add a hidden block","style":{"elements":{"link":{"color":{"text":"var:preset|color|contrast-1"}}}},"textColor":"contrast-1"} -->
|
||||
<p class="has-contrast-1-color has-text-color has-link-color"><?php echo esc_html_x( 'Études offers comprehensive consulting, management, design, and research solutions. Our vision is to be at the forefront of architectural innovation, fostering a global community of architects and enthusiasts united by a passion for creating spaces. Every architectural endeavor is an opportunity to shape the future.', 'Hidden answer on the details block', 'twentytwentyfour' ); ?></p>
|
||||
|
@ -47,8 +47,8 @@
|
|||
</details>
|
||||
<!-- /wp:details -->
|
||||
|
||||
<!-- wp:details {"style":{"spacing":{"margin":{"top":"0"}}},"className":"is-style-arrow-icon-details","fontSize":"medium"} -->
|
||||
<details class="wp-block-details is-style-arrow-icon-details has-medium-font-size" style="margin-top:0">
|
||||
<!-- wp:details {"style":{"spacing":{"margin":{"top":"0"}},"border":{"top":{"width":"0px","style":"none"},"right":{"width":"0px","style":"none"},"bottom":{"color":"var:preset|color|base","style":"solid","width":"1px"},"left":{"width":"0px","style":"none"}}},"className":"is-style-arrow-icon-details","fontSize":"medium"} -->
|
||||
<details class="wp-block-details is-style-arrow-icon-details has-medium-font-size" style="border-top-style:none;border-top-width:0px;border-right-style:none;border-right-width:0px;border-bottom-color:var(--wp--preset--color--base);border-bottom-style:solid;border-bottom-width:1px;border-left-style:none;border-left-width:0px;margin-top:0">
|
||||
<summary><?php echo esc_html_x( 'Can I apply to be a part of the team or work as a contractor?', 'Question on the details block', 'twentytwentyfour' ); ?></summary>
|
||||
<!-- wp:paragraph {"placeholder":"Type / to add a hidden block","style":{"elements":{"link":{"color":{"text":"var:preset|color|contrast-1"}}}},"textColor":"contrast-1"} -->
|
||||
<p class="has-contrast-1-color has-text-color has-link-color"><?php echo esc_html_x( 'Études offers comprehensive consulting, management, design, and research solutions. Our vision is to be at the forefront of architectural innovation, fostering a global community of architects and enthusiasts united by a passion for creating spaces. Every architectural endeavor is an opportunity to shape the future.', 'Hidden answer on the details block', 'twentytwentyfour' ); ?></p>
|
||||
|
|
|
@ -16,7 +16,7 @@ Twenty Twenty-Four is designed to be flexible, versatile and applicable to any w
|
|||
= 1.0 =
|
||||
* Released: November 7, 2023
|
||||
|
||||
https://wordpress.org/support/article/twenty-twenty-four-changelog#Version_1.0
|
||||
https://wordpress.org/documentation/article/twenty-twenty-four-changelog/#Version_1.0
|
||||
|
||||
== Copyright ==
|
||||
|
||||
|
|
|
@ -96,11 +96,6 @@
|
|||
"color": "#f6decd",
|
||||
"name": "Base / Two",
|
||||
"slug": "base-2"
|
||||
},
|
||||
{
|
||||
"color": "#FF3C0025",
|
||||
"name": "Base / Three",
|
||||
"slug": "base-3"
|
||||
}
|
||||
]
|
||||
},
|
||||
|
|
|
@ -77,11 +77,6 @@
|
|||
"name": "Base / Two",
|
||||
"slug": "base-2"
|
||||
},
|
||||
{
|
||||
"color": "#1A151425",
|
||||
"name": "Base / Three",
|
||||
"slug": "base-3"
|
||||
},
|
||||
{
|
||||
"color": "#1A1514",
|
||||
"name": "Contrast",
|
||||
|
|
|
@ -77,11 +77,6 @@
|
|||
"name": "Base / Two",
|
||||
"slug": "base-2"
|
||||
},
|
||||
{
|
||||
"color": "#ecf1f4",
|
||||
"name": "Base / Three",
|
||||
"slug": "base-3"
|
||||
},
|
||||
{
|
||||
"color": "#1C2930",
|
||||
"name": "Contrast",
|
||||
|
|
|
@ -15,11 +15,6 @@
|
|||
"name": "Base / Two",
|
||||
"slug": "base-2"
|
||||
},
|
||||
{
|
||||
"color": "#FFFFFF25",
|
||||
"name": "Base / Three",
|
||||
"slug": "base-3"
|
||||
},
|
||||
{
|
||||
"color": "#FFFFFFA1",
|
||||
"name": "Contrast / 2",
|
||||
|
|
|
@ -15,11 +15,6 @@
|
|||
"name": "Base / Two",
|
||||
"slug": "base-2"
|
||||
},
|
||||
{
|
||||
"color": "#00000025",
|
||||
"name": "Base / Three",
|
||||
"slug": "base-3"
|
||||
},
|
||||
{
|
||||
"color": "#000000",
|
||||
"name": "Contrast",
|
||||
|
|
|
@ -119,11 +119,6 @@
|
|||
"name": "Base / Two",
|
||||
"slug": "base-2"
|
||||
},
|
||||
{
|
||||
"color": "#ffffff26",
|
||||
"name": "Base / Three",
|
||||
"slug": "base-3"
|
||||
},
|
||||
{
|
||||
"color": "#f9f9f9",
|
||||
"name": "Contrast",
|
||||
|
|
|
@ -31,8 +31,8 @@
|
|||
</div>
|
||||
<!-- /wp:spacer -->
|
||||
|
||||
<!-- wp:separator {"style":{"spacing":{"margin":{"bottom":"var:preset|spacing|40"}}},"backgroundColor":"base-3","className":"is-style-wide"} -->
|
||||
<hr class="wp-block-separator has-text-color has-base-3-color has-alpha-channel-opacity has-base-3-background-color has-background is-style-wide" style="margin-bottom:var(--wp--preset--spacing--40)"/>
|
||||
<!-- wp:separator {"style":{"spacing":{"margin":{"bottom":"var:preset|spacing|40"}}},"backgroundColor":"contrast-3","className":"is-style-wide"} -->
|
||||
<hr class="wp-block-separator has-text-color has-contrast-3-color has-alpha-channel-opacity has-contrast-3-background-color has-background is-style-wide" style="margin-bottom:var(--wp--preset--spacing--40)"/>
|
||||
<!-- /wp:separator -->
|
||||
|
||||
<!-- wp:pattern {"slug":"twentytwentyfour/hidden-comments"} /-->
|
||||
|
|
|
@ -111,11 +111,6 @@
|
|||
"name": "Base / Two",
|
||||
"slug": "base-2"
|
||||
},
|
||||
{
|
||||
"color": "#00000025",
|
||||
"name": "Base / Three",
|
||||
"slug": "base-3"
|
||||
},
|
||||
{
|
||||
"color": "#111111",
|
||||
"name": "Contrast",
|
||||
|
@ -785,7 +780,6 @@
|
|||
"background": "var(--wp--preset--color--base)",
|
||||
"text": "var(--wp--preset--color--contrast)"
|
||||
},
|
||||
"css": "a{text-decoration-thickness:0.0625em;text-underline-offset: 0.15em}",
|
||||
"elements": {
|
||||
"button": {
|
||||
":active": {
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '6.5-alpha-57066';
|
||||
$wp_version = '6.5-alpha-57067';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue