Opened 10 years ago
Closed 10 years ago
#513 closed defect (bug) (fixed)
Submit button in Rosetta contact forms has incorrect padding
Reported by: | SergeyBiryukov | Owned by: | iandunn |
---|---|---|---|
Milestone: | Priority: | normal | |
Component: | International Sites (Rosetta) | Keywords: | |
Cc: |
Description
See the screenshot.
Attachments (3)
Change History (8)
#2
@
10 years ago
The font size should probably be increased as well, since it's a lot smaller than the rest of text on the page.
#3
@
10 years ago
Fix line-height in buttons by making them unitless.
As per http://meyerweb.com/eric/thoughts/2006/02/08/unitless-line-heights/ and http://css-tricks.com/almanac/properties/l/line-height/ line-heights are generally best left to be unitless. This especially applies to elements such as buttons where there's nothing to inherit.
The attached patch overrides the buttons css that is set in wp4.css (including the same selectors that that file sets)
In terms of font-size (and padding) I'm going to submit a separate patch as that needs to handle over-riding a different selector as that uses an ID.
@
10 years ago
Adjusted font-size, padding, height and width to be more inline with other buttons and other inputs in the form
Removing or overriding inherited
line-height: 23px
appears to fix this.