#7218 closed defect (bug) (fixed)
Data Request screen not fully responsive
Reported by: | akureshi | Owned by: | coffee2code |
---|---|---|---|
Milestone: | Priority: | lowest | |
Component: | WordPress.org Site | Keywords: | changes-requested |
Cc: |
Description
in mobile view page overflow horizontal for button text is very long as screen width.
Attachments (1)
Change History (6)
#1
@
13 months ago
- Keywords needs-design needs-design-feedback removed
- Priority changed from normal to lowest
- Summary changed from Design Break in Mobile Responsive to Data Request screen not fully responsive
Hello,
Please always include a link to the page in question.
https://wordpress.org/about/privacy/data-erasure-request/
The specific issue is that the input[type="submit"]
does not wrap, and the label is too wide for the screen width chosen in the video.
I believe this is a duplicate of another issue, but I'm not going to search for it right now.
This probably won't be fixed directly, as this page is one of the few remaining pages to be migrated to a new theme: https://github.com/WordPress/wporg-main-2022
#2
@
13 months ago
- Resolution set to reported-upstream
- Status changed from new to closed
Changes white-space: nowrap; to white-space: normal; below this code work fine.
.button, .button-primary, .button-secondary, .plugin-upload-form .button-primary, input[type=submit]{
white-space: normal;
}
#3
@
13 months ago
- Keywords changes-requested added
- Resolution reported-upstream deleted
- Status changed from closed to reopened
Changes white-space: nowrap; to white-space: normal; below this code work fine.
.button, .button-primary, .button-secondary, .plugin-upload-form .button-primary, input[type=submit]{
white-space: normal;
}
#4
@
10 months ago
- Owner set to coffee2code
- Resolution set to fixed
- Status changed from reopened to closed
In 13005:
Design Break in Mobile Responsive