Merge branch 'textarea-vtop' of github.com:rictorres/pure into rictorres-textarea-vtop

Conflicts:
	HISTORY.md
This commit is contained in:
Eric Ferraiuolo 2013-11-06 15:02:59 -08:00
commit bdc76d6fd0
2 changed files with 10 additions and 0 deletions

View File

@ -18,7 +18,14 @@ NEXT
`font-family: inherit;` has been added to the `.pure-button` selector to
normalize the difference in height. ([#221][] @narcis-radu)
### Forms
* Added `vertical-align: top;` to `<textarea>`s within `.pure-form-aligned`
Forms to fix an alignment issue where its label was aligned to the middle.
([#174][] @rictorres, @ItsAsbreuk)
[#174]: https://github.com/yui/pure/issues/174
[#200]: https://github.com/yui/pure/issues/200
[#221]: https://github.com/yui/pure/issues/221

View File

@ -164,6 +164,9 @@
*zoom: 1;
vertical-align: middle;
}
.pure-form-aligned textarea {
vertical-align: top;
}
/* Aligned Forms */
.pure-form-aligned .pure-control-group {