Skip to content

Commit

Permalink
Button: Add __next40pxDefaultSize in dataviews, reusable-blocks, et…
Browse files Browse the repository at this point in the history
…c. (#65715)

* Fix in Dataforms layouts

* Fix in Patterns header

* Fix in Patterns import popover

* Fix in nux

* Fix in ReusableBlockConvertButton

* Update snapshot

Co-authored-by: mirka <[email protected]>
Co-authored-by: tyxla <[email protected]>
  • Loading branch information
3 people committed Sep 30, 2024
1 parent 5e47d48 commit 6f8a67a
Show file tree
Hide file tree
Showing 10 changed files with 15 additions and 35 deletions.
4 changes: 1 addition & 3 deletions packages/dataviews/src/dataforms-layouts/panel/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,12 +44,10 @@ function DropdownHeader( {
<Spacer />
{ onClose && (
<Button
// TODO: Switch to `true` (40px size) if possible
__next40pxDefaultSize={ false }
className="dataforms-layouts-panel__dropdown-header-action"
label={ __( 'Close' ) }
icon={ closeSmall }
onClick={ onClose }
size="small"
/>
) }
</HStack>
Expand Down
13 changes: 0 additions & 13 deletions packages/dataviews/src/dataforms-layouts/panel/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -44,16 +44,3 @@
.dataforms-layouts-panel__dropdown-header {
margin-bottom: $grid-unit-20;
}

[class].dataforms-layouts-panel__dropdown-header-action {
height: $icon-size;

&.has-icon {
min-width: $icon-size;
padding: 0;
}

&:not(.has-icon) {
text-decoration: underline;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ function ImportDropdown( { onUpload } ) {
contentClassName="list-reusable-blocks-import-dropdown__content"
renderToggle={ ( { isOpen, onToggle } ) => (
<Button
// TODO: Switch to `true` (40px size) if possible
__next40pxDefaultSize={ false }
size="compact"
className="list-reusable-blocks-import-dropdown__button"
aria-expanded={ isOpen }
onClick={ onToggle }
variant="primary"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
.list-reusable-blocks-import-dropdown__content .components-popover__content {
padding: 10px;
}

[class].list-reusable-blocks-import-dropdown__button {
// Todo: Make core button height and gutenberg button height equal.
height: 30px;
}
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,7 @@ function ImportForm( { instanceId, onUpload } ) {
</label>
<input id={ inputId } type="file" onChange={ onChangeFile } />
<Button
// TODO: Switch to `true` (40px size) if possible
__next40pxDefaultSize={ false }
__next40pxDefaultSize
type="submit"
isBusy={ isLoading }
accessibleWhenDisabled
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@

.list-reusable-blocks-import-form__button {
margin-top: 10px;
margin-bottom: 10px;
float: right;
}

Expand Down
4 changes: 0 additions & 4 deletions packages/list-reusable-blocks/src/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,6 @@
align-items: center;
position: relative;
top: -3px;
// Todo: Make core button height and gutenberg button height equal.
.components-button {
height: 26px;
}
}

@include wordpress-admin-schemes();
6 changes: 2 additions & 4 deletions packages/nux/src/components/dot-tip/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,17 +57,15 @@ export function DotTip( {
<p>{ children }</p>
<p>
<Button
// TODO: Switch to `true` (40px size) if possible
__next40pxDefaultSize={ false }
__next40pxDefaultSize
variant="link"
onClick={ onDismiss }
>
{ hasNextTip ? __( 'See next tip' ) : __( 'Got it' ) }
</Button>
</p>
<Button
// TODO: Switch to `true` (40px size) if possible
__next40pxDefaultSize={ false }
size="small"
className="nux-dot-tip__disable"
icon={ close }
label={ __( 'Disable tips' ) }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,15 @@ exports[`DotTip should render correctly 1`] = `
</p>
<p>
<button
class="components-button is-link"
class="components-button is-next-40px-default-size is-link"
type="button"
>
Got it
</button>
</p>
<button
aria-label="Disable tips"
class="components-button nux-dot-tip__disable has-icon"
class="components-button nux-dot-tip__disable is-small has-icon"
type="button"
>
<svg
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -191,8 +191,7 @@ export default function ReusableBlockConvertButton( {
/>
<HStack justify="right">
<Button
// TODO: Switch to `true` (40px size) if possible
__next40pxDefaultSize={ false }
__next40pxDefaultSize
variant="tertiary"
onClick={ () => {
setIsModalOpen( false );
Expand All @@ -203,8 +202,7 @@ export default function ReusableBlockConvertButton( {
</Button>

<Button
// TODO: Switch to `true` (40px size) if possible
__next40pxDefaultSize={ false }
__next40pxDefaultSize
variant="primary"
type="submit"
>
Expand Down

0 comments on commit 6f8a67a

Please sign in to comment.