-
Notifications
You must be signed in to change notification settings - Fork 4.2k
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 components radius #64368
Update components radius #64368
Conversation
Size Change: -48 B (0%) Total Size: 1.77 MB
ℹ️ View Unchanged
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for working on it @jameskoster 🙌
This mostly looks good in my testing ✅
I've asked a few questions about some of the changes - let me know what you think.
Looks like you'll need to update a bunch of test snapshots. Happy to help with that once you confirm all changes are expected.
Finally, I'd definitely add changelog entries here. Perhaps it makes sense to list all affected components.
@@ -47,7 +47,7 @@ $radius-x-small: 1px; // Applied to elements like buttons nested within primit | |||
$radius-small: 2px; // Applied to most primitives. | |||
$radius-medium: 4px; // Applied to containers with smaller padding. | |||
$radius-large: 8px; // Applied to containers with larger padding. | |||
$radius-full: 9999px; // For lozenges. | |||
$radius-full: 9999px; // For pills. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍 Thank you for this. As a non-native speaker, the difference between tablet, pill, lozenge, pellet, capsule, etc. makes my head hurt. pill
does like a word that's more common than lozenge
.
@@ -40,7 +40,7 @@ export const Track = styled.div` | |||
${ COLORS.theme.foreground }, | |||
transparent 90% | |||
); | |||
border-radius: ${ CONFIG.radiusBlockUi }; | |||
border-radius: ${ CONFIG.radiusFull }; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This used to be 2px and is now 9999px. I also don't see this in the list of changes in the PR description. Did you mean to use radiusSmall
or radiusMedium
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good question. Visually there's no change here which is why I didn't list it.
The design of the progress bar calls for a fully rounded track/indicator. Since it is only 2px tall radiusXSmall
(2px
) is technically adequate. However if we ever decide to increase the height of the progress bar then the track/indicator would no longer be fully rounded. But utilising radiusFull
we ensure the bar is fully rounded regardless of how tall it is.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Since it is only 2px tall radiusXSmall (2px) is technically adequate.
I assume you meant radiusSmall
(2px) since radiusXSmall
is 1px
.
Anyway, that's not a problem for your intent here, and making it rounded makes sense to me 👍
@@ -58,7 +58,7 @@ export const Indicator = styled.div< { | |||
position: absolute; | |||
top: 0; | |||
height: 100%; | |||
border-radius: ${ CONFIG.radiusBlockUi }; | |||
border-radius: ${ CONFIG.radiusFull }; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same as above.
@@ -9,7 +9,6 @@ | |||
.components-modal__content { | |||
padding: 0; | |||
margin-top: 0; | |||
border-radius: $radius-block-ui; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Agree to keep this consistent with the dialog/modal component we use 👍
import type { | ||
AlignmentMatrixControlProps, | ||
AlignmentMatrixControlCellProps, | ||
} from '../types'; | ||
|
||
export const rootBase = () => { | ||
return css` | ||
border-radius: 2px; | ||
border-radius: ${ CONFIG.radiusMedium }; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Did you mean to increase this to 4px
? I don't see it in the list of intended changes.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
My feeling is this falls into 'small container' territory. That said, I don't think the radius of this component is visually rendered anywhere?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That's correct. But why do we even need the border-radius
then? It feels like it's redundant.
If it's there just for the case when someone provides a custom background color, then why can't the consumer also add a border-radius when they need it?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I agree, but it seems safer to adjust the value here rather than remove it? We could remove it in a follow up with a dedicated changelog entry?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't mind keeping it if that's what you prefer 👍
@@ -1,7 +1,6 @@ | |||
.components-toolbar-group { | |||
min-height: $block-toolbar-height; | |||
border-right: $border-width solid $gray-900; | |||
background-color: $white; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This feels like something unintended. Should it be part of another PR? I know we're overriding the background color here and there, so we might want to audit those instances separately, for example:
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The change is intended; without it, the group background obscures the radius of the container:
We could add a radius to the group instead of removing the background, but that causes issues with the separator styling:
I don't mind extracting the toolbar change from this PR and updating it separately though. In fact that's probably a good idea given it's likely the most impactful change. We can discuss the intricacies in a different PR.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah, I'd prefer a separate PR if that's possible. But I'll leave that call to you, it doesn't feel like this is a blocker for this PR anyway.
The following accounts have interacted with this PR and/or linked issues. I will continue to update these lists as activity occurs. You can also manually ask me to refresh this list by adding the If you're merging code through a pull request on GitHub, copy and paste the following into the bottom of the merge commit message.
To understand the WordPress project's expectations around crediting contributors, please review the Contributor Attribution page in the Core Handbook. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM 👍 Thanks @jameskoster 🙌
Part of it can be split out to another PR, as discussed above, but that's not a blocker.
CHANGELOG will need a rebase before 🚢 .
Thanks for the review @tyxla :) I'd appreciate if someone from @WordPress/gutenberg-design could take a look when they get a second. |
We can try it! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you for working on this, @jameskoster !
I think we should be able to remove the radiusBlockUi
variable from the internal component config !
I also see snapshot tests failing — while we update them, let's take it as one additional way to make sure that there are no unintended changes in this PR.
Flaky tests detected in 92fbdbb. 🔍 Workflow run URL: https://github.com/WordPress/gutenberg/actions/runs/10407238926
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Changes are looking good!
We also have a few usages left of the controlBorderRadius
shared variable (in PaletteEdit
and ItemGroup
) — feel free to address them here or in a follow-up PR. Either way, we should then be able to remove controlBorderRadius
too from the shared config!
@jameskoster Looking good! We can go ahead and merge whenever you're ready to :) |
Most of the changes here do not lead to any visual differences. Those that do are a consequence of adopting the expanded radius scale and noted below. As a reminder here's the current scale and guidelines:
$radius-x-small:
Applied to elements like buttons nested within primitives like inputs.$radius-small
: Applied to most primitives.$radius-medium
: Applied to containers with smaller padding.$radius-large
: Applied to containers with larger padding.$radius-full
: For pills.$radius-round
: For circles and ovals.Color palette
The color card in the picker has increased radius.
Guide
The modal has increased radius. Arguably this should be inherited from the main
Modal
component—how do y'all feel about making that change here?Modal
Increased radius on outer container.
Placeholder
Increased radius on outer container.
Note
This change is only visible in Storybook. It seems that block placeholders override this, so there will be no visual change in-product.
Popover
Increased radius on outer container.
Snackbar
Increased radius on outer container.
Toggle Group Control
Decreased radius on inner buttons.
Unit control
Decreased radius on inner button.