diff --git a/CHANGELOG.md b/CHANGELOG.md index a51a5b7277e..74af590da33 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/src/global_styling/reset/_reset.scss b/src/global_styling/reset/_reset.scss index ac5ee5a7052..62467ca549e 100644 --- a/src/global_styling/reset/_reset.scss +++ b/src/global_styling/reset/_reset.scss @@ -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, @@ -35,6 +34,10 @@ time, mark, audio, video { vertical-align: baseline; } +input, textarea, select, button { + font-family: inherit; /* 1 */ +} + em { font-style: italic; }