Skip to content
Open
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
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ parameters:
# 3. Commit this change to the PR branch where the changes exist.
current_golden_images_hash:
type: string
default: 94764405d1674838a93d6c6a39e793df39fc301e
default: 6e25ce9467fb1798f192578becb305b5d00ffb72
wireit_cache_name:
type: string
default: wireit
Expand Down
4 changes: 3 additions & 1 deletion packages/field-label/src/field-label.css
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,7 @@
@import url("./field-label-overrides.css");

label {
display: inline-block;
display: inline-flex;
align-items: baseline;
white-space: nowrap;
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm seeing that this longer field label example has stopped wrapping because we have nowrap on here, do we want the field label to wrap for situations like this?

Image

It doesn't seem like we have VRTs covering this situation as far as I can see, it would be good to address this gap in coverage too.

}
1 change: 1 addition & 0 deletions packages/field-label/src/spectrum-field-label.css
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@
margin-inline: var(--mod-field-label-text-to-asterisk, var(--spectrum-field-label-text-to-asterisk)) 0;
vertical-align: initial;
vertical-align: var(--mod-field-label-asterisk-vertical-align, baseline);
flex-shrink: 0;
}

:host([side-aligned="start"]),
Expand Down
Loading