close
Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
46 commits
Select commit Hold shift + click to select a range
35212ec
Enhance Card Component: Introduce directional padding options and upd…
gigitux Oct 21, 2025
30c314b
Enhance Card Component: Introduce directional padding options and upd…
gigitux Oct 21, 2025
57be1cc
Merge branch '72175-card-support-more-padding-options' of github.com:…
gigitux Oct 21, 2025
32ca2e4
Merge branch 'trunk' of github.com:WordPress/gutenberg into 72175-car…
gigitux Oct 21, 2025
9351230
add changelog
gigitux Oct 21, 2025
36836b2
add size to footer
gigitux Oct 21, 2025
11c664e
Merge branch '72175-card-support-more-padding-options' of github.com:…
gigitux Oct 21, 2025
40b00f8
fix changelog
gigitux Oct 21, 2025
3f29e38
fix changelog
gigitux Oct 21, 2025
5928de8
Merge branch 'trunk' of github.com:WordPress/gutenberg into 72175-car…
gigitux Oct 22, 2025
0979b78
Merge branch 'trunk' of github.com:WordPress/gutenberg into 72175-car…
gigitux Oct 22, 2025
333ae7e
Merge branch '72175-card-support-more-padding-options' of github.com:…
gigitux Oct 22, 2025
5dac539
fix padding
gigitux Oct 22, 2025
942473b
Merge branch 'trunk' of github.com:WordPress/gutenberg into add/card-…
gigitux Oct 23, 2025
7fd6753
clean up code
gigitux Oct 23, 2025
47ab490
Merge branch 'trunk' of github.com:WordPress/gutenberg into 72175-car…
gigitux Oct 23, 2025
1df04b1
Merge branch '72175-card-support-more-padding-options' of github.com:…
gigitux Oct 23, 2025
4395a72
fix unit test
gigitux Oct 23, 2025
832e1b1
update types
gigitux Oct 24, 2025
f5d8c47
move padding style in get-padding-by-size file
gigitux Oct 24, 2025
c4af856
update story documentation
gigitux Oct 24, 2025
9768cee
update documentation
gigitux Oct 24, 2025
c780e39
remove option to make the card with border
gigitux Oct 27, 2025
b06b2a5
Merge branch 'trunk' of github.com:WordPress/gutenberg into 72175-car…
gigitux Oct 27, 2025
4a6144d
address feedback
gigitux Oct 27, 2025
1737ee5
Merge branch '72175-card-support-more-padding-options' of github.com:…
gigitux Oct 27, 2025
05143b8
Refactor padding options in FormCardField component to use blockStart…
gigitux Oct 27, 2025
a398629
Merge branch 'trunk' of github.com:WordPress/gutenberg into 72175-car…
gigitux Oct 28, 2025
5860263
Update packages/components/src/card/card/README.md
gigitux Oct 30, 2025
ff9fc33
Merge branch 'trunk' of github.com:WordPress/gutenberg into 72175-car…
gigitux Oct 30, 2025
0bfd81e
improve documentation
gigitux Oct 30, 2025
c59cbc5
improve logic
gigitux Oct 30, 2025
b7b554b
Merge branch '72175-card-support-more-padding-options' of github.com:…
gigitux Oct 30, 2025
cbf2b1d
Merge branch '72175-card-support-more-padding-options' of github.com:…
gigitux Oct 30, 2025
3c4960a
implement none
gigitux Oct 30, 2025
58e9f49
Merge branch '72175-card-support-more-padding-options' of github.com:…
gigitux Oct 30, 2025
5443dc1
fix build
gigitux Oct 30, 2025
1a5d4af
Merge branch 'trunk' of github.com:WordPress/gutenberg into add/card-…
gigitux Nov 4, 2025
45d2282
restore changelog
gigitux Nov 4, 2025
438fb2c
update changelog
gigitux Nov 4, 2025
61c63f2
restore story
gigitux Nov 4, 2025
8981acb
fix layout when header is not collapsible
gigitux Nov 4, 2025
ef00ee3
fix story
gigitux Nov 4, 2025
6e6cc81
improve card layout logic
gigitux Nov 4, 2025
4111e09
Update paragraph styling in dataform story to remove margin for impro…
gigitux Nov 5, 2025
521c753
Merge branch 'trunk' of github.com:WordPress/gutenberg into add/card-…
gigitux Nov 5, 2025
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
Prev Previous commit
Next Next commit
fix layout when header is not collapsible
  • Loading branch information
gigitux committed Nov 4, 2025
commit 8981acb50b3292cbaee73c7e22982ee96cce22e6
2 changes: 1 addition & 1 deletion packages/dataviews/src/dataform-layouts/card/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ const NonCollapsibleCardHeader = ( {
}: {
children: React.ReactNode;
} ) => (
<OriginalCardHeader { ...props }>
<OriginalCardHeader isBorderless { ...props }>
<div
style={ {
height: '40px', // This is to match the chevron's __next40pxDefaultSize
Expand Down
Loading