From ab66d33c95f0e4756e487e9a77f7a1571817815f Mon Sep 17 00:00:00 2001 From: rhyneav Date: Sat, 8 Sep 2018 07:36:10 -0400 Subject: [PATCH 1/5] 1.5.3 --- package-lock.json | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package-lock.json b/package-lock.json index 9d3b4b3..ef53ff5 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "papercss", - "version": "1.5.1", + "version": "1.5.3", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index b816c0b..98aad74 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "papercss", - "version": "1.5.2", + "version": "1.5.3", "description": "The less formal CSS framework.", "main": "index.js", "scripts": { From 08e79b11742f11830a5feb38c8043f28535ae5cc Mon Sep 17 00:00:00 2001 From: rhyneav Date: Sat, 8 Sep 2018 07:37:35 -0400 Subject: [PATCH 2/5] bump to 1.5.3 --- docs/content/_index.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/docs/content/_index.md b/docs/content/_index.md index a200555..6d7fdf7 100644 --- a/docs/content/_index.md +++ b/docs/content/_index.md @@ -6,18 +6,18 @@ weight: -270 #### Download -Download the latest version (1.5.2) using either of the links below. Or +Download the latest version (1.5.3) using either of the links below. Or download an older release via Github. #### NPM -PaperCSS is available on NPM, current version 1.5.2. Install with npm install papercss --save and find the CSS in: +PaperCSS is available on NPM, current version 1.5.3. Install with npm install papercss --save and find the CSS in: * node_modules/papercss/dist/paper.css * node_modules/papercss/dist/paper.min.css @@ -27,8 +27,8 @@ PaperCSS is available on NPM, current version 1.5.2. Install with npm inst Don't want to download it? That's cool. You can just link to PaperCSS via [unpkg's CDN](https://unpkg.com/#/). You can use either: -* [https://unpkg.com/papercss@1.5.2/dist/paper.css](https://unpkg.com/papercss@1.5.2/dist/paper.css) -* [https://unpkg.com/papercss@1.5.2/dist/paper.min.css](https://unpkg.com/papercss@1.5.2/dist/paper.min.css) +* [https://unpkg.com/papercss@1.5.3/dist/paper.css](https://unpkg.com/papercss@1.5.3/dist/paper.css) +* [https://unpkg.com/papercss@1.5.3/dist/paper.min.css](https://unpkg.com/papercss@1.5.3/dist/paper.min.css) Here's a quck snippet to get started with PaperCSS: @@ -39,7 +39,7 @@ Here's a quck snippet to get started with PaperCSS: - + Document From 69281402158a79d1a0f969c0b3c4d1d9a2443ab4 Mon Sep 17 00:00:00 2001 From: Jeremy Pyne Date: Thu, 13 Sep 2018 16:44:39 -0400 Subject: [PATCH 3/5] Update _lists.scss Fix for badges in unordered lists. --- src/content/_lists.scss | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/content/_lists.scss b/src/content/_lists.scss index 0d116c1..922ed26 100644 --- a/src/content/_lists.scss +++ b/src/content/_lists.scss @@ -25,6 +25,10 @@ ul { li { text-indent: -7px; + + .badge { + text-indent: 0; + } &::before { left: -7px; From 8983ffd5019d29d2d96b82ecbe7a659675831b92 Mon Sep 17 00:00:00 2001 From: Jeremy Pyne Date: Wed, 19 Sep 2018 13:33:58 -0400 Subject: [PATCH 4/5] Update _lists.scss Also intent issue using popover in a list. --- src/content/_lists.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/_lists.scss b/src/content/_lists.scss index 922ed26..4677b5f 100644 --- a/src/content/_lists.scss +++ b/src/content/_lists.scss @@ -26,7 +26,7 @@ ul { li { text-indent: -7px; - .badge { + .badge, [popover-bottom]::after, [popover-left]::after, [popover-right]::after, [popover-top]::after { text-indent: 0; } From 6bac0981bac5ac800630d301e02fe0e9f52bada8 Mon Sep 17 00:00:00 2001 From: Jeremy Pyne Date: Mon, 24 Sep 2018 10:46:33 -0400 Subject: [PATCH 5/5] Update _lists.scss --- src/content/_lists.scss | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/content/_lists.scss b/src/content/_lists.scss index 4677b5f..a2840fd 100644 --- a/src/content/_lists.scss +++ b/src/content/_lists.scss @@ -26,7 +26,11 @@ ul { li { text-indent: -7px; - .badge, [popover-bottom]::after, [popover-left]::after, [popover-right]::after, [popover-top]::after { + .badge, + [popover-bottom]::after, + [popover-left]::after, + [popover-right]::after, + [popover-top]::after { text-indent: 0; }