Skip to content

Commit

Permalink
Polish poster image button arrangement.
Browse files Browse the repository at this point in the history
Fixes #20704.

This changes the phrasing, the button types, and the arrangement of the video poster buttons.
  • Loading branch information
jasmussen committed Mar 10, 2020
1 parent 03e3c05 commit 3483464
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 deletions.
11 changes: 5 additions & 6 deletions packages/block-library/src/video/edit.js
Original file line number Diff line number Diff line change
Expand Up @@ -184,16 +184,16 @@ class VideoEdit extends Component {
}
render={ ( { open } ) => (
<Button
isSecondary
isPrimary
onClick={ open }
ref={ this.posterImageButton }
aria-describedby={
videoPosterDescription
}
>
{ ! this.props.attributes.poster
? __( 'Select Poster Image' )
: __( 'Replace image' ) }
? __( 'Select' )
: __( 'Replace' ) }
</Button>
) }
/>
Expand All @@ -212,10 +212,9 @@ class VideoEdit extends Component {
{ !! this.props.attributes.poster && (
<Button
onClick={ this.onRemovePoster }
isLink
isDestructive
isTertiary
>
{ __( 'Remove Poster Image' ) }
{ __( 'Remove' ) }
</Button>
) }
</BaseControl>
Expand Down
13 changes: 7 additions & 6 deletions packages/block-library/src/video/editor.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,12 @@
text-align: center;
}

.editor-video-poster-control .components-button {
display: block;
margin-right: 8px;
}
.editor-video-poster-control {
.components-base-control__label {
display: block;
}

.editor-video-poster-control .components-button + .components-button {
margin-top: 1em;
.components-button {
margin-right: $grid-unit-10;
}
}
2 changes: 1 addition & 1 deletion packages/components/src/base-control/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

.components-base-control__label {
display: inline-block;
margin-bottom: $grid-unit-05;
margin-bottom: $grid-unit-10;
}

.components-base-control__help {
Expand Down

0 comments on commit 3483464

Please sign in to comment.