Minor Release (v1.3.2)

This commit is contained in:
Lucas Larroche 2021-07-18 10:35:59 +07:00
parent dc42ec62f3
commit 67c60cf4db
16 changed files with 24 additions and 22 deletions

View file

@ -54,7 +54,7 @@ There are 3 ways to get started with pico.css:
**Install from CDN** **Install from CDN**
Alternatively, you can use the [unpkg CDN](https://unpkg.com/@picocss/pico@latest/) to link pico.css. Alternatively, you can use [unpkg CDN](https://unpkg.com/@picocss/pico@latest/) to link pico.css.
```html ```html
<link rel="stylesheet" href="https://unpkg.com/@picocss/pico@latest/css/pico.min.css"> <link rel="stylesheet" href="https://unpkg.com/@picocss/pico@latest/css/pico.min.css">

View file

@ -1,5 +1,5 @@
/*! /*!
* Pico.css v1.3.1 (https://picocss.com) * Pico.css v1.3.2 (https://picocss.com)
* Copyright 2019-2021 - Licensed under MIT * Copyright 2019-2021 - Licensed under MIT
*/ */
/** /**

File diff suppressed because one or more lines are too long

View file

@ -1,5 +1,5 @@
/*! /*!
* Pico.css v1.3.1 (https://picocss.com) * Pico.css v1.3.2 (https://picocss.com)
* Copyright 2019-2021 - Licensed under MIT * Copyright 2019-2021 - Licensed under MIT
*/ */
/** /**

View file

@ -1,5 +1,5 @@
/*! /*!
* Pico.css v1.3.1 (https://picocss.com) * Pico.css v1.3.2 (https://picocss.com)
* Copyright 2019-2021 - Licensed under MIT * Copyright 2019-2021 - Licensed under MIT
*/ */
/** /**

File diff suppressed because one or more lines are too long

2
css/pico.min.css vendored

File diff suppressed because one or more lines are too long

View file

@ -1,5 +1,5 @@
/*! /*!
* Pico.css v1.3.1 (https://picocss.com) * Pico.css v1.3.2 (https://picocss.com)
* Copyright 2019-2021 - Licensed under MIT * Copyright 2019-2021 - Licensed under MIT
* *
* Slim version example * Slim version example

View file

@ -1,5 +1,5 @@
/*! /*!
* Pico.css v1.3.1 (https://picocss.com) * Pico.css v1.3.2 (https://picocss.com)
* Copyright 2019-2021 - Licensed under MIT * Copyright 2019-2021 - Licensed under MIT
* *
* Slim version example * Slim version example

View file

@ -154,7 +154,7 @@ main > aside li, main > aside summary {
} }
main > aside li a { main > aside li a {
padding: 0.375rem 0.5rem; padding: 0.25rem 0.5rem;
} }
main > aside li a svg { main > aside li a svg {
@ -177,7 +177,7 @@ main > aside details {
} }
main > aside details summary { main > aside details summary {
color: var(--h3-color); color: var(--h1-color);
font-size: 14px; font-size: 14px;
font-weight: 300; font-weight: 300;
text-transform: uppercase; text-transform: uppercase;
@ -187,8 +187,8 @@ main > aside details summary::after {
display: none; display: none;
} }
main > aside details[open] summary { main > aside details[open] > summary:not(:focus) {
color: var(--h3-color); color: var(--h1-color);
} }
/** /**

File diff suppressed because one or more lines are too long

View file

@ -112,7 +112,7 @@
<p><a href="https://github.com/picocss/pico/archive/refs/heads/master.zip">Download Pico</a> and link <code>/css/pico.min.css</code> in the <code>&lt;<b>head</b>&gt;</code> of your website.</p> <p><a href="https://github.com/picocss/pico/archive/refs/heads/master.zip">Download Pico</a> and link <code>/css/pico.min.css</code> in the <code>&lt;<b>head</b>&gt;</code> of your website.</p>
<pre><code>&lt;<b>link</b> <i>rel</i>=<u>"stylesheet"</u> <i>href</i>=<u>"css/pico.min.css"</u>&gt;</code></pre> <pre><code>&lt;<b>link</b> <i>rel</i>=<u>"stylesheet"</u> <i>href</i>=<u>"css/pico.min.css"</u>&gt;</code></pre>
<h4>Install from CDN</h4> <h4>Install from CDN</h4>
<p>Alternatively, you can use the <a href="https://unpkg.com/@picocss/pico@latest/">unpkg CDN</a> to link pico.css</p> <p>Alternatively, you can use <a href="https://unpkg.com/@picocss/pico@latest/">unpkg CDN</a> to link pico.css</p>
<pre><code>&lt;<b>link</b> <i>rel</i>=<u>"stylesheet"</u> <i>href</i>=<u>"https://unpkg.com/@picocss/pico@latest/css/pico.min.css"</u>&gt;</code></pre> <pre><code>&lt;<b>link</b> <i>rel</i>=<u>"stylesheet"</u> <i>href</i>=<u>"https://unpkg.com/@picocss/pico@latest/css/pico.min.css"</u>&gt;</code></pre>
<h4>Install with NPM</h4> <h4>Install with NPM</h4>
<pre><code><b>npm</b> <i>install</i> <u>@picocss/pico</u></code></pre> <pre><code><b>npm</b> <i>install</i> <u>@picocss/pico</u></code></pre>

View file

@ -33,7 +33,7 @@ main > aside {
} }
li a { li a {
padding: 0.375rem 0.5rem; padding: 0.25rem 0.5rem;
svg { svg {
vertical-align: middle; vertical-align: middle;
@ -55,7 +55,7 @@ main > aside {
border-bottom: none; border-bottom: none;
summary { summary {
color: var(--h3-color); color: var(--h1-color);
font-size: 14px; font-size: 14px;
font-weight: 300; font-weight: 300;
text-transform: uppercase; text-transform: uppercase;
@ -65,8 +65,10 @@ main > aside {
} }
} }
&[open] summary { &[open] {
color: var(--h3-color); >summary:not(:focus) {
color: var(--h1-color);
}
} }
} }
} }

View file

@ -1,6 +1,6 @@
{ {
"name": "@picocss/pico", "name": "@picocss/pico",
"version": "1.3.1", "version": "1.3.2",
"description": "Graceful & Minimal CSS design system in pure semantic HTML", "description": "Graceful & Minimal CSS design system in pure semantic HTML",
"author": "Lucas Larroche", "author": "Lucas Larroche",
"main": "css/pico.min.css", "main": "css/pico.min.css",

View file

@ -1,5 +1,5 @@
/*! /*!
* Pico.css v1.3.1 (https://picocss.com) * Pico.css v1.3.2 (https://picocss.com)
* Copyright 2019-2021 - Licensed under MIT * Copyright 2019-2021 - Licensed under MIT
*/ */

View file

@ -1,5 +1,5 @@
/*! /*!
* Pico.css v1.3.1 (https://picocss.com) * Pico.css v1.3.2 (https://picocss.com)
* Copyright 2019-2021 - Licensed under MIT * Copyright 2019-2021 - Licensed under MIT
* *
* Slim version example * Slim version example