1
mirror of https://github.com/pure-css/pure synced 2024-11-26 08:27:21 +01:00

Tweak NEXT HISTORY.md entries formatting, groups, and add attribution

This tweaks the NEXT HSITORY.md entries in the following ways:

* Grouped them by CSS module.
* Moves (!) important ones to the top.
* Uses parenthises () instead of brackets [] to prevent Markdown links.
* Adds attribution for external contributions.
This commit is contained in:
Eric Ferraiuolo 2013-06-04 00:43:17 -04:00
parent 60016f7e37
commit 64883b5b03

View File

@ -4,17 +4,24 @@ Pure Change History
NEXT
----
* Fixed: Responsive grids fails to apply when another class precedes the unit
class in markup. [#44]
* Fixed: textarea does not match input styling in forms. [#49]
### Forms
* (!) `.pure-help-inline` has been replaced with `.pure-form-message-inline`. We
still support the older class name but it is deprecated and will be going away
in a future release. [#32]
still support the older classname but it is deprecated and will be going away
in a future release. (Issue #32) (dannytatom)
* Added a new class called `.pure-form-message`. It works the same way as
`.pure-form-message-inline` but is meant for block elements. [#32]
`.pure-form-message-inline` but is meant for block elements. (Issue #32)
(dannytatom)
* `<textarea>`s now have the same styling as `<input>`s. (Issue #49) (rcbdev)
### Grids
* Adding a classname before the responsive grid's unit classname now works.
Before units were targeted using the `^=` ("starts with") selector, which
meant that if another classname preceded the unit classname, then the rule
would not apply. (Issue #44)
0.1.0 (2013-05-24)