From 9f59f01dd3007a4c8dd80a7c56533be17d17be25 Mon Sep 17 00:00:00 2001 From: Tilo Mitra Date: Thu, 6 Mar 2014 12:02:52 -0500 Subject: [PATCH] add HISTORY.md for Grids and Base changes --- HISTORY.md | 21 +++++++++++++++++++++ src/base/css/base.css | 1 + 2 files changed, 22 insertions(+) diff --git a/HISTORY.md b/HISTORY.md index f4290fd..b91c0e0 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -4,9 +4,30 @@ Pure Change History NEXT ---- +### Base + +* Added the `.pure-img` class name for make images scale with the viewport in + fluid layouts. + +### Grids + +* __[!]__ Removed `.pure-g-r` from core, in favor of a mobile-first responsive + grid system. To use the mobile-first grid system, you need to pull in + `pure.css`, along with `grids-responsive.css`: + + ```html + + + ``` + + Find out more about the new grid system at [http://purecss.io/grids/][Grids]. + +### Tables + * Switched cell padding in Tables from `px` to `em` units, and also increased the amount of padding to `padding: 0.5em 1em`. +[Grids]: http://purecss.io/grids/ 0.4.2 (2014-02-13) ------------------ diff --git a/src/base/css/base.css b/src/base/css/base.css index edaa861..3c13322 100644 --- a/src/base/css/base.css +++ b/src/base/css/base.css @@ -23,4 +23,5 @@ .pure-img { max-width: 100%; height: auto; + display: block; }