From c40b32ade8ad5916d8f22d7632726a061a83baf5 Mon Sep 17 00:00:00 2001 From: Iestyn Williams Date: Mon, 6 Jul 2015 17:43:27 +0100 Subject: [PATCH 1/2] Make play nice with later plugins --- lost.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/lost.js b/lost.js index 805ef20b..abd86fe9 100644 --- a/lost.js +++ b/lost.js @@ -124,16 +124,16 @@ module.exports = postcss.plugin('lost', function lost(settings) { newBlock( decl, - ':after, :before', - ['content', 'display'], - ['\'\'', 'table'] + ':after', + ['content', 'display', 'clear'], + ['\'\'', 'table', 'both'] ); newBlock( decl, - ':after', - ['clear'], - ['both'] + ':before', + ['content', 'display'], + ['\'\'', 'table'] ); } From ca1a3aa3cec900dcb435c836a66e8d133177abb4 Mon Sep 17 00:00:00 2001 From: Iestyn Williams Date: Mon, 6 Jul 2015 17:51:02 +0100 Subject: [PATCH 2/2] 6.5.0 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 0268d4cd..711778da 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "lost", - "version": "6.4.0", + "version": "6.5.0", "description": "PostCSS fractional grid system built with calc() by the guy who built Jeet. Supports masonry, vertical, and waffle grids.", "main": "lost.js", "repository": {