-
Notifications
You must be signed in to change notification settings - Fork 4.4k
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
Background images: add defaults for background size #62046
Merged
ramonjd
merged 9 commits into
trunk
from
update/background-image-controls-size-defaults
May 30, 2024
Merged
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
3a60214
This commit experiments with setting a default background size of 50%…
ramonjd 7d4520c
Checking for default value when uploading/selecting an image
ramonjd c44cdab
Rolling back setting the default to 50% - the UX is not clear. Should…
ramonjd 5e6f385
Check for an id, which indicates that the image has been uploaded to …
ramonjd 3e1e3a2
When switching to "Tile" in the background size toggle, roll back def…
ramonjd ebfb30e
Check for existing backgroundPosition
ramonjd 32a2e6c
Clear position values between toggling
ramonjd aa0019b
Don't need value check as it's always reset
ramonjd f2c6e31
Ensure that the default position 50% 0 is set when changing/uploading…
ramonjd File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Setting to
undefined
between toggles so that"50% 0"
doesn't persist.This means however, that any user-defined position values are lost as well.
I'm wondering if we should save the value in local state and only reset when a default value is detected, e.g,
"50% 0"
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.
IMO it's fine to reset the position when switching between sizes as you're kind of resetting how the image will appear anyway. Could be a follow-up PR if we think it's needed after all?