Skip to content

Commit

Permalink
Fix inherited line-height of inputs (#702)
Browse files Browse the repository at this point in the history
  • Loading branch information
cchaos authored Apr 25, 2018
1 parent 93ba5e5 commit 647f24f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
## [`master`](https://github.com/elastic/eui/tree/master)

No public interface changes since `0.0.43`.
**Bug fixes**

- Fixed inherited `line-height` of inputs and buttons ([#702](https://github.com/elastic/eui/pull/702))

## [`0.0.43`](https://github.com/elastic/eui/tree/v0.0.43)

Expand Down
5 changes: 4 additions & 1 deletion src/global_styling/reset/_reset.scss
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
input, textarea, select, button,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
Expand All @@ -35,6 +34,10 @@ time, mark, audio, video {
vertical-align: baseline;
}

input, textarea, select, button {
font-family: inherit; /* 1 */
}

em {
font-style: italic;
}
Expand Down

0 comments on commit 647f24f

Please sign in to comment.