Opened 20 months ago
Last modified 19 months ago
#7837 new defect (bug)
Support: Search field icon not vertically aligned
| Reported by: | nishitajoshi | Owned by: | |
|---|---|---|---|
| Priority: | normal | Milestone: | |
| Component: | Support Forums | Keywords: | |
| Cc: |
Description
Support URL search button has not in sync alignment with Search forums text.
This should be align as other page search buttons have.
Page URL: https://wordpress.org/support/welcome/
Attachments (2)
Change History (8)
#1
@
20 months ago
Thank you, @nishitajoshi, for the ticket. I was able to reproduce the issue you described.
This is happening due to the following CSS:
.search-form .button-search {
// other properties...
padding-block: var(--wp--custom--form--padding--block);
// other properties...
}
#2
@
20 months ago
The optimal solution would be to use 'display: flex;' and 'align-items: center;' for Responsive and consistent alignment.
.search-form .button-search {
display: flex;
align-items: center;
}
This ticket was mentioned in Slack in #meta by nishitajoshi. View the logs.
19 months ago
Note:
See TracTickets
for help on using tickets.
![(please configure the [header_logo] section in trac.ini)](/chrome/site/your_project_logo.png)
This should be align in Search forum text with responsive devices as well.