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

Update descriptions for the different screens under global styles. #35429

Merged
merged 1 commit into from
Oct 7, 2021
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
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ function ScreenBackgroundColor( { name } ) {
back={ parentMenu + '/colors' }
title={ __( 'Background' ) }
description={ __(
'Set the background color choosing from the palette or pick your own'
'Set a background color or gradient for the whole website.'
) }
/>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,13 @@ function BlockMenuItem( { block } ) {
function ScreenBlockList() {
return (
<>
<ScreenHeader back="/" title={ __( 'Blocks' ) } />
<ScreenHeader
back="/"
title={ __( 'Blocks' ) }
description={ __(
'Customize the appearance of specific blocks and for the whole site.'
) }
/>
{ getBlockTypes().map( ( block ) => (
<BlockMenuItem
block={ block }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@ function ScreenColorPalette( { name } ) {
<ScreenHeader
back={ parentMenu + '/colors' }
title={ __( 'Color Palette' ) }
description={ __( 'Edit the color palette.' ) }
description={ __(
'Color palettes are used to provide default color options for blocks and various design tools. Here you can edit the colors with their labels.'
) }
/>
<ColorPalettePanel name={ name } />
</>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ function ScreenColors( { name } ) {
back={ parentMenu ? parentMenu : '/' }
title={ __( 'Colors' ) }
description={ __(
'Manage color palettes and how they affect the different elements of the site.'
'Manage palettes and the default color of different global elements on the website.'
) }
/>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ function ScreenLinkColor( { name } ) {
back={ parentMenu + '/colors' }
title={ __( 'Links' ) }
description={ __(
'Set the link color choosing from the palette or pick your own'
'Set the default color used for links across the site.'
) }
/>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ function ScreenTextColor( { name } ) {
back={ parentMenu + '/colors' }
title={ __( 'Text' ) }
description={ __(
'Set the text color choosing from the palette or pick your own'
'Set the default color used for text across the site.'
) }
/>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ function ScreenTypography( { name } ) {
<ScreenHeader
back={ parentMenu ? parentMenu : '/' }
title={ __( 'Typography' ) }
description={ __(
'Manage the fonts used on the website and the default aspect of different global elements.'
) }
/>
<TypographyPanel name={ name } />
</>
Expand Down