Merge pull request #453 from picocss/dev

v2.0.1
This commit is contained in:
Lucas Larroche 2024-02-17 10:11:32 +07:00 committed by GitHub
commit 506e82cb8f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
244 changed files with 1097 additions and 973 deletions

View file

@ -1,6 +1,6 @@
@charset "UTF-8"; @charset "UTF-8";
/*! /*!
* Pico CSS v2.0.0 (https://picocss.com) * Pico CSS v2.0.1 (https://picocss.com)
* Copyright 2019-2024 - Licensed under MIT * Copyright 2019-2024 - Licensed under MIT
*/ */
/** /**
@ -628,7 +628,6 @@ progress,
text-underline-offset: var(--pico-text-underline-offset); text-underline-offset: var(--pico-text-underline-offset);
text-rendering: optimizeLegibility; text-rendering: optimizeLegibility;
overflow-wrap: break-word; overflow-wrap: break-word;
cursor: default;
-moz-tab-size: 4; -moz-tab-size: 4;
-o-tab-size: 4; -o-tab-size: 4;
tab-size: 4; tab-size: 4;
@ -1857,7 +1856,7 @@ input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=time] {
input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=search] { input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=search] {
padding-inline-start: calc(var(--pico-form-element-spacing-horizontal) + 1.75rem); padding-inline-start: calc(var(--pico-form-element-spacing-horizontal) + 1.75rem);
background-image: var(--pico-icon-search); background-image: var(--pico-icon-search);
background-position: center left 1.125rem; background-position: center left calc(var(--pico-form-element-spacing-horizontal) + 0.125rem);
background-size: 1rem auto; background-size: 1rem auto;
background-repeat: no-repeat; background-repeat: no-repeat;
} }
@ -2353,7 +2352,7 @@ dialog article {
dialog article > header > * { dialog article > header > * {
margin-bottom: 0; margin-bottom: 0;
} }
dialog article > header .close, dialog article > header a[rel=prev] { dialog article > header .close, dialog article > header :is(a, button)[rel=prev] {
margin: 0; margin: 0;
margin-left: var(--pico-spacing); margin-left: var(--pico-spacing);
float: right; float: right;
@ -2369,21 +2368,23 @@ dialog article > footer button:not(:first-of-type),
dialog article > footer [role=button]:not(:first-of-type) { dialog article > footer [role=button]:not(:first-of-type) {
margin-left: calc(var(--pico-spacing) * 0.5); margin-left: calc(var(--pico-spacing) * 0.5);
} }
dialog article .close, dialog article a[rel=prev] { dialog article .close, dialog article :is(a, button)[rel=prev] {
display: block; display: block;
width: 1rem; width: 1rem;
height: 1rem; height: 1rem;
margin-top: calc(var(--pico-spacing) * -1); margin-top: calc(var(--pico-spacing) * -1);
margin-bottom: var(--pico-spacing); margin-bottom: var(--pico-spacing);
margin-left: auto; margin-left: auto;
border: none;
background-image: var(--pico-icon-close); background-image: var(--pico-icon-close);
background-position: center; background-position: center;
background-size: auto 1rem; background-size: auto 1rem;
background-repeat: no-repeat; background-repeat: no-repeat;
background-color: transparent;
opacity: 0.5; opacity: 0.5;
transition: opacity var(--pico-transition); transition: opacity var(--pico-transition);
} }
dialog article .close:is([aria-current]:not([aria-current=false]), :hover, :active, :focus), dialog article a[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) { dialog article .close:is([aria-current]:not([aria-current=false]), :hover, :active, :focus), dialog article :is(a, button)[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
opacity: 1; opacity: 1;
} }
dialog:not([open]), dialog[open=false] { dialog:not([open]), dialog[open=false] {

File diff suppressed because one or more lines are too long

View file

@ -1,6 +1,6 @@
@charset "UTF-8"; @charset "UTF-8";
/*! /*!
* Pico CSS v2.0.0 (https://picocss.com) * Pico CSS v2.0.1 (https://picocss.com)
* Copyright 2019-2024 - Licensed under MIT * Copyright 2019-2024 - Licensed under MIT
*/ */
/** /**
@ -628,7 +628,6 @@ progress,
text-underline-offset: var(--pico-text-underline-offset); text-underline-offset: var(--pico-text-underline-offset);
text-rendering: optimizeLegibility; text-rendering: optimizeLegibility;
overflow-wrap: break-word; overflow-wrap: break-word;
cursor: default;
-moz-tab-size: 4; -moz-tab-size: 4;
-o-tab-size: 4; -o-tab-size: 4;
tab-size: 4; tab-size: 4;
@ -1857,7 +1856,7 @@ input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=time] {
input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=search] { input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=search] {
padding-inline-start: calc(var(--pico-form-element-spacing-horizontal) + 1.75rem); padding-inline-start: calc(var(--pico-form-element-spacing-horizontal) + 1.75rem);
background-image: var(--pico-icon-search); background-image: var(--pico-icon-search);
background-position: center left 1.125rem; background-position: center left calc(var(--pico-form-element-spacing-horizontal) + 0.125rem);
background-size: 1rem auto; background-size: 1rem auto;
background-repeat: no-repeat; background-repeat: no-repeat;
} }
@ -2353,7 +2352,7 @@ dialog article {
dialog article > header > * { dialog article > header > * {
margin-bottom: 0; margin-bottom: 0;
} }
dialog article > header .close, dialog article > header a[rel=prev] { dialog article > header .close, dialog article > header :is(a, button)[rel=prev] {
margin: 0; margin: 0;
margin-left: var(--pico-spacing); margin-left: var(--pico-spacing);
float: right; float: right;
@ -2369,21 +2368,23 @@ dialog article > footer button:not(:first-of-type),
dialog article > footer [role=button]:not(:first-of-type) { dialog article > footer [role=button]:not(:first-of-type) {
margin-left: calc(var(--pico-spacing) * 0.5); margin-left: calc(var(--pico-spacing) * 0.5);
} }
dialog article .close, dialog article a[rel=prev] { dialog article .close, dialog article :is(a, button)[rel=prev] {
display: block; display: block;
width: 1rem; width: 1rem;
height: 1rem; height: 1rem;
margin-top: calc(var(--pico-spacing) * -1); margin-top: calc(var(--pico-spacing) * -1);
margin-bottom: var(--pico-spacing); margin-bottom: var(--pico-spacing);
margin-left: auto; margin-left: auto;
border: none;
background-image: var(--pico-icon-close); background-image: var(--pico-icon-close);
background-position: center; background-position: center;
background-size: auto 1rem; background-size: auto 1rem;
background-repeat: no-repeat; background-repeat: no-repeat;
background-color: transparent;
opacity: 0.5; opacity: 0.5;
transition: opacity var(--pico-transition); transition: opacity var(--pico-transition);
} }
dialog article .close:is([aria-current]:not([aria-current=false]), :hover, :active, :focus), dialog article a[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) { dialog article .close:is([aria-current]:not([aria-current=false]), :hover, :active, :focus), dialog article :is(a, button)[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
opacity: 1; opacity: 1;
} }
dialog:not([open]), dialog[open=false] { dialog:not([open]), dialog[open=false] {

File diff suppressed because one or more lines are too long

View file

@ -1,6 +1,6 @@
@charset "UTF-8"; @charset "UTF-8";
/*! /*!
* Pico CSS v2.0.0 (https://picocss.com) * Pico CSS v2.0.1 (https://picocss.com)
* Copyright 2019-2024 - Licensed under MIT * Copyright 2019-2024 - Licensed under MIT
*/ */
/** /**
@ -560,7 +560,6 @@ progress,
text-underline-offset: var(--pico-text-underline-offset); text-underline-offset: var(--pico-text-underline-offset);
text-rendering: optimizeLegibility; text-rendering: optimizeLegibility;
overflow-wrap: break-word; overflow-wrap: break-word;
cursor: default;
-moz-tab-size: 4; -moz-tab-size: 4;
-o-tab-size: 4; -o-tab-size: 4;
tab-size: 4; tab-size: 4;
@ -1691,7 +1690,7 @@ input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=time] {
input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=search] { input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=search] {
padding-inline-start: calc(var(--pico-form-element-spacing-horizontal) + 1.75rem); padding-inline-start: calc(var(--pico-form-element-spacing-horizontal) + 1.75rem);
background-image: var(--pico-icon-search); background-image: var(--pico-icon-search);
background-position: center left 1.125rem; background-position: center left calc(var(--pico-form-element-spacing-horizontal) + 0.125rem);
background-size: 1rem auto; background-size: 1rem auto;
background-repeat: no-repeat; background-repeat: no-repeat;
} }
@ -2027,7 +2026,7 @@ dialog article {
dialog article > header > * { dialog article > header > * {
margin-bottom: 0; margin-bottom: 0;
} }
dialog article > header a[rel=prev] { dialog article > header :is(a, button)[rel=prev] {
margin: 0; margin: 0;
margin-left: var(--pico-spacing); margin-left: var(--pico-spacing);
float: right; float: right;
@ -2043,21 +2042,23 @@ dialog article > footer button:not(:first-of-type),
dialog article > footer [role=button]:not(:first-of-type) { dialog article > footer [role=button]:not(:first-of-type) {
margin-left: calc(var(--pico-spacing) * 0.5); margin-left: calc(var(--pico-spacing) * 0.5);
} }
dialog article a[rel=prev] { dialog article :is(a, button)[rel=prev] {
display: block; display: block;
width: 1rem; width: 1rem;
height: 1rem; height: 1rem;
margin-top: calc(var(--pico-spacing) * -1); margin-top: calc(var(--pico-spacing) * -1);
margin-bottom: var(--pico-spacing); margin-bottom: var(--pico-spacing);
margin-left: auto; margin-left: auto;
border: none;
background-image: var(--pico-icon-close); background-image: var(--pico-icon-close);
background-position: center; background-position: center;
background-size: auto 1rem; background-size: auto 1rem;
background-repeat: no-repeat; background-repeat: no-repeat;
background-color: transparent;
opacity: 0.5; opacity: 0.5;
transition: opacity var(--pico-transition); transition: opacity var(--pico-transition);
} }
dialog article a[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) { dialog article :is(a, button)[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
opacity: 1; opacity: 1;
} }
dialog:not([open]), dialog[open=false] { dialog:not([open]), dialog[open=false] {

File diff suppressed because one or more lines are too long

View file

@ -1,6 +1,6 @@
@charset "UTF-8"; @charset "UTF-8";
/*! /*!
* Pico CSS v2.0.0 (https://picocss.com) * Pico CSS v2.0.1 (https://picocss.com)
* Copyright 2019-2024 - Licensed under MIT * Copyright 2019-2024 - Licensed under MIT
*/ */
/** /**
@ -560,7 +560,6 @@ progress,
text-underline-offset: var(--pico-text-underline-offset); text-underline-offset: var(--pico-text-underline-offset);
text-rendering: optimizeLegibility; text-rendering: optimizeLegibility;
overflow-wrap: break-word; overflow-wrap: break-word;
cursor: default;
-moz-tab-size: 4; -moz-tab-size: 4;
-o-tab-size: 4; -o-tab-size: 4;
tab-size: 4; tab-size: 4;
@ -1691,7 +1690,7 @@ input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=time] {
input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=search] { input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=search] {
padding-inline-start: calc(var(--pico-form-element-spacing-horizontal) + 1.75rem); padding-inline-start: calc(var(--pico-form-element-spacing-horizontal) + 1.75rem);
background-image: var(--pico-icon-search); background-image: var(--pico-icon-search);
background-position: center left 1.125rem; background-position: center left calc(var(--pico-form-element-spacing-horizontal) + 0.125rem);
background-size: 1rem auto; background-size: 1rem auto;
background-repeat: no-repeat; background-repeat: no-repeat;
} }
@ -2027,7 +2026,7 @@ dialog article {
dialog article > header > * { dialog article > header > * {
margin-bottom: 0; margin-bottom: 0;
} }
dialog article > header a[rel=prev] { dialog article > header :is(a, button)[rel=prev] {
margin: 0; margin: 0;
margin-left: var(--pico-spacing); margin-left: var(--pico-spacing);
float: right; float: right;
@ -2043,21 +2042,23 @@ dialog article > footer button:not(:first-of-type),
dialog article > footer [role=button]:not(:first-of-type) { dialog article > footer [role=button]:not(:first-of-type) {
margin-left: calc(var(--pico-spacing) * 0.5); margin-left: calc(var(--pico-spacing) * 0.5);
} }
dialog article a[rel=prev] { dialog article :is(a, button)[rel=prev] {
display: block; display: block;
width: 1rem; width: 1rem;
height: 1rem; height: 1rem;
margin-top: calc(var(--pico-spacing) * -1); margin-top: calc(var(--pico-spacing) * -1);
margin-bottom: var(--pico-spacing); margin-bottom: var(--pico-spacing);
margin-left: auto; margin-left: auto;
border: none;
background-image: var(--pico-icon-close); background-image: var(--pico-icon-close);
background-position: center; background-position: center;
background-size: auto 1rem; background-size: auto 1rem;
background-repeat: no-repeat; background-repeat: no-repeat;
background-color: transparent;
opacity: 0.5; opacity: 0.5;
transition: opacity var(--pico-transition); transition: opacity var(--pico-transition);
} }
dialog article a[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) { dialog article :is(a, button)[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
opacity: 1; opacity: 1;
} }
dialog:not([open]), dialog[open=false] { dialog:not([open]), dialog[open=false] {

File diff suppressed because one or more lines are too long

View file

@ -1,6 +1,6 @@
@charset "UTF-8"; @charset "UTF-8";
/*! /*!
* Pico CSS v2.0.0 (https://picocss.com) * Pico CSS v2.0.1 (https://picocss.com)
* Copyright 2019-2024 - Licensed under MIT * Copyright 2019-2024 - Licensed under MIT
*/ */
/** /**
@ -560,7 +560,6 @@ input:not([type=submit],
text-underline-offset: var(--pico-text-underline-offset); text-underline-offset: var(--pico-text-underline-offset);
text-rendering: optimizeLegibility; text-rendering: optimizeLegibility;
overflow-wrap: break-word; overflow-wrap: break-word;
cursor: default;
-moz-tab-size: 4; -moz-tab-size: 4;
-o-tab-size: 4; -o-tab-size: 4;
tab-size: 4; tab-size: 4;
@ -1691,7 +1690,7 @@ main {
.pico input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=search] { .pico input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=search] {
padding-inline-start: calc(var(--pico-form-element-spacing-horizontal) + 1.75rem); padding-inline-start: calc(var(--pico-form-element-spacing-horizontal) + 1.75rem);
background-image: var(--pico-icon-search); background-image: var(--pico-icon-search);
background-position: center left 1.125rem; background-position: center left calc(var(--pico-form-element-spacing-horizontal) + 0.125rem);
background-size: 1rem auto; background-size: 1rem auto;
background-repeat: no-repeat; background-repeat: no-repeat;
} }
@ -2027,7 +2026,7 @@ main {
.pico dialog article > header > * { .pico dialog article > header > * {
margin-bottom: 0; margin-bottom: 0;
} }
.pico dialog article > header a[rel=prev] { .pico dialog article > header :is(a, button)[rel=prev] {
margin: 0; margin: 0;
margin-left: var(--pico-spacing); margin-left: var(--pico-spacing);
float: right; float: right;
@ -2043,21 +2042,23 @@ main {
.pico dialog article > footer [role=button]:not(:first-of-type) { .pico dialog article > footer [role=button]:not(:first-of-type) {
margin-left: calc(var(--pico-spacing) * 0.5); margin-left: calc(var(--pico-spacing) * 0.5);
} }
.pico dialog article a[rel=prev] { .pico dialog article :is(a, button)[rel=prev] {
display: block; display: block;
width: 1rem; width: 1rem;
height: 1rem; height: 1rem;
margin-top: calc(var(--pico-spacing) * -1); margin-top: calc(var(--pico-spacing) * -1);
margin-bottom: var(--pico-spacing); margin-bottom: var(--pico-spacing);
margin-left: auto; margin-left: auto;
border: none;
background-image: var(--pico-icon-close); background-image: var(--pico-icon-close);
background-position: center; background-position: center;
background-size: auto 1rem; background-size: auto 1rem;
background-repeat: no-repeat; background-repeat: no-repeat;
background-color: transparent;
opacity: 0.5; opacity: 0.5;
transition: opacity var(--pico-transition); transition: opacity var(--pico-transition);
} }
.pico dialog article a[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) { .pico dialog article :is(a, button)[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
opacity: 1; opacity: 1;
} }
.pico dialog:not([open]), .pico dialog[open=false] { .pico dialog:not([open]), .pico dialog[open=false] {

File diff suppressed because one or more lines are too long

View file

@ -1,6 +1,6 @@
@charset "UTF-8"; @charset "UTF-8";
/*! /*!
* Pico CSS v2.0.0 (https://picocss.com) * Pico CSS v2.0.1 (https://picocss.com)
* Copyright 2019-2024 - Licensed under MIT * Copyright 2019-2024 - Licensed under MIT
*/ */
/** /**
@ -560,7 +560,6 @@ input:not([type=submit],
text-underline-offset: var(--pico-text-underline-offset); text-underline-offset: var(--pico-text-underline-offset);
text-rendering: optimizeLegibility; text-rendering: optimizeLegibility;
overflow-wrap: break-word; overflow-wrap: break-word;
cursor: default;
-moz-tab-size: 4; -moz-tab-size: 4;
-o-tab-size: 4; -o-tab-size: 4;
tab-size: 4; tab-size: 4;
@ -1691,7 +1690,7 @@ main {
.pico input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=search] { .pico input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=search] {
padding-inline-start: calc(var(--pico-form-element-spacing-horizontal) + 1.75rem); padding-inline-start: calc(var(--pico-form-element-spacing-horizontal) + 1.75rem);
background-image: var(--pico-icon-search); background-image: var(--pico-icon-search);
background-position: center left 1.125rem; background-position: center left calc(var(--pico-form-element-spacing-horizontal) + 0.125rem);
background-size: 1rem auto; background-size: 1rem auto;
background-repeat: no-repeat; background-repeat: no-repeat;
} }
@ -2027,7 +2026,7 @@ main {
.pico dialog article > header > * { .pico dialog article > header > * {
margin-bottom: 0; margin-bottom: 0;
} }
.pico dialog article > header a[rel=prev] { .pico dialog article > header :is(a, button)[rel=prev] {
margin: 0; margin: 0;
margin-left: var(--pico-spacing); margin-left: var(--pico-spacing);
float: right; float: right;
@ -2043,21 +2042,23 @@ main {
.pico dialog article > footer [role=button]:not(:first-of-type) { .pico dialog article > footer [role=button]:not(:first-of-type) {
margin-left: calc(var(--pico-spacing) * 0.5); margin-left: calc(var(--pico-spacing) * 0.5);
} }
.pico dialog article a[rel=prev] { .pico dialog article :is(a, button)[rel=prev] {
display: block; display: block;
width: 1rem; width: 1rem;
height: 1rem; height: 1rem;
margin-top: calc(var(--pico-spacing) * -1); margin-top: calc(var(--pico-spacing) * -1);
margin-bottom: var(--pico-spacing); margin-bottom: var(--pico-spacing);
margin-left: auto; margin-left: auto;
border: none;
background-image: var(--pico-icon-close); background-image: var(--pico-icon-close);
background-position: center; background-position: center;
background-size: auto 1rem; background-size: auto 1rem;
background-repeat: no-repeat; background-repeat: no-repeat;
background-color: transparent;
opacity: 0.5; opacity: 0.5;
transition: opacity var(--pico-transition); transition: opacity var(--pico-transition);
} }
.pico dialog article a[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) { .pico dialog article :is(a, button)[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
opacity: 1; opacity: 1;
} }
.pico dialog:not([open]), .pico dialog[open=false] { .pico dialog:not([open]), .pico dialog[open=false] {

File diff suppressed because one or more lines are too long

View file

@ -1,6 +1,6 @@
@charset "UTF-8"; @charset "UTF-8";
/*! /*!
* Pico CSS v2.0.0 (https://picocss.com) * Pico CSS v2.0.1 (https://picocss.com)
* Copyright 2019-2024 - Licensed under MIT * Copyright 2019-2024 - Licensed under MIT
*/ */
/** /**
@ -560,7 +560,6 @@ input:not([type=submit],
text-underline-offset: var(--pico-text-underline-offset); text-underline-offset: var(--pico-text-underline-offset);
text-rendering: optimizeLegibility; text-rendering: optimizeLegibility;
overflow-wrap: break-word; overflow-wrap: break-word;
cursor: default;
-moz-tab-size: 4; -moz-tab-size: 4;
-o-tab-size: 4; -o-tab-size: 4;
tab-size: 4; tab-size: 4;
@ -1691,7 +1690,7 @@ main {
.pico input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=search] { .pico input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=search] {
padding-inline-start: calc(var(--pico-form-element-spacing-horizontal) + 1.75rem); padding-inline-start: calc(var(--pico-form-element-spacing-horizontal) + 1.75rem);
background-image: var(--pico-icon-search); background-image: var(--pico-icon-search);
background-position: center left 1.125rem; background-position: center left calc(var(--pico-form-element-spacing-horizontal) + 0.125rem);
background-size: 1rem auto; background-size: 1rem auto;
background-repeat: no-repeat; background-repeat: no-repeat;
} }
@ -2027,7 +2026,7 @@ main {
.pico dialog article > header > * { .pico dialog article > header > * {
margin-bottom: 0; margin-bottom: 0;
} }
.pico dialog article > header a[rel=prev] { .pico dialog article > header :is(a, button)[rel=prev] {
margin: 0; margin: 0;
margin-left: var(--pico-spacing); margin-left: var(--pico-spacing);
float: right; float: right;
@ -2043,21 +2042,23 @@ main {
.pico dialog article > footer [role=button]:not(:first-of-type) { .pico dialog article > footer [role=button]:not(:first-of-type) {
margin-left: calc(var(--pico-spacing) * 0.5); margin-left: calc(var(--pico-spacing) * 0.5);
} }
.pico dialog article a[rel=prev] { .pico dialog article :is(a, button)[rel=prev] {
display: block; display: block;
width: 1rem; width: 1rem;
height: 1rem; height: 1rem;
margin-top: calc(var(--pico-spacing) * -1); margin-top: calc(var(--pico-spacing) * -1);
margin-bottom: var(--pico-spacing); margin-bottom: var(--pico-spacing);
margin-left: auto; margin-left: auto;
border: none;
background-image: var(--pico-icon-close); background-image: var(--pico-icon-close);
background-position: center; background-position: center;
background-size: auto 1rem; background-size: auto 1rem;
background-repeat: no-repeat; background-repeat: no-repeat;
background-color: transparent;
opacity: 0.5; opacity: 0.5;
transition: opacity var(--pico-transition); transition: opacity var(--pico-transition);
} }
.pico dialog article a[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) { .pico dialog article :is(a, button)[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
opacity: 1; opacity: 1;
} }
.pico dialog:not([open]), .pico dialog[open=false] { .pico dialog:not([open]), .pico dialog[open=false] {

File diff suppressed because one or more lines are too long

View file

@ -1,6 +1,6 @@
@charset "UTF-8"; @charset "UTF-8";
/*! /*!
* Pico CSS v2.0.0 (https://picocss.com) * Pico CSS v2.0.1 (https://picocss.com)
* Copyright 2019-2024 - Licensed under MIT * Copyright 2019-2024 - Licensed under MIT
*/ */
/** /**
@ -560,7 +560,6 @@ input:not([type=submit],
text-underline-offset: var(--pico-text-underline-offset); text-underline-offset: var(--pico-text-underline-offset);
text-rendering: optimizeLegibility; text-rendering: optimizeLegibility;
overflow-wrap: break-word; overflow-wrap: break-word;
cursor: default;
-moz-tab-size: 4; -moz-tab-size: 4;
-o-tab-size: 4; -o-tab-size: 4;
tab-size: 4; tab-size: 4;
@ -1691,7 +1690,7 @@ main {
.pico input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=search] { .pico input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=search] {
padding-inline-start: calc(var(--pico-form-element-spacing-horizontal) + 1.75rem); padding-inline-start: calc(var(--pico-form-element-spacing-horizontal) + 1.75rem);
background-image: var(--pico-icon-search); background-image: var(--pico-icon-search);
background-position: center left 1.125rem; background-position: center left calc(var(--pico-form-element-spacing-horizontal) + 0.125rem);
background-size: 1rem auto; background-size: 1rem auto;
background-repeat: no-repeat; background-repeat: no-repeat;
} }
@ -2027,7 +2026,7 @@ main {
.pico dialog article > header > * { .pico dialog article > header > * {
margin-bottom: 0; margin-bottom: 0;
} }
.pico dialog article > header a[rel=prev] { .pico dialog article > header :is(a, button)[rel=prev] {
margin: 0; margin: 0;
margin-left: var(--pico-spacing); margin-left: var(--pico-spacing);
float: right; float: right;
@ -2043,21 +2042,23 @@ main {
.pico dialog article > footer [role=button]:not(:first-of-type) { .pico dialog article > footer [role=button]:not(:first-of-type) {
margin-left: calc(var(--pico-spacing) * 0.5); margin-left: calc(var(--pico-spacing) * 0.5);
} }
.pico dialog article a[rel=prev] { .pico dialog article :is(a, button)[rel=prev] {
display: block; display: block;
width: 1rem; width: 1rem;
height: 1rem; height: 1rem;
margin-top: calc(var(--pico-spacing) * -1); margin-top: calc(var(--pico-spacing) * -1);
margin-bottom: var(--pico-spacing); margin-bottom: var(--pico-spacing);
margin-left: auto; margin-left: auto;
border: none;
background-image: var(--pico-icon-close); background-image: var(--pico-icon-close);
background-position: center; background-position: center;
background-size: auto 1rem; background-size: auto 1rem;
background-repeat: no-repeat; background-repeat: no-repeat;
background-color: transparent;
opacity: 0.5; opacity: 0.5;
transition: opacity var(--pico-transition); transition: opacity var(--pico-transition);
} }
.pico dialog article a[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) { .pico dialog article :is(a, button)[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
opacity: 1; opacity: 1;
} }
.pico dialog:not([open]), .pico dialog[open=false] { .pico dialog:not([open]), .pico dialog[open=false] {

File diff suppressed because one or more lines are too long

View file

@ -1,6 +1,6 @@
@charset "UTF-8"; @charset "UTF-8";
/*! /*!
* Pico CSS v2.0.0 (https://picocss.com) * Pico CSS v2.0.1 (https://picocss.com)
* Copyright 2019-2024 - Licensed under MIT * Copyright 2019-2024 - Licensed under MIT
*/ */
/** /**
@ -560,7 +560,6 @@ input:not([type=submit],
text-underline-offset: var(--pico-text-underline-offset); text-underline-offset: var(--pico-text-underline-offset);
text-rendering: optimizeLegibility; text-rendering: optimizeLegibility;
overflow-wrap: break-word; overflow-wrap: break-word;
cursor: default;
-moz-tab-size: 4; -moz-tab-size: 4;
-o-tab-size: 4; -o-tab-size: 4;
tab-size: 4; tab-size: 4;
@ -1691,7 +1690,7 @@ main {
.pico input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=search] { .pico input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=search] {
padding-inline-start: calc(var(--pico-form-element-spacing-horizontal) + 1.75rem); padding-inline-start: calc(var(--pico-form-element-spacing-horizontal) + 1.75rem);
background-image: var(--pico-icon-search); background-image: var(--pico-icon-search);
background-position: center left 1.125rem; background-position: center left calc(var(--pico-form-element-spacing-horizontal) + 0.125rem);
background-size: 1rem auto; background-size: 1rem auto;
background-repeat: no-repeat; background-repeat: no-repeat;
} }
@ -2027,7 +2026,7 @@ main {
.pico dialog article > header > * { .pico dialog article > header > * {
margin-bottom: 0; margin-bottom: 0;
} }
.pico dialog article > header a[rel=prev] { .pico dialog article > header :is(a, button)[rel=prev] {
margin: 0; margin: 0;
margin-left: var(--pico-spacing); margin-left: var(--pico-spacing);
float: right; float: right;
@ -2043,21 +2042,23 @@ main {
.pico dialog article > footer [role=button]:not(:first-of-type) { .pico dialog article > footer [role=button]:not(:first-of-type) {
margin-left: calc(var(--pico-spacing) * 0.5); margin-left: calc(var(--pico-spacing) * 0.5);
} }
.pico dialog article a[rel=prev] { .pico dialog article :is(a, button)[rel=prev] {
display: block; display: block;
width: 1rem; width: 1rem;
height: 1rem; height: 1rem;
margin-top: calc(var(--pico-spacing) * -1); margin-top: calc(var(--pico-spacing) * -1);
margin-bottom: var(--pico-spacing); margin-bottom: var(--pico-spacing);
margin-left: auto; margin-left: auto;
border: none;
background-image: var(--pico-icon-close); background-image: var(--pico-icon-close);
background-position: center; background-position: center;
background-size: auto 1rem; background-size: auto 1rem;
background-repeat: no-repeat; background-repeat: no-repeat;
background-color: transparent;
opacity: 0.5; opacity: 0.5;
transition: opacity var(--pico-transition); transition: opacity var(--pico-transition);
} }
.pico dialog article a[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) { .pico dialog article :is(a, button)[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
opacity: 1; opacity: 1;
} }
.pico dialog:not([open]), .pico dialog[open=false] { .pico dialog:not([open]), .pico dialog[open=false] {

File diff suppressed because one or more lines are too long

View file

@ -1,6 +1,6 @@
@charset "UTF-8"; @charset "UTF-8";
/*! /*!
* Pico CSS v2.0.0 (https://picocss.com) * Pico CSS v2.0.1 (https://picocss.com)
* Copyright 2019-2024 - Licensed under MIT * Copyright 2019-2024 - Licensed under MIT
*/ */
/** /**
@ -560,7 +560,6 @@ input:not([type=submit],
text-underline-offset: var(--pico-text-underline-offset); text-underline-offset: var(--pico-text-underline-offset);
text-rendering: optimizeLegibility; text-rendering: optimizeLegibility;
overflow-wrap: break-word; overflow-wrap: break-word;
cursor: default;
-moz-tab-size: 4; -moz-tab-size: 4;
-o-tab-size: 4; -o-tab-size: 4;
tab-size: 4; tab-size: 4;
@ -1691,7 +1690,7 @@ main {
.pico input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=search] { .pico input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=search] {
padding-inline-start: calc(var(--pico-form-element-spacing-horizontal) + 1.75rem); padding-inline-start: calc(var(--pico-form-element-spacing-horizontal) + 1.75rem);
background-image: var(--pico-icon-search); background-image: var(--pico-icon-search);
background-position: center left 1.125rem; background-position: center left calc(var(--pico-form-element-spacing-horizontal) + 0.125rem);
background-size: 1rem auto; background-size: 1rem auto;
background-repeat: no-repeat; background-repeat: no-repeat;
} }
@ -2027,7 +2026,7 @@ main {
.pico dialog article > header > * { .pico dialog article > header > * {
margin-bottom: 0; margin-bottom: 0;
} }
.pico dialog article > header a[rel=prev] { .pico dialog article > header :is(a, button)[rel=prev] {
margin: 0; margin: 0;
margin-left: var(--pico-spacing); margin-left: var(--pico-spacing);
float: right; float: right;
@ -2043,21 +2042,23 @@ main {
.pico dialog article > footer [role=button]:not(:first-of-type) { .pico dialog article > footer [role=button]:not(:first-of-type) {
margin-left: calc(var(--pico-spacing) * 0.5); margin-left: calc(var(--pico-spacing) * 0.5);
} }
.pico dialog article a[rel=prev] { .pico dialog article :is(a, button)[rel=prev] {
display: block; display: block;
width: 1rem; width: 1rem;
height: 1rem; height: 1rem;
margin-top: calc(var(--pico-spacing) * -1); margin-top: calc(var(--pico-spacing) * -1);
margin-bottom: var(--pico-spacing); margin-bottom: var(--pico-spacing);
margin-left: auto; margin-left: auto;
border: none;
background-image: var(--pico-icon-close); background-image: var(--pico-icon-close);
background-position: center; background-position: center;
background-size: auto 1rem; background-size: auto 1rem;
background-repeat: no-repeat; background-repeat: no-repeat;
background-color: transparent;
opacity: 0.5; opacity: 0.5;
transition: opacity var(--pico-transition); transition: opacity var(--pico-transition);
} }
.pico dialog article a[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) { .pico dialog article :is(a, button)[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
opacity: 1; opacity: 1;
} }
.pico dialog:not([open]), .pico dialog[open=false] { .pico dialog:not([open]), .pico dialog[open=false] {

File diff suppressed because one or more lines are too long

View file

@ -1,6 +1,6 @@
@charset "UTF-8"; @charset "UTF-8";
/*! /*!
* Pico CSS v2.0.0 (https://picocss.com) * Pico CSS v2.0.1 (https://picocss.com)
* Copyright 2019-2024 - Licensed under MIT * Copyright 2019-2024 - Licensed under MIT
*/ */
/** /**
@ -560,7 +560,6 @@ input:not([type=submit],
text-underline-offset: var(--pico-text-underline-offset); text-underline-offset: var(--pico-text-underline-offset);
text-rendering: optimizeLegibility; text-rendering: optimizeLegibility;
overflow-wrap: break-word; overflow-wrap: break-word;
cursor: default;
-moz-tab-size: 4; -moz-tab-size: 4;
-o-tab-size: 4; -o-tab-size: 4;
tab-size: 4; tab-size: 4;
@ -1691,7 +1690,7 @@ main {
.pico input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=search] { .pico input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=search] {
padding-inline-start: calc(var(--pico-form-element-spacing-horizontal) + 1.75rem); padding-inline-start: calc(var(--pico-form-element-spacing-horizontal) + 1.75rem);
background-image: var(--pico-icon-search); background-image: var(--pico-icon-search);
background-position: center left 1.125rem; background-position: center left calc(var(--pico-form-element-spacing-horizontal) + 0.125rem);
background-size: 1rem auto; background-size: 1rem auto;
background-repeat: no-repeat; background-repeat: no-repeat;
} }
@ -2027,7 +2026,7 @@ main {
.pico dialog article > header > * { .pico dialog article > header > * {
margin-bottom: 0; margin-bottom: 0;
} }
.pico dialog article > header a[rel=prev] { .pico dialog article > header :is(a, button)[rel=prev] {
margin: 0; margin: 0;
margin-left: var(--pico-spacing); margin-left: var(--pico-spacing);
float: right; float: right;
@ -2043,21 +2042,23 @@ main {
.pico dialog article > footer [role=button]:not(:first-of-type) { .pico dialog article > footer [role=button]:not(:first-of-type) {
margin-left: calc(var(--pico-spacing) * 0.5); margin-left: calc(var(--pico-spacing) * 0.5);
} }
.pico dialog article a[rel=prev] { .pico dialog article :is(a, button)[rel=prev] {
display: block; display: block;
width: 1rem; width: 1rem;
height: 1rem; height: 1rem;
margin-top: calc(var(--pico-spacing) * -1); margin-top: calc(var(--pico-spacing) * -1);
margin-bottom: var(--pico-spacing); margin-bottom: var(--pico-spacing);
margin-left: auto; margin-left: auto;
border: none;
background-image: var(--pico-icon-close); background-image: var(--pico-icon-close);
background-position: center; background-position: center;
background-size: auto 1rem; background-size: auto 1rem;
background-repeat: no-repeat; background-repeat: no-repeat;
background-color: transparent;
opacity: 0.5; opacity: 0.5;
transition: opacity var(--pico-transition); transition: opacity var(--pico-transition);
} }
.pico dialog article a[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) { .pico dialog article :is(a, button)[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
opacity: 1; opacity: 1;
} }
.pico dialog:not([open]), .pico dialog[open=false] { .pico dialog:not([open]), .pico dialog[open=false] {

File diff suppressed because one or more lines are too long

View file

@ -1,6 +1,6 @@
@charset "UTF-8"; @charset "UTF-8";
/*! /*!
* Pico CSS v2.0.0 (https://picocss.com) * Pico CSS v2.0.1 (https://picocss.com)
* Copyright 2019-2024 - Licensed under MIT * Copyright 2019-2024 - Licensed under MIT
*/ */
/** /**
@ -560,7 +560,6 @@ input:not([type=submit],
text-underline-offset: var(--pico-text-underline-offset); text-underline-offset: var(--pico-text-underline-offset);
text-rendering: optimizeLegibility; text-rendering: optimizeLegibility;
overflow-wrap: break-word; overflow-wrap: break-word;
cursor: default;
-moz-tab-size: 4; -moz-tab-size: 4;
-o-tab-size: 4; -o-tab-size: 4;
tab-size: 4; tab-size: 4;
@ -1691,7 +1690,7 @@ main {
.pico input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=search] { .pico input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=search] {
padding-inline-start: calc(var(--pico-form-element-spacing-horizontal) + 1.75rem); padding-inline-start: calc(var(--pico-form-element-spacing-horizontal) + 1.75rem);
background-image: var(--pico-icon-search); background-image: var(--pico-icon-search);
background-position: center left 1.125rem; background-position: center left calc(var(--pico-form-element-spacing-horizontal) + 0.125rem);
background-size: 1rem auto; background-size: 1rem auto;
background-repeat: no-repeat; background-repeat: no-repeat;
} }
@ -2027,7 +2026,7 @@ main {
.pico dialog article > header > * { .pico dialog article > header > * {
margin-bottom: 0; margin-bottom: 0;
} }
.pico dialog article > header a[rel=prev] { .pico dialog article > header :is(a, button)[rel=prev] {
margin: 0; margin: 0;
margin-left: var(--pico-spacing); margin-left: var(--pico-spacing);
float: right; float: right;
@ -2043,21 +2042,23 @@ main {
.pico dialog article > footer [role=button]:not(:first-of-type) { .pico dialog article > footer [role=button]:not(:first-of-type) {
margin-left: calc(var(--pico-spacing) * 0.5); margin-left: calc(var(--pico-spacing) * 0.5);
} }
.pico dialog article a[rel=prev] { .pico dialog article :is(a, button)[rel=prev] {
display: block; display: block;
width: 1rem; width: 1rem;
height: 1rem; height: 1rem;
margin-top: calc(var(--pico-spacing) * -1); margin-top: calc(var(--pico-spacing) * -1);
margin-bottom: var(--pico-spacing); margin-bottom: var(--pico-spacing);
margin-left: auto; margin-left: auto;
border: none;
background-image: var(--pico-icon-close); background-image: var(--pico-icon-close);
background-position: center; background-position: center;
background-size: auto 1rem; background-size: auto 1rem;
background-repeat: no-repeat; background-repeat: no-repeat;
background-color: transparent;
opacity: 0.5; opacity: 0.5;
transition: opacity var(--pico-transition); transition: opacity var(--pico-transition);
} }
.pico dialog article a[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) { .pico dialog article :is(a, button)[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
opacity: 1; opacity: 1;
} }
.pico dialog:not([open]), .pico dialog[open=false] { .pico dialog:not([open]), .pico dialog[open=false] {

File diff suppressed because one or more lines are too long

View file

@ -1,6 +1,6 @@
@charset "UTF-8"; @charset "UTF-8";
/*! /*!
* Pico CSS v2.0.0 (https://picocss.com) * Pico CSS v2.0.1 (https://picocss.com)
* Copyright 2019-2024 - Licensed under MIT * Copyright 2019-2024 - Licensed under MIT
*/ */
/** /**
@ -560,7 +560,6 @@ input:not([type=submit],
text-underline-offset: var(--pico-text-underline-offset); text-underline-offset: var(--pico-text-underline-offset);
text-rendering: optimizeLegibility; text-rendering: optimizeLegibility;
overflow-wrap: break-word; overflow-wrap: break-word;
cursor: default;
-moz-tab-size: 4; -moz-tab-size: 4;
-o-tab-size: 4; -o-tab-size: 4;
tab-size: 4; tab-size: 4;
@ -1691,7 +1690,7 @@ main {
.pico input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=search] { .pico input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=search] {
padding-inline-start: calc(var(--pico-form-element-spacing-horizontal) + 1.75rem); padding-inline-start: calc(var(--pico-form-element-spacing-horizontal) + 1.75rem);
background-image: var(--pico-icon-search); background-image: var(--pico-icon-search);
background-position: center left 1.125rem; background-position: center left calc(var(--pico-form-element-spacing-horizontal) + 0.125rem);
background-size: 1rem auto; background-size: 1rem auto;
background-repeat: no-repeat; background-repeat: no-repeat;
} }
@ -2027,7 +2026,7 @@ main {
.pico dialog article > header > * { .pico dialog article > header > * {
margin-bottom: 0; margin-bottom: 0;
} }
.pico dialog article > header a[rel=prev] { .pico dialog article > header :is(a, button)[rel=prev] {
margin: 0; margin: 0;
margin-left: var(--pico-spacing); margin-left: var(--pico-spacing);
float: right; float: right;
@ -2043,21 +2042,23 @@ main {
.pico dialog article > footer [role=button]:not(:first-of-type) { .pico dialog article > footer [role=button]:not(:first-of-type) {
margin-left: calc(var(--pico-spacing) * 0.5); margin-left: calc(var(--pico-spacing) * 0.5);
} }
.pico dialog article a[rel=prev] { .pico dialog article :is(a, button)[rel=prev] {
display: block; display: block;
width: 1rem; width: 1rem;
height: 1rem; height: 1rem;
margin-top: calc(var(--pico-spacing) * -1); margin-top: calc(var(--pico-spacing) * -1);
margin-bottom: var(--pico-spacing); margin-bottom: var(--pico-spacing);
margin-left: auto; margin-left: auto;
border: none;
background-image: var(--pico-icon-close); background-image: var(--pico-icon-close);
background-position: center; background-position: center;
background-size: auto 1rem; background-size: auto 1rem;
background-repeat: no-repeat; background-repeat: no-repeat;
background-color: transparent;
opacity: 0.5; opacity: 0.5;
transition: opacity var(--pico-transition); transition: opacity var(--pico-transition);
} }
.pico dialog article a[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) { .pico dialog article :is(a, button)[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
opacity: 1; opacity: 1;
} }
.pico dialog:not([open]), .pico dialog[open=false] { .pico dialog:not([open]), .pico dialog[open=false] {

File diff suppressed because one or more lines are too long

View file

@ -1,6 +1,6 @@
@charset "UTF-8"; @charset "UTF-8";
/*! /*!
* Pico CSS v2.0.0 (https://picocss.com) * Pico CSS v2.0.1 (https://picocss.com)
* Copyright 2019-2024 - Licensed under MIT * Copyright 2019-2024 - Licensed under MIT
*/ */
/** /**
@ -560,7 +560,6 @@ input:not([type=submit],
text-underline-offset: var(--pico-text-underline-offset); text-underline-offset: var(--pico-text-underline-offset);
text-rendering: optimizeLegibility; text-rendering: optimizeLegibility;
overflow-wrap: break-word; overflow-wrap: break-word;
cursor: default;
-moz-tab-size: 4; -moz-tab-size: 4;
-o-tab-size: 4; -o-tab-size: 4;
tab-size: 4; tab-size: 4;
@ -1691,7 +1690,7 @@ main {
.pico input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=search] { .pico input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=search] {
padding-inline-start: calc(var(--pico-form-element-spacing-horizontal) + 1.75rem); padding-inline-start: calc(var(--pico-form-element-spacing-horizontal) + 1.75rem);
background-image: var(--pico-icon-search); background-image: var(--pico-icon-search);
background-position: center left 1.125rem; background-position: center left calc(var(--pico-form-element-spacing-horizontal) + 0.125rem);
background-size: 1rem auto; background-size: 1rem auto;
background-repeat: no-repeat; background-repeat: no-repeat;
} }
@ -2027,7 +2026,7 @@ main {
.pico dialog article > header > * { .pico dialog article > header > * {
margin-bottom: 0; margin-bottom: 0;
} }
.pico dialog article > header a[rel=prev] { .pico dialog article > header :is(a, button)[rel=prev] {
margin: 0; margin: 0;
margin-left: var(--pico-spacing); margin-left: var(--pico-spacing);
float: right; float: right;
@ -2043,21 +2042,23 @@ main {
.pico dialog article > footer [role=button]:not(:first-of-type) { .pico dialog article > footer [role=button]:not(:first-of-type) {
margin-left: calc(var(--pico-spacing) * 0.5); margin-left: calc(var(--pico-spacing) * 0.5);
} }
.pico dialog article a[rel=prev] { .pico dialog article :is(a, button)[rel=prev] {
display: block; display: block;
width: 1rem; width: 1rem;
height: 1rem; height: 1rem;
margin-top: calc(var(--pico-spacing) * -1); margin-top: calc(var(--pico-spacing) * -1);
margin-bottom: var(--pico-spacing); margin-bottom: var(--pico-spacing);
margin-left: auto; margin-left: auto;
border: none;
background-image: var(--pico-icon-close); background-image: var(--pico-icon-close);
background-position: center; background-position: center;
background-size: auto 1rem; background-size: auto 1rem;
background-repeat: no-repeat; background-repeat: no-repeat;
background-color: transparent;
opacity: 0.5; opacity: 0.5;
transition: opacity var(--pico-transition); transition: opacity var(--pico-transition);
} }
.pico dialog article a[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) { .pico dialog article :is(a, button)[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
opacity: 1; opacity: 1;
} }
.pico dialog:not([open]), .pico dialog[open=false] { .pico dialog:not([open]), .pico dialog[open=false] {

File diff suppressed because one or more lines are too long

View file

@ -1,6 +1,6 @@
@charset "UTF-8"; @charset "UTF-8";
/*! /*!
* Pico CSS v2.0.0 (https://picocss.com) * Pico CSS v2.0.1 (https://picocss.com)
* Copyright 2019-2024 - Licensed under MIT * Copyright 2019-2024 - Licensed under MIT
*/ */
/** /**
@ -560,7 +560,6 @@ input:not([type=submit],
text-underline-offset: var(--pico-text-underline-offset); text-underline-offset: var(--pico-text-underline-offset);
text-rendering: optimizeLegibility; text-rendering: optimizeLegibility;
overflow-wrap: break-word; overflow-wrap: break-word;
cursor: default;
-moz-tab-size: 4; -moz-tab-size: 4;
-o-tab-size: 4; -o-tab-size: 4;
tab-size: 4; tab-size: 4;
@ -1691,7 +1690,7 @@ main {
.pico input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=search] { .pico input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=search] {
padding-inline-start: calc(var(--pico-form-element-spacing-horizontal) + 1.75rem); padding-inline-start: calc(var(--pico-form-element-spacing-horizontal) + 1.75rem);
background-image: var(--pico-icon-search); background-image: var(--pico-icon-search);
background-position: center left 1.125rem; background-position: center left calc(var(--pico-form-element-spacing-horizontal) + 0.125rem);
background-size: 1rem auto; background-size: 1rem auto;
background-repeat: no-repeat; background-repeat: no-repeat;
} }
@ -2027,7 +2026,7 @@ main {
.pico dialog article > header > * { .pico dialog article > header > * {
margin-bottom: 0; margin-bottom: 0;
} }
.pico dialog article > header a[rel=prev] { .pico dialog article > header :is(a, button)[rel=prev] {
margin: 0; margin: 0;
margin-left: var(--pico-spacing); margin-left: var(--pico-spacing);
float: right; float: right;
@ -2043,21 +2042,23 @@ main {
.pico dialog article > footer [role=button]:not(:first-of-type) { .pico dialog article > footer [role=button]:not(:first-of-type) {
margin-left: calc(var(--pico-spacing) * 0.5); margin-left: calc(var(--pico-spacing) * 0.5);
} }
.pico dialog article a[rel=prev] { .pico dialog article :is(a, button)[rel=prev] {
display: block; display: block;
width: 1rem; width: 1rem;
height: 1rem; height: 1rem;
margin-top: calc(var(--pico-spacing) * -1); margin-top: calc(var(--pico-spacing) * -1);
margin-bottom: var(--pico-spacing); margin-bottom: var(--pico-spacing);
margin-left: auto; margin-left: auto;
border: none;
background-image: var(--pico-icon-close); background-image: var(--pico-icon-close);
background-position: center; background-position: center;
background-size: auto 1rem; background-size: auto 1rem;
background-repeat: no-repeat; background-repeat: no-repeat;
background-color: transparent;
opacity: 0.5; opacity: 0.5;
transition: opacity var(--pico-transition); transition: opacity var(--pico-transition);
} }
.pico dialog article a[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) { .pico dialog article :is(a, button)[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
opacity: 1; opacity: 1;
} }
.pico dialog:not([open]), .pico dialog[open=false] { .pico dialog:not([open]), .pico dialog[open=false] {

File diff suppressed because one or more lines are too long

View file

@ -1,6 +1,6 @@
@charset "UTF-8"; @charset "UTF-8";
/*! /*!
* Pico CSS v2.0.0 (https://picocss.com) * Pico CSS v2.0.1 (https://picocss.com)
* Copyright 2019-2024 - Licensed under MIT * Copyright 2019-2024 - Licensed under MIT
*/ */
/** /**
@ -560,7 +560,6 @@ input:not([type=submit],
text-underline-offset: var(--pico-text-underline-offset); text-underline-offset: var(--pico-text-underline-offset);
text-rendering: optimizeLegibility; text-rendering: optimizeLegibility;
overflow-wrap: break-word; overflow-wrap: break-word;
cursor: default;
-moz-tab-size: 4; -moz-tab-size: 4;
-o-tab-size: 4; -o-tab-size: 4;
tab-size: 4; tab-size: 4;
@ -1691,7 +1690,7 @@ main {
.pico input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=search] { .pico input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=search] {
padding-inline-start: calc(var(--pico-form-element-spacing-horizontal) + 1.75rem); padding-inline-start: calc(var(--pico-form-element-spacing-horizontal) + 1.75rem);
background-image: var(--pico-icon-search); background-image: var(--pico-icon-search);
background-position: center left 1.125rem; background-position: center left calc(var(--pico-form-element-spacing-horizontal) + 0.125rem);
background-size: 1rem auto; background-size: 1rem auto;
background-repeat: no-repeat; background-repeat: no-repeat;
} }
@ -2027,7 +2026,7 @@ main {
.pico dialog article > header > * { .pico dialog article > header > * {
margin-bottom: 0; margin-bottom: 0;
} }
.pico dialog article > header a[rel=prev] { .pico dialog article > header :is(a, button)[rel=prev] {
margin: 0; margin: 0;
margin-left: var(--pico-spacing); margin-left: var(--pico-spacing);
float: right; float: right;
@ -2043,21 +2042,23 @@ main {
.pico dialog article > footer [role=button]:not(:first-of-type) { .pico dialog article > footer [role=button]:not(:first-of-type) {
margin-left: calc(var(--pico-spacing) * 0.5); margin-left: calc(var(--pico-spacing) * 0.5);
} }
.pico dialog article a[rel=prev] { .pico dialog article :is(a, button)[rel=prev] {
display: block; display: block;
width: 1rem; width: 1rem;
height: 1rem; height: 1rem;
margin-top: calc(var(--pico-spacing) * -1); margin-top: calc(var(--pico-spacing) * -1);
margin-bottom: var(--pico-spacing); margin-bottom: var(--pico-spacing);
margin-left: auto; margin-left: auto;
border: none;
background-image: var(--pico-icon-close); background-image: var(--pico-icon-close);
background-position: center; background-position: center;
background-size: auto 1rem; background-size: auto 1rem;
background-repeat: no-repeat; background-repeat: no-repeat;
background-color: transparent;
opacity: 0.5; opacity: 0.5;
transition: opacity var(--pico-transition); transition: opacity var(--pico-transition);
} }
.pico dialog article a[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) { .pico dialog article :is(a, button)[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
opacity: 1; opacity: 1;
} }
.pico dialog:not([open]), .pico dialog[open=false] { .pico dialog:not([open]), .pico dialog[open=false] {

File diff suppressed because one or more lines are too long

View file

@ -1,6 +1,6 @@
@charset "UTF-8"; @charset "UTF-8";
/*! /*!
* Pico CSS v2.0.0 (https://picocss.com) * Pico CSS v2.0.1 (https://picocss.com)
* Copyright 2019-2024 - Licensed under MIT * Copyright 2019-2024 - Licensed under MIT
*/ */
/** /**
@ -560,7 +560,6 @@ input:not([type=submit],
text-underline-offset: var(--pico-text-underline-offset); text-underline-offset: var(--pico-text-underline-offset);
text-rendering: optimizeLegibility; text-rendering: optimizeLegibility;
overflow-wrap: break-word; overflow-wrap: break-word;
cursor: default;
-moz-tab-size: 4; -moz-tab-size: 4;
-o-tab-size: 4; -o-tab-size: 4;
tab-size: 4; tab-size: 4;
@ -1691,7 +1690,7 @@ main {
.pico input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=search] { .pico input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=search] {
padding-inline-start: calc(var(--pico-form-element-spacing-horizontal) + 1.75rem); padding-inline-start: calc(var(--pico-form-element-spacing-horizontal) + 1.75rem);
background-image: var(--pico-icon-search); background-image: var(--pico-icon-search);
background-position: center left 1.125rem; background-position: center left calc(var(--pico-form-element-spacing-horizontal) + 0.125rem);
background-size: 1rem auto; background-size: 1rem auto;
background-repeat: no-repeat; background-repeat: no-repeat;
} }
@ -2027,7 +2026,7 @@ main {
.pico dialog article > header > * { .pico dialog article > header > * {
margin-bottom: 0; margin-bottom: 0;
} }
.pico dialog article > header a[rel=prev] { .pico dialog article > header :is(a, button)[rel=prev] {
margin: 0; margin: 0;
margin-left: var(--pico-spacing); margin-left: var(--pico-spacing);
float: right; float: right;
@ -2043,21 +2042,23 @@ main {
.pico dialog article > footer [role=button]:not(:first-of-type) { .pico dialog article > footer [role=button]:not(:first-of-type) {
margin-left: calc(var(--pico-spacing) * 0.5); margin-left: calc(var(--pico-spacing) * 0.5);
} }
.pico dialog article a[rel=prev] { .pico dialog article :is(a, button)[rel=prev] {
display: block; display: block;
width: 1rem; width: 1rem;
height: 1rem; height: 1rem;
margin-top: calc(var(--pico-spacing) * -1); margin-top: calc(var(--pico-spacing) * -1);
margin-bottom: var(--pico-spacing); margin-bottom: var(--pico-spacing);
margin-left: auto; margin-left: auto;
border: none;
background-image: var(--pico-icon-close); background-image: var(--pico-icon-close);
background-position: center; background-position: center;
background-size: auto 1rem; background-size: auto 1rem;
background-repeat: no-repeat; background-repeat: no-repeat;
background-color: transparent;
opacity: 0.5; opacity: 0.5;
transition: opacity var(--pico-transition); transition: opacity var(--pico-transition);
} }
.pico dialog article a[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) { .pico dialog article :is(a, button)[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
opacity: 1; opacity: 1;
} }
.pico dialog:not([open]), .pico dialog[open=false] { .pico dialog:not([open]), .pico dialog[open=false] {

File diff suppressed because one or more lines are too long

View file

@ -1,6 +1,6 @@
@charset "UTF-8"; @charset "UTF-8";
/*! /*!
* Pico CSS v2.0.0 (https://picocss.com) * Pico CSS v2.0.1 (https://picocss.com)
* Copyright 2019-2024 - Licensed under MIT * Copyright 2019-2024 - Licensed under MIT
*/ */
/** /**
@ -560,7 +560,6 @@ input:not([type=submit],
text-underline-offset: var(--pico-text-underline-offset); text-underline-offset: var(--pico-text-underline-offset);
text-rendering: optimizeLegibility; text-rendering: optimizeLegibility;
overflow-wrap: break-word; overflow-wrap: break-word;
cursor: default;
-moz-tab-size: 4; -moz-tab-size: 4;
-o-tab-size: 4; -o-tab-size: 4;
tab-size: 4; tab-size: 4;
@ -1691,7 +1690,7 @@ main {
.pico input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=search] { .pico input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=search] {
padding-inline-start: calc(var(--pico-form-element-spacing-horizontal) + 1.75rem); padding-inline-start: calc(var(--pico-form-element-spacing-horizontal) + 1.75rem);
background-image: var(--pico-icon-search); background-image: var(--pico-icon-search);
background-position: center left 1.125rem; background-position: center left calc(var(--pico-form-element-spacing-horizontal) + 0.125rem);
background-size: 1rem auto; background-size: 1rem auto;
background-repeat: no-repeat; background-repeat: no-repeat;
} }
@ -2027,7 +2026,7 @@ main {
.pico dialog article > header > * { .pico dialog article > header > * {
margin-bottom: 0; margin-bottom: 0;
} }
.pico dialog article > header a[rel=prev] { .pico dialog article > header :is(a, button)[rel=prev] {
margin: 0; margin: 0;
margin-left: var(--pico-spacing); margin-left: var(--pico-spacing);
float: right; float: right;
@ -2043,21 +2042,23 @@ main {
.pico dialog article > footer [role=button]:not(:first-of-type) { .pico dialog article > footer [role=button]:not(:first-of-type) {
margin-left: calc(var(--pico-spacing) * 0.5); margin-left: calc(var(--pico-spacing) * 0.5);
} }
.pico dialog article a[rel=prev] { .pico dialog article :is(a, button)[rel=prev] {
display: block; display: block;
width: 1rem; width: 1rem;
height: 1rem; height: 1rem;
margin-top: calc(var(--pico-spacing) * -1); margin-top: calc(var(--pico-spacing) * -1);
margin-bottom: var(--pico-spacing); margin-bottom: var(--pico-spacing);
margin-left: auto; margin-left: auto;
border: none;
background-image: var(--pico-icon-close); background-image: var(--pico-icon-close);
background-position: center; background-position: center;
background-size: auto 1rem; background-size: auto 1rem;
background-repeat: no-repeat; background-repeat: no-repeat;
background-color: transparent;
opacity: 0.5; opacity: 0.5;
transition: opacity var(--pico-transition); transition: opacity var(--pico-transition);
} }
.pico dialog article a[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) { .pico dialog article :is(a, button)[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
opacity: 1; opacity: 1;
} }
.pico dialog:not([open]), .pico dialog[open=false] { .pico dialog:not([open]), .pico dialog[open=false] {

File diff suppressed because one or more lines are too long

View file

@ -1,6 +1,6 @@
@charset "UTF-8"; @charset "UTF-8";
/*! /*!
* Pico CSS v2.0.0 (https://picocss.com) * Pico CSS v2.0.1 (https://picocss.com)
* Copyright 2019-2024 - Licensed under MIT * Copyright 2019-2024 - Licensed under MIT
*/ */
/** /**
@ -560,7 +560,6 @@ input:not([type=submit],
text-underline-offset: var(--pico-text-underline-offset); text-underline-offset: var(--pico-text-underline-offset);
text-rendering: optimizeLegibility; text-rendering: optimizeLegibility;
overflow-wrap: break-word; overflow-wrap: break-word;
cursor: default;
-moz-tab-size: 4; -moz-tab-size: 4;
-o-tab-size: 4; -o-tab-size: 4;
tab-size: 4; tab-size: 4;
@ -1691,7 +1690,7 @@ main {
.pico input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=search] { .pico input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=search] {
padding-inline-start: calc(var(--pico-form-element-spacing-horizontal) + 1.75rem); padding-inline-start: calc(var(--pico-form-element-spacing-horizontal) + 1.75rem);
background-image: var(--pico-icon-search); background-image: var(--pico-icon-search);
background-position: center left 1.125rem; background-position: center left calc(var(--pico-form-element-spacing-horizontal) + 0.125rem);
background-size: 1rem auto; background-size: 1rem auto;
background-repeat: no-repeat; background-repeat: no-repeat;
} }
@ -2027,7 +2026,7 @@ main {
.pico dialog article > header > * { .pico dialog article > header > * {
margin-bottom: 0; margin-bottom: 0;
} }
.pico dialog article > header a[rel=prev] { .pico dialog article > header :is(a, button)[rel=prev] {
margin: 0; margin: 0;
margin-left: var(--pico-spacing); margin-left: var(--pico-spacing);
float: right; float: right;
@ -2043,21 +2042,23 @@ main {
.pico dialog article > footer [role=button]:not(:first-of-type) { .pico dialog article > footer [role=button]:not(:first-of-type) {
margin-left: calc(var(--pico-spacing) * 0.5); margin-left: calc(var(--pico-spacing) * 0.5);
} }
.pico dialog article a[rel=prev] { .pico dialog article :is(a, button)[rel=prev] {
display: block; display: block;
width: 1rem; width: 1rem;
height: 1rem; height: 1rem;
margin-top: calc(var(--pico-spacing) * -1); margin-top: calc(var(--pico-spacing) * -1);
margin-bottom: var(--pico-spacing); margin-bottom: var(--pico-spacing);
margin-left: auto; margin-left: auto;
border: none;
background-image: var(--pico-icon-close); background-image: var(--pico-icon-close);
background-position: center; background-position: center;
background-size: auto 1rem; background-size: auto 1rem;
background-repeat: no-repeat; background-repeat: no-repeat;
background-color: transparent;
opacity: 0.5; opacity: 0.5;
transition: opacity var(--pico-transition); transition: opacity var(--pico-transition);
} }
.pico dialog article a[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) { .pico dialog article :is(a, button)[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
opacity: 1; opacity: 1;
} }
.pico dialog:not([open]), .pico dialog[open=false] { .pico dialog:not([open]), .pico dialog[open=false] {

File diff suppressed because one or more lines are too long

View file

@ -1,6 +1,6 @@
@charset "UTF-8"; @charset "UTF-8";
/*! /*!
* Pico CSS v2.0.0 (https://picocss.com) * Pico CSS v2.0.1 (https://picocss.com)
* Copyright 2019-2024 - Licensed under MIT * Copyright 2019-2024 - Licensed under MIT
*/ */
/** /**
@ -560,7 +560,6 @@ input:not([type=submit],
text-underline-offset: var(--pico-text-underline-offset); text-underline-offset: var(--pico-text-underline-offset);
text-rendering: optimizeLegibility; text-rendering: optimizeLegibility;
overflow-wrap: break-word; overflow-wrap: break-word;
cursor: default;
-moz-tab-size: 4; -moz-tab-size: 4;
-o-tab-size: 4; -o-tab-size: 4;
tab-size: 4; tab-size: 4;
@ -1691,7 +1690,7 @@ main {
.pico input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=search] { .pico input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=search] {
padding-inline-start: calc(var(--pico-form-element-spacing-horizontal) + 1.75rem); padding-inline-start: calc(var(--pico-form-element-spacing-horizontal) + 1.75rem);
background-image: var(--pico-icon-search); background-image: var(--pico-icon-search);
background-position: center left 1.125rem; background-position: center left calc(var(--pico-form-element-spacing-horizontal) + 0.125rem);
background-size: 1rem auto; background-size: 1rem auto;
background-repeat: no-repeat; background-repeat: no-repeat;
} }
@ -2027,7 +2026,7 @@ main {
.pico dialog article > header > * { .pico dialog article > header > * {
margin-bottom: 0; margin-bottom: 0;
} }
.pico dialog article > header a[rel=prev] { .pico dialog article > header :is(a, button)[rel=prev] {
margin: 0; margin: 0;
margin-left: var(--pico-spacing); margin-left: var(--pico-spacing);
float: right; float: right;
@ -2043,21 +2042,23 @@ main {
.pico dialog article > footer [role=button]:not(:first-of-type) { .pico dialog article > footer [role=button]:not(:first-of-type) {
margin-left: calc(var(--pico-spacing) * 0.5); margin-left: calc(var(--pico-spacing) * 0.5);
} }
.pico dialog article a[rel=prev] { .pico dialog article :is(a, button)[rel=prev] {
display: block; display: block;
width: 1rem; width: 1rem;
height: 1rem; height: 1rem;
margin-top: calc(var(--pico-spacing) * -1); margin-top: calc(var(--pico-spacing) * -1);
margin-bottom: var(--pico-spacing); margin-bottom: var(--pico-spacing);
margin-left: auto; margin-left: auto;
border: none;
background-image: var(--pico-icon-close); background-image: var(--pico-icon-close);
background-position: center; background-position: center;
background-size: auto 1rem; background-size: auto 1rem;
background-repeat: no-repeat; background-repeat: no-repeat;
background-color: transparent;
opacity: 0.5; opacity: 0.5;
transition: opacity var(--pico-transition); transition: opacity var(--pico-transition);
} }
.pico dialog article a[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) { .pico dialog article :is(a, button)[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
opacity: 1; opacity: 1;
} }
.pico dialog:not([open]), .pico dialog[open=false] { .pico dialog:not([open]), .pico dialog[open=false] {

File diff suppressed because one or more lines are too long

View file

@ -1,6 +1,6 @@
@charset "UTF-8"; @charset "UTF-8";
/*! /*!
* Pico CSS v2.0.0 (https://picocss.com) * Pico CSS v2.0.1 (https://picocss.com)
* Copyright 2019-2024 - Licensed under MIT * Copyright 2019-2024 - Licensed under MIT
*/ */
/** /**
@ -560,7 +560,6 @@ input:not([type=submit],
text-underline-offset: var(--pico-text-underline-offset); text-underline-offset: var(--pico-text-underline-offset);
text-rendering: optimizeLegibility; text-rendering: optimizeLegibility;
overflow-wrap: break-word; overflow-wrap: break-word;
cursor: default;
-moz-tab-size: 4; -moz-tab-size: 4;
-o-tab-size: 4; -o-tab-size: 4;
tab-size: 4; tab-size: 4;
@ -1691,7 +1690,7 @@ main {
.pico input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=search] { .pico input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=search] {
padding-inline-start: calc(var(--pico-form-element-spacing-horizontal) + 1.75rem); padding-inline-start: calc(var(--pico-form-element-spacing-horizontal) + 1.75rem);
background-image: var(--pico-icon-search); background-image: var(--pico-icon-search);
background-position: center left 1.125rem; background-position: center left calc(var(--pico-form-element-spacing-horizontal) + 0.125rem);
background-size: 1rem auto; background-size: 1rem auto;
background-repeat: no-repeat; background-repeat: no-repeat;
} }
@ -2027,7 +2026,7 @@ main {
.pico dialog article > header > * { .pico dialog article > header > * {
margin-bottom: 0; margin-bottom: 0;
} }
.pico dialog article > header a[rel=prev] { .pico dialog article > header :is(a, button)[rel=prev] {
margin: 0; margin: 0;
margin-left: var(--pico-spacing); margin-left: var(--pico-spacing);
float: right; float: right;
@ -2043,21 +2042,23 @@ main {
.pico dialog article > footer [role=button]:not(:first-of-type) { .pico dialog article > footer [role=button]:not(:first-of-type) {
margin-left: calc(var(--pico-spacing) * 0.5); margin-left: calc(var(--pico-spacing) * 0.5);
} }
.pico dialog article a[rel=prev] { .pico dialog article :is(a, button)[rel=prev] {
display: block; display: block;
width: 1rem; width: 1rem;
height: 1rem; height: 1rem;
margin-top: calc(var(--pico-spacing) * -1); margin-top: calc(var(--pico-spacing) * -1);
margin-bottom: var(--pico-spacing); margin-bottom: var(--pico-spacing);
margin-left: auto; margin-left: auto;
border: none;
background-image: var(--pico-icon-close); background-image: var(--pico-icon-close);
background-position: center; background-position: center;
background-size: auto 1rem; background-size: auto 1rem;
background-repeat: no-repeat; background-repeat: no-repeat;
background-color: transparent;
opacity: 0.5; opacity: 0.5;
transition: opacity var(--pico-transition); transition: opacity var(--pico-transition);
} }
.pico dialog article a[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) { .pico dialog article :is(a, button)[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
opacity: 1; opacity: 1;
} }
.pico dialog:not([open]), .pico dialog[open=false] { .pico dialog:not([open]), .pico dialog[open=false] {

File diff suppressed because one or more lines are too long

View file

@ -1,6 +1,6 @@
@charset "UTF-8"; @charset "UTF-8";
/*! /*!
* Pico CSS v2.0.0 (https://picocss.com) * Pico CSS v2.0.1 (https://picocss.com)
* Copyright 2019-2024 - Licensed under MIT * Copyright 2019-2024 - Licensed under MIT
*/ */
/** /**
@ -560,7 +560,6 @@ input:not([type=submit],
text-underline-offset: var(--pico-text-underline-offset); text-underline-offset: var(--pico-text-underline-offset);
text-rendering: optimizeLegibility; text-rendering: optimizeLegibility;
overflow-wrap: break-word; overflow-wrap: break-word;
cursor: default;
-moz-tab-size: 4; -moz-tab-size: 4;
-o-tab-size: 4; -o-tab-size: 4;
tab-size: 4; tab-size: 4;
@ -1691,7 +1690,7 @@ main {
.pico input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=search] { .pico input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=search] {
padding-inline-start: calc(var(--pico-form-element-spacing-horizontal) + 1.75rem); padding-inline-start: calc(var(--pico-form-element-spacing-horizontal) + 1.75rem);
background-image: var(--pico-icon-search); background-image: var(--pico-icon-search);
background-position: center left 1.125rem; background-position: center left calc(var(--pico-form-element-spacing-horizontal) + 0.125rem);
background-size: 1rem auto; background-size: 1rem auto;
background-repeat: no-repeat; background-repeat: no-repeat;
} }
@ -2027,7 +2026,7 @@ main {
.pico dialog article > header > * { .pico dialog article > header > * {
margin-bottom: 0; margin-bottom: 0;
} }
.pico dialog article > header a[rel=prev] { .pico dialog article > header :is(a, button)[rel=prev] {
margin: 0; margin: 0;
margin-left: var(--pico-spacing); margin-left: var(--pico-spacing);
float: right; float: right;
@ -2043,21 +2042,23 @@ main {
.pico dialog article > footer [role=button]:not(:first-of-type) { .pico dialog article > footer [role=button]:not(:first-of-type) {
margin-left: calc(var(--pico-spacing) * 0.5); margin-left: calc(var(--pico-spacing) * 0.5);
} }
.pico dialog article a[rel=prev] { .pico dialog article :is(a, button)[rel=prev] {
display: block; display: block;
width: 1rem; width: 1rem;
height: 1rem; height: 1rem;
margin-top: calc(var(--pico-spacing) * -1); margin-top: calc(var(--pico-spacing) * -1);
margin-bottom: var(--pico-spacing); margin-bottom: var(--pico-spacing);
margin-left: auto; margin-left: auto;
border: none;
background-image: var(--pico-icon-close); background-image: var(--pico-icon-close);
background-position: center; background-position: center;
background-size: auto 1rem; background-size: auto 1rem;
background-repeat: no-repeat; background-repeat: no-repeat;
background-color: transparent;
opacity: 0.5; opacity: 0.5;
transition: opacity var(--pico-transition); transition: opacity var(--pico-transition);
} }
.pico dialog article a[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) { .pico dialog article :is(a, button)[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
opacity: 1; opacity: 1;
} }
.pico dialog:not([open]), .pico dialog[open=false] { .pico dialog:not([open]), .pico dialog[open=false] {

File diff suppressed because one or more lines are too long

View file

@ -1,6 +1,6 @@
@charset "UTF-8"; @charset "UTF-8";
/*! /*!
* Pico CSS v2.0.0 (https://picocss.com) * Pico CSS v2.0.1 (https://picocss.com)
* Copyright 2019-2024 - Licensed under MIT * Copyright 2019-2024 - Licensed under MIT
*/ */
/** /**
@ -560,7 +560,6 @@ input:not([type=submit],
text-underline-offset: var(--pico-text-underline-offset); text-underline-offset: var(--pico-text-underline-offset);
text-rendering: optimizeLegibility; text-rendering: optimizeLegibility;
overflow-wrap: break-word; overflow-wrap: break-word;
cursor: default;
-moz-tab-size: 4; -moz-tab-size: 4;
-o-tab-size: 4; -o-tab-size: 4;
tab-size: 4; tab-size: 4;
@ -1691,7 +1690,7 @@ main {
.pico input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=search] { .pico input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=search] {
padding-inline-start: calc(var(--pico-form-element-spacing-horizontal) + 1.75rem); padding-inline-start: calc(var(--pico-form-element-spacing-horizontal) + 1.75rem);
background-image: var(--pico-icon-search); background-image: var(--pico-icon-search);
background-position: center left 1.125rem; background-position: center left calc(var(--pico-form-element-spacing-horizontal) + 0.125rem);
background-size: 1rem auto; background-size: 1rem auto;
background-repeat: no-repeat; background-repeat: no-repeat;
} }
@ -2027,7 +2026,7 @@ main {
.pico dialog article > header > * { .pico dialog article > header > * {
margin-bottom: 0; margin-bottom: 0;
} }
.pico dialog article > header a[rel=prev] { .pico dialog article > header :is(a, button)[rel=prev] {
margin: 0; margin: 0;
margin-left: var(--pico-spacing); margin-left: var(--pico-spacing);
float: right; float: right;
@ -2043,21 +2042,23 @@ main {
.pico dialog article > footer [role=button]:not(:first-of-type) { .pico dialog article > footer [role=button]:not(:first-of-type) {
margin-left: calc(var(--pico-spacing) * 0.5); margin-left: calc(var(--pico-spacing) * 0.5);
} }
.pico dialog article a[rel=prev] { .pico dialog article :is(a, button)[rel=prev] {
display: block; display: block;
width: 1rem; width: 1rem;
height: 1rem; height: 1rem;
margin-top: calc(var(--pico-spacing) * -1); margin-top: calc(var(--pico-spacing) * -1);
margin-bottom: var(--pico-spacing); margin-bottom: var(--pico-spacing);
margin-left: auto; margin-left: auto;
border: none;
background-image: var(--pico-icon-close); background-image: var(--pico-icon-close);
background-position: center; background-position: center;
background-size: auto 1rem; background-size: auto 1rem;
background-repeat: no-repeat; background-repeat: no-repeat;
background-color: transparent;
opacity: 0.5; opacity: 0.5;
transition: opacity var(--pico-transition); transition: opacity var(--pico-transition);
} }
.pico dialog article a[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) { .pico dialog article :is(a, button)[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
opacity: 1; opacity: 1;
} }
.pico dialog:not([open]), .pico dialog[open=false] { .pico dialog:not([open]), .pico dialog[open=false] {

File diff suppressed because one or more lines are too long

View file

@ -1,6 +1,6 @@
@charset "UTF-8"; @charset "UTF-8";
/*! /*!
* Pico CSS v2.0.0 (https://picocss.com) * Pico CSS v2.0.1 (https://picocss.com)
* Copyright 2019-2024 - Licensed under MIT * Copyright 2019-2024 - Licensed under MIT
*/ */
/** /**
@ -560,7 +560,6 @@ progress,
text-underline-offset: var(--pico-text-underline-offset); text-underline-offset: var(--pico-text-underline-offset);
text-rendering: optimizeLegibility; text-rendering: optimizeLegibility;
overflow-wrap: break-word; overflow-wrap: break-word;
cursor: default;
-moz-tab-size: 4; -moz-tab-size: 4;
-o-tab-size: 4; -o-tab-size: 4;
tab-size: 4; tab-size: 4;
@ -1691,7 +1690,7 @@ input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=time] {
input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=search] { input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=search] {
padding-inline-start: calc(var(--pico-form-element-spacing-horizontal) + 1.75rem); padding-inline-start: calc(var(--pico-form-element-spacing-horizontal) + 1.75rem);
background-image: var(--pico-icon-search); background-image: var(--pico-icon-search);
background-position: center left 1.125rem; background-position: center left calc(var(--pico-form-element-spacing-horizontal) + 0.125rem);
background-size: 1rem auto; background-size: 1rem auto;
background-repeat: no-repeat; background-repeat: no-repeat;
} }
@ -2027,7 +2026,7 @@ dialog article {
dialog article > header > * { dialog article > header > * {
margin-bottom: 0; margin-bottom: 0;
} }
dialog article > header a[rel=prev] { dialog article > header :is(a, button)[rel=prev] {
margin: 0; margin: 0;
margin-left: var(--pico-spacing); margin-left: var(--pico-spacing);
float: right; float: right;
@ -2043,21 +2042,23 @@ dialog article > footer button:not(:first-of-type),
dialog article > footer [role=button]:not(:first-of-type) { dialog article > footer [role=button]:not(:first-of-type) {
margin-left: calc(var(--pico-spacing) * 0.5); margin-left: calc(var(--pico-spacing) * 0.5);
} }
dialog article a[rel=prev] { dialog article :is(a, button)[rel=prev] {
display: block; display: block;
width: 1rem; width: 1rem;
height: 1rem; height: 1rem;
margin-top: calc(var(--pico-spacing) * -1); margin-top: calc(var(--pico-spacing) * -1);
margin-bottom: var(--pico-spacing); margin-bottom: var(--pico-spacing);
margin-left: auto; margin-left: auto;
border: none;
background-image: var(--pico-icon-close); background-image: var(--pico-icon-close);
background-position: center; background-position: center;
background-size: auto 1rem; background-size: auto 1rem;
background-repeat: no-repeat; background-repeat: no-repeat;
background-color: transparent;
opacity: 0.5; opacity: 0.5;
transition: opacity var(--pico-transition); transition: opacity var(--pico-transition);
} }
dialog article a[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) { dialog article :is(a, button)[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
opacity: 1; opacity: 1;
} }
dialog:not([open]), dialog[open=false] { dialog:not([open]), dialog[open=false] {

View file

@ -1,6 +1,6 @@
@charset "UTF-8"; @charset "UTF-8";
/*! /*!
* Pico CSS v2.0.0 (https://picocss.com) * Pico CSS v2.0.1 (https://picocss.com)
* Copyright 2019-2024 - Licensed under MIT * Copyright 2019-2024 - Licensed under MIT
*/ */
/** /**
@ -560,7 +560,6 @@ progress,
text-underline-offset: var(--pico-text-underline-offset); text-underline-offset: var(--pico-text-underline-offset);
text-rendering: optimizeLegibility; text-rendering: optimizeLegibility;
overflow-wrap: break-word; overflow-wrap: break-word;
cursor: default;
-moz-tab-size: 4; -moz-tab-size: 4;
-o-tab-size: 4; -o-tab-size: 4;
tab-size: 4; tab-size: 4;
@ -1691,7 +1690,7 @@ input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=time] {
input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=search] { input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=search] {
padding-inline-start: calc(var(--pico-form-element-spacing-horizontal) + 1.75rem); padding-inline-start: calc(var(--pico-form-element-spacing-horizontal) + 1.75rem);
background-image: var(--pico-icon-search); background-image: var(--pico-icon-search);
background-position: center left 1.125rem; background-position: center left calc(var(--pico-form-element-spacing-horizontal) + 0.125rem);
background-size: 1rem auto; background-size: 1rem auto;
background-repeat: no-repeat; background-repeat: no-repeat;
} }
@ -2027,7 +2026,7 @@ dialog article {
dialog article > header > * { dialog article > header > * {
margin-bottom: 0; margin-bottom: 0;
} }
dialog article > header a[rel=prev] { dialog article > header :is(a, button)[rel=prev] {
margin: 0; margin: 0;
margin-left: var(--pico-spacing); margin-left: var(--pico-spacing);
float: right; float: right;
@ -2043,21 +2042,23 @@ dialog article > footer button:not(:first-of-type),
dialog article > footer [role=button]:not(:first-of-type) { dialog article > footer [role=button]:not(:first-of-type) {
margin-left: calc(var(--pico-spacing) * 0.5); margin-left: calc(var(--pico-spacing) * 0.5);
} }
dialog article a[rel=prev] { dialog article :is(a, button)[rel=prev] {
display: block; display: block;
width: 1rem; width: 1rem;
height: 1rem; height: 1rem;
margin-top: calc(var(--pico-spacing) * -1); margin-top: calc(var(--pico-spacing) * -1);
margin-bottom: var(--pico-spacing); margin-bottom: var(--pico-spacing);
margin-left: auto; margin-left: auto;
border: none;
background-image: var(--pico-icon-close); background-image: var(--pico-icon-close);
background-position: center; background-position: center;
background-size: auto 1rem; background-size: auto 1rem;
background-repeat: no-repeat; background-repeat: no-repeat;
background-color: transparent;
opacity: 0.5; opacity: 0.5;
transition: opacity var(--pico-transition); transition: opacity var(--pico-transition);
} }
dialog article a[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) { dialog article :is(a, button)[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
opacity: 1; opacity: 1;
} }
dialog:not([open]), dialog[open=false] { dialog:not([open]), dialog[open=false] {

File diff suppressed because one or more lines are too long

View file

@ -1,6 +1,6 @@
@charset "UTF-8"; @charset "UTF-8";
/*! /*!
* Pico CSS v2.0.0 (https://picocss.com) * Pico CSS v2.0.1 (https://picocss.com)
* Copyright 2019-2024 - Licensed under MIT * Copyright 2019-2024 - Licensed under MIT
*/ */
/** /**
@ -560,7 +560,6 @@ progress,
text-underline-offset: var(--pico-text-underline-offset); text-underline-offset: var(--pico-text-underline-offset);
text-rendering: optimizeLegibility; text-rendering: optimizeLegibility;
overflow-wrap: break-word; overflow-wrap: break-word;
cursor: default;
-moz-tab-size: 4; -moz-tab-size: 4;
-o-tab-size: 4; -o-tab-size: 4;
tab-size: 4; tab-size: 4;
@ -1691,7 +1690,7 @@ input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=time] {
input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=search] { input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=search] {
padding-inline-start: calc(var(--pico-form-element-spacing-horizontal) + 1.75rem); padding-inline-start: calc(var(--pico-form-element-spacing-horizontal) + 1.75rem);
background-image: var(--pico-icon-search); background-image: var(--pico-icon-search);
background-position: center left 1.125rem; background-position: center left calc(var(--pico-form-element-spacing-horizontal) + 0.125rem);
background-size: 1rem auto; background-size: 1rem auto;
background-repeat: no-repeat; background-repeat: no-repeat;
} }
@ -2027,7 +2026,7 @@ dialog article {
dialog article > header > * { dialog article > header > * {
margin-bottom: 0; margin-bottom: 0;
} }
dialog article > header a[rel=prev] { dialog article > header :is(a, button)[rel=prev] {
margin: 0; margin: 0;
margin-left: var(--pico-spacing); margin-left: var(--pico-spacing);
float: right; float: right;
@ -2043,21 +2042,23 @@ dialog article > footer button:not(:first-of-type),
dialog article > footer [role=button]:not(:first-of-type) { dialog article > footer [role=button]:not(:first-of-type) {
margin-left: calc(var(--pico-spacing) * 0.5); margin-left: calc(var(--pico-spacing) * 0.5);
} }
dialog article a[rel=prev] { dialog article :is(a, button)[rel=prev] {
display: block; display: block;
width: 1rem; width: 1rem;
height: 1rem; height: 1rem;
margin-top: calc(var(--pico-spacing) * -1); margin-top: calc(var(--pico-spacing) * -1);
margin-bottom: var(--pico-spacing); margin-bottom: var(--pico-spacing);
margin-left: auto; margin-left: auto;
border: none;
background-image: var(--pico-icon-close); background-image: var(--pico-icon-close);
background-position: center; background-position: center;
background-size: auto 1rem; background-size: auto 1rem;
background-repeat: no-repeat; background-repeat: no-repeat;
background-color: transparent;
opacity: 0.5; opacity: 0.5;
transition: opacity var(--pico-transition); transition: opacity var(--pico-transition);
} }
dialog article a[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) { dialog article :is(a, button)[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
opacity: 1; opacity: 1;
} }
dialog:not([open]), dialog[open=false] { dialog:not([open]), dialog[open=false] {

File diff suppressed because one or more lines are too long

View file

@ -1,6 +1,6 @@
@charset "UTF-8"; @charset "UTF-8";
/*! /*!
* Pico CSS v2.0.0 (https://picocss.com) * Pico CSS v2.0.1 (https://picocss.com)
* Copyright 2019-2024 - Licensed under MIT * Copyright 2019-2024 - Licensed under MIT
*/ */
/** /**
@ -560,7 +560,6 @@ progress,
text-underline-offset: var(--pico-text-underline-offset); text-underline-offset: var(--pico-text-underline-offset);
text-rendering: optimizeLegibility; text-rendering: optimizeLegibility;
overflow-wrap: break-word; overflow-wrap: break-word;
cursor: default;
-moz-tab-size: 4; -moz-tab-size: 4;
-o-tab-size: 4; -o-tab-size: 4;
tab-size: 4; tab-size: 4;
@ -1691,7 +1690,7 @@ input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=time] {
input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=search] { input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=search] {
padding-inline-start: calc(var(--pico-form-element-spacing-horizontal) + 1.75rem); padding-inline-start: calc(var(--pico-form-element-spacing-horizontal) + 1.75rem);
background-image: var(--pico-icon-search); background-image: var(--pico-icon-search);
background-position: center left 1.125rem; background-position: center left calc(var(--pico-form-element-spacing-horizontal) + 0.125rem);
background-size: 1rem auto; background-size: 1rem auto;
background-repeat: no-repeat; background-repeat: no-repeat;
} }
@ -2027,7 +2026,7 @@ dialog article {
dialog article > header > * { dialog article > header > * {
margin-bottom: 0; margin-bottom: 0;
} }
dialog article > header a[rel=prev] { dialog article > header :is(a, button)[rel=prev] {
margin: 0; margin: 0;
margin-left: var(--pico-spacing); margin-left: var(--pico-spacing);
float: right; float: right;
@ -2043,21 +2042,23 @@ dialog article > footer button:not(:first-of-type),
dialog article > footer [role=button]:not(:first-of-type) { dialog article > footer [role=button]:not(:first-of-type) {
margin-left: calc(var(--pico-spacing) * 0.5); margin-left: calc(var(--pico-spacing) * 0.5);
} }
dialog article a[rel=prev] { dialog article :is(a, button)[rel=prev] {
display: block; display: block;
width: 1rem; width: 1rem;
height: 1rem; height: 1rem;
margin-top: calc(var(--pico-spacing) * -1); margin-top: calc(var(--pico-spacing) * -1);
margin-bottom: var(--pico-spacing); margin-bottom: var(--pico-spacing);
margin-left: auto; margin-left: auto;
border: none;
background-image: var(--pico-icon-close); background-image: var(--pico-icon-close);
background-position: center; background-position: center;
background-size: auto 1rem; background-size: auto 1rem;
background-repeat: no-repeat; background-repeat: no-repeat;
background-color: transparent;
opacity: 0.5; opacity: 0.5;
transition: opacity var(--pico-transition); transition: opacity var(--pico-transition);
} }
dialog article a[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) { dialog article :is(a, button)[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
opacity: 1; opacity: 1;
} }
dialog:not([open]), dialog[open=false] { dialog:not([open]), dialog[open=false] {

File diff suppressed because one or more lines are too long

View file

@ -1,6 +1,6 @@
@charset "UTF-8"; @charset "UTF-8";
/*! /*!
* Pico CSS v2.0.0 (https://picocss.com) * Pico CSS v2.0.1 (https://picocss.com)
* Copyright 2019-2024 - Licensed under MIT * Copyright 2019-2024 - Licensed under MIT
*/ */
/** /**
@ -560,7 +560,6 @@ progress,
text-underline-offset: var(--pico-text-underline-offset); text-underline-offset: var(--pico-text-underline-offset);
text-rendering: optimizeLegibility; text-rendering: optimizeLegibility;
overflow-wrap: break-word; overflow-wrap: break-word;
cursor: default;
-moz-tab-size: 4; -moz-tab-size: 4;
-o-tab-size: 4; -o-tab-size: 4;
tab-size: 4; tab-size: 4;
@ -1691,7 +1690,7 @@ input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=time] {
input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=search] { input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=search] {
padding-inline-start: calc(var(--pico-form-element-spacing-horizontal) + 1.75rem); padding-inline-start: calc(var(--pico-form-element-spacing-horizontal) + 1.75rem);
background-image: var(--pico-icon-search); background-image: var(--pico-icon-search);
background-position: center left 1.125rem; background-position: center left calc(var(--pico-form-element-spacing-horizontal) + 0.125rem);
background-size: 1rem auto; background-size: 1rem auto;
background-repeat: no-repeat; background-repeat: no-repeat;
} }
@ -2027,7 +2026,7 @@ dialog article {
dialog article > header > * { dialog article > header > * {
margin-bottom: 0; margin-bottom: 0;
} }
dialog article > header a[rel=prev] { dialog article > header :is(a, button)[rel=prev] {
margin: 0; margin: 0;
margin-left: var(--pico-spacing); margin-left: var(--pico-spacing);
float: right; float: right;
@ -2043,21 +2042,23 @@ dialog article > footer button:not(:first-of-type),
dialog article > footer [role=button]:not(:first-of-type) { dialog article > footer [role=button]:not(:first-of-type) {
margin-left: calc(var(--pico-spacing) * 0.5); margin-left: calc(var(--pico-spacing) * 0.5);
} }
dialog article a[rel=prev] { dialog article :is(a, button)[rel=prev] {
display: block; display: block;
width: 1rem; width: 1rem;
height: 1rem; height: 1rem;
margin-top: calc(var(--pico-spacing) * -1); margin-top: calc(var(--pico-spacing) * -1);
margin-bottom: var(--pico-spacing); margin-bottom: var(--pico-spacing);
margin-left: auto; margin-left: auto;
border: none;
background-image: var(--pico-icon-close); background-image: var(--pico-icon-close);
background-position: center; background-position: center;
background-size: auto 1rem; background-size: auto 1rem;
background-repeat: no-repeat; background-repeat: no-repeat;
background-color: transparent;
opacity: 0.5; opacity: 0.5;
transition: opacity var(--pico-transition); transition: opacity var(--pico-transition);
} }
dialog article a[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) { dialog article :is(a, button)[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
opacity: 1; opacity: 1;
} }
dialog:not([open]), dialog[open=false] { dialog:not([open]), dialog[open=false] {

File diff suppressed because one or more lines are too long

View file

@ -1,6 +1,6 @@
@charset "UTF-8"; @charset "UTF-8";
/*! /*!
* Pico CSS v2.0.0 (https://picocss.com) * Pico CSS v2.0.1 (https://picocss.com)
* Copyright 2019-2024 - Licensed under MIT * Copyright 2019-2024 - Licensed under MIT
*/ */
/** /**
@ -560,7 +560,6 @@ progress,
text-underline-offset: var(--pico-text-underline-offset); text-underline-offset: var(--pico-text-underline-offset);
text-rendering: optimizeLegibility; text-rendering: optimizeLegibility;
overflow-wrap: break-word; overflow-wrap: break-word;
cursor: default;
-moz-tab-size: 4; -moz-tab-size: 4;
-o-tab-size: 4; -o-tab-size: 4;
tab-size: 4; tab-size: 4;
@ -1691,7 +1690,7 @@ input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=time] {
input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=search] { input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=search] {
padding-inline-start: calc(var(--pico-form-element-spacing-horizontal) + 1.75rem); padding-inline-start: calc(var(--pico-form-element-spacing-horizontal) + 1.75rem);
background-image: var(--pico-icon-search); background-image: var(--pico-icon-search);
background-position: center left 1.125rem; background-position: center left calc(var(--pico-form-element-spacing-horizontal) + 0.125rem);
background-size: 1rem auto; background-size: 1rem auto;
background-repeat: no-repeat; background-repeat: no-repeat;
} }
@ -2027,7 +2026,7 @@ dialog article {
dialog article > header > * { dialog article > header > * {
margin-bottom: 0; margin-bottom: 0;
} }
dialog article > header a[rel=prev] { dialog article > header :is(a, button)[rel=prev] {
margin: 0; margin: 0;
margin-left: var(--pico-spacing); margin-left: var(--pico-spacing);
float: right; float: right;
@ -2043,21 +2042,23 @@ dialog article > footer button:not(:first-of-type),
dialog article > footer [role=button]:not(:first-of-type) { dialog article > footer [role=button]:not(:first-of-type) {
margin-left: calc(var(--pico-spacing) * 0.5); margin-left: calc(var(--pico-spacing) * 0.5);
} }
dialog article a[rel=prev] { dialog article :is(a, button)[rel=prev] {
display: block; display: block;
width: 1rem; width: 1rem;
height: 1rem; height: 1rem;
margin-top: calc(var(--pico-spacing) * -1); margin-top: calc(var(--pico-spacing) * -1);
margin-bottom: var(--pico-spacing); margin-bottom: var(--pico-spacing);
margin-left: auto; margin-left: auto;
border: none;
background-image: var(--pico-icon-close); background-image: var(--pico-icon-close);
background-position: center; background-position: center;
background-size: auto 1rem; background-size: auto 1rem;
background-repeat: no-repeat; background-repeat: no-repeat;
background-color: transparent;
opacity: 0.5; opacity: 0.5;
transition: opacity var(--pico-transition); transition: opacity var(--pico-transition);
} }
dialog article a[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) { dialog article :is(a, button)[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
opacity: 1; opacity: 1;
} }
dialog:not([open]), dialog[open=false] { dialog:not([open]), dialog[open=false] {

File diff suppressed because one or more lines are too long

View file

@ -1,6 +1,6 @@
@charset "UTF-8"; @charset "UTF-8";
/*! /*!
* Pico CSS v2.0.0 (https://picocss.com) * Pico CSS v2.0.1 (https://picocss.com)
* Copyright 2019-2024 - Licensed under MIT * Copyright 2019-2024 - Licensed under MIT
*/ */
/** /**
@ -560,7 +560,6 @@ progress,
text-underline-offset: var(--pico-text-underline-offset); text-underline-offset: var(--pico-text-underline-offset);
text-rendering: optimizeLegibility; text-rendering: optimizeLegibility;
overflow-wrap: break-word; overflow-wrap: break-word;
cursor: default;
-moz-tab-size: 4; -moz-tab-size: 4;
-o-tab-size: 4; -o-tab-size: 4;
tab-size: 4; tab-size: 4;
@ -1691,7 +1690,7 @@ input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=time] {
input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=search] { input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=search] {
padding-inline-start: calc(var(--pico-form-element-spacing-horizontal) + 1.75rem); padding-inline-start: calc(var(--pico-form-element-spacing-horizontal) + 1.75rem);
background-image: var(--pico-icon-search); background-image: var(--pico-icon-search);
background-position: center left 1.125rem; background-position: center left calc(var(--pico-form-element-spacing-horizontal) + 0.125rem);
background-size: 1rem auto; background-size: 1rem auto;
background-repeat: no-repeat; background-repeat: no-repeat;
} }
@ -2027,7 +2026,7 @@ dialog article {
dialog article > header > * { dialog article > header > * {
margin-bottom: 0; margin-bottom: 0;
} }
dialog article > header a[rel=prev] { dialog article > header :is(a, button)[rel=prev] {
margin: 0; margin: 0;
margin-left: var(--pico-spacing); margin-left: var(--pico-spacing);
float: right; float: right;
@ -2043,21 +2042,23 @@ dialog article > footer button:not(:first-of-type),
dialog article > footer [role=button]:not(:first-of-type) { dialog article > footer [role=button]:not(:first-of-type) {
margin-left: calc(var(--pico-spacing) * 0.5); margin-left: calc(var(--pico-spacing) * 0.5);
} }
dialog article a[rel=prev] { dialog article :is(a, button)[rel=prev] {
display: block; display: block;
width: 1rem; width: 1rem;
height: 1rem; height: 1rem;
margin-top: calc(var(--pico-spacing) * -1); margin-top: calc(var(--pico-spacing) * -1);
margin-bottom: var(--pico-spacing); margin-bottom: var(--pico-spacing);
margin-left: auto; margin-left: auto;
border: none;
background-image: var(--pico-icon-close); background-image: var(--pico-icon-close);
background-position: center; background-position: center;
background-size: auto 1rem; background-size: auto 1rem;
background-repeat: no-repeat; background-repeat: no-repeat;
background-color: transparent;
opacity: 0.5; opacity: 0.5;
transition: opacity var(--pico-transition); transition: opacity var(--pico-transition);
} }
dialog article a[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) { dialog article :is(a, button)[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
opacity: 1; opacity: 1;
} }
dialog:not([open]), dialog[open=false] { dialog:not([open]), dialog[open=false] {

File diff suppressed because one or more lines are too long

View file

@ -1,6 +1,6 @@
@charset "UTF-8"; @charset "UTF-8";
/*! /*!
* Pico CSS v2.0.0 (https://picocss.com) * Pico CSS v2.0.1 (https://picocss.com)
* Copyright 2019-2024 - Licensed under MIT * Copyright 2019-2024 - Licensed under MIT
*/ */
/** /**
@ -560,7 +560,6 @@ progress,
text-underline-offset: var(--pico-text-underline-offset); text-underline-offset: var(--pico-text-underline-offset);
text-rendering: optimizeLegibility; text-rendering: optimizeLegibility;
overflow-wrap: break-word; overflow-wrap: break-word;
cursor: default;
-moz-tab-size: 4; -moz-tab-size: 4;
-o-tab-size: 4; -o-tab-size: 4;
tab-size: 4; tab-size: 4;
@ -1691,7 +1690,7 @@ input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=time] {
input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=search] { input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=search] {
padding-inline-start: calc(var(--pico-form-element-spacing-horizontal) + 1.75rem); padding-inline-start: calc(var(--pico-form-element-spacing-horizontal) + 1.75rem);
background-image: var(--pico-icon-search); background-image: var(--pico-icon-search);
background-position: center left 1.125rem; background-position: center left calc(var(--pico-form-element-spacing-horizontal) + 0.125rem);
background-size: 1rem auto; background-size: 1rem auto;
background-repeat: no-repeat; background-repeat: no-repeat;
} }
@ -2027,7 +2026,7 @@ dialog article {
dialog article > header > * { dialog article > header > * {
margin-bottom: 0; margin-bottom: 0;
} }
dialog article > header a[rel=prev] { dialog article > header :is(a, button)[rel=prev] {
margin: 0; margin: 0;
margin-left: var(--pico-spacing); margin-left: var(--pico-spacing);
float: right; float: right;
@ -2043,21 +2042,23 @@ dialog article > footer button:not(:first-of-type),
dialog article > footer [role=button]:not(:first-of-type) { dialog article > footer [role=button]:not(:first-of-type) {
margin-left: calc(var(--pico-spacing) * 0.5); margin-left: calc(var(--pico-spacing) * 0.5);
} }
dialog article a[rel=prev] { dialog article :is(a, button)[rel=prev] {
display: block; display: block;
width: 1rem; width: 1rem;
height: 1rem; height: 1rem;
margin-top: calc(var(--pico-spacing) * -1); margin-top: calc(var(--pico-spacing) * -1);
margin-bottom: var(--pico-spacing); margin-bottom: var(--pico-spacing);
margin-left: auto; margin-left: auto;
border: none;
background-image: var(--pico-icon-close); background-image: var(--pico-icon-close);
background-position: center; background-position: center;
background-size: auto 1rem; background-size: auto 1rem;
background-repeat: no-repeat; background-repeat: no-repeat;
background-color: transparent;
opacity: 0.5; opacity: 0.5;
transition: opacity var(--pico-transition); transition: opacity var(--pico-transition);
} }
dialog article a[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) { dialog article :is(a, button)[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
opacity: 1; opacity: 1;
} }
dialog:not([open]), dialog[open=false] { dialog:not([open]), dialog[open=false] {

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View file

@ -1,6 +1,6 @@
@charset "UTF-8"; @charset "UTF-8";
/*! /*!
* Pico CSS v2.0.0 (https://picocss.com) * Pico CSS v2.0.1 (https://picocss.com)
* Copyright 2019-2024 - Licensed under MIT * Copyright 2019-2024 - Licensed under MIT
*/ */
/** /**
@ -560,7 +560,6 @@ progress,
text-underline-offset: var(--pico-text-underline-offset); text-underline-offset: var(--pico-text-underline-offset);
text-rendering: optimizeLegibility; text-rendering: optimizeLegibility;
overflow-wrap: break-word; overflow-wrap: break-word;
cursor: default;
-moz-tab-size: 4; -moz-tab-size: 4;
-o-tab-size: 4; -o-tab-size: 4;
tab-size: 4; tab-size: 4;
@ -1691,7 +1690,7 @@ input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=time] {
input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=search] { input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=search] {
padding-inline-start: calc(var(--pico-form-element-spacing-horizontal) + 1.75rem); padding-inline-start: calc(var(--pico-form-element-spacing-horizontal) + 1.75rem);
background-image: var(--pico-icon-search); background-image: var(--pico-icon-search);
background-position: center left 1.125rem; background-position: center left calc(var(--pico-form-element-spacing-horizontal) + 0.125rem);
background-size: 1rem auto; background-size: 1rem auto;
background-repeat: no-repeat; background-repeat: no-repeat;
} }
@ -2027,7 +2026,7 @@ dialog article {
dialog article > header > * { dialog article > header > * {
margin-bottom: 0; margin-bottom: 0;
} }
dialog article > header a[rel=prev] { dialog article > header :is(a, button)[rel=prev] {
margin: 0; margin: 0;
margin-left: var(--pico-spacing); margin-left: var(--pico-spacing);
float: right; float: right;
@ -2043,21 +2042,23 @@ dialog article > footer button:not(:first-of-type),
dialog article > footer [role=button]:not(:first-of-type) { dialog article > footer [role=button]:not(:first-of-type) {
margin-left: calc(var(--pico-spacing) * 0.5); margin-left: calc(var(--pico-spacing) * 0.5);
} }
dialog article a[rel=prev] { dialog article :is(a, button)[rel=prev] {
display: block; display: block;
width: 1rem; width: 1rem;
height: 1rem; height: 1rem;
margin-top: calc(var(--pico-spacing) * -1); margin-top: calc(var(--pico-spacing) * -1);
margin-bottom: var(--pico-spacing); margin-bottom: var(--pico-spacing);
margin-left: auto; margin-left: auto;
border: none;
background-image: var(--pico-icon-close); background-image: var(--pico-icon-close);
background-position: center; background-position: center;
background-size: auto 1rem; background-size: auto 1rem;
background-repeat: no-repeat; background-repeat: no-repeat;
background-color: transparent;
opacity: 0.5; opacity: 0.5;
transition: opacity var(--pico-transition); transition: opacity var(--pico-transition);
} }
dialog article a[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) { dialog article :is(a, button)[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
opacity: 1; opacity: 1;
} }
dialog:not([open]), dialog[open=false] { dialog:not([open]), dialog[open=false] {

File diff suppressed because one or more lines are too long

View file

@ -1,6 +1,6 @@
@charset "UTF-8"; @charset "UTF-8";
/*! /*!
* Pico CSS v2.0.0 (https://picocss.com) * Pico CSS v2.0.1 (https://picocss.com)
* Copyright 2019-2024 - Licensed under MIT * Copyright 2019-2024 - Licensed under MIT
*/ */
/** /**
@ -560,7 +560,6 @@ progress,
text-underline-offset: var(--pico-text-underline-offset); text-underline-offset: var(--pico-text-underline-offset);
text-rendering: optimizeLegibility; text-rendering: optimizeLegibility;
overflow-wrap: break-word; overflow-wrap: break-word;
cursor: default;
-moz-tab-size: 4; -moz-tab-size: 4;
-o-tab-size: 4; -o-tab-size: 4;
tab-size: 4; tab-size: 4;
@ -1691,7 +1690,7 @@ input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=time] {
input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=search] { input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=search] {
padding-inline-start: calc(var(--pico-form-element-spacing-horizontal) + 1.75rem); padding-inline-start: calc(var(--pico-form-element-spacing-horizontal) + 1.75rem);
background-image: var(--pico-icon-search); background-image: var(--pico-icon-search);
background-position: center left 1.125rem; background-position: center left calc(var(--pico-form-element-spacing-horizontal) + 0.125rem);
background-size: 1rem auto; background-size: 1rem auto;
background-repeat: no-repeat; background-repeat: no-repeat;
} }
@ -2027,7 +2026,7 @@ dialog article {
dialog article > header > * { dialog article > header > * {
margin-bottom: 0; margin-bottom: 0;
} }
dialog article > header a[rel=prev] { dialog article > header :is(a, button)[rel=prev] {
margin: 0; margin: 0;
margin-left: var(--pico-spacing); margin-left: var(--pico-spacing);
float: right; float: right;
@ -2043,21 +2042,23 @@ dialog article > footer button:not(:first-of-type),
dialog article > footer [role=button]:not(:first-of-type) { dialog article > footer [role=button]:not(:first-of-type) {
margin-left: calc(var(--pico-spacing) * 0.5); margin-left: calc(var(--pico-spacing) * 0.5);
} }
dialog article a[rel=prev] { dialog article :is(a, button)[rel=prev] {
display: block; display: block;
width: 1rem; width: 1rem;
height: 1rem; height: 1rem;
margin-top: calc(var(--pico-spacing) * -1); margin-top: calc(var(--pico-spacing) * -1);
margin-bottom: var(--pico-spacing); margin-bottom: var(--pico-spacing);
margin-left: auto; margin-left: auto;
border: none;
background-image: var(--pico-icon-close); background-image: var(--pico-icon-close);
background-position: center; background-position: center;
background-size: auto 1rem; background-size: auto 1rem;
background-repeat: no-repeat; background-repeat: no-repeat;
background-color: transparent;
opacity: 0.5; opacity: 0.5;
transition: opacity var(--pico-transition); transition: opacity var(--pico-transition);
} }
dialog article a[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) { dialog article :is(a, button)[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
opacity: 1; opacity: 1;
} }
dialog:not([open]), dialog[open=false] { dialog:not([open]), dialog[open=false] {

File diff suppressed because one or more lines are too long

View file

@ -1,6 +1,6 @@
@charset "UTF-8"; @charset "UTF-8";
/*! /*!
* Pico CSS v2.0.0 (https://picocss.com) * Pico CSS v2.0.1 (https://picocss.com)
* Copyright 2019-2024 - Licensed under MIT * Copyright 2019-2024 - Licensed under MIT
*/ */
/** /**
@ -560,7 +560,6 @@ progress,
text-underline-offset: var(--pico-text-underline-offset); text-underline-offset: var(--pico-text-underline-offset);
text-rendering: optimizeLegibility; text-rendering: optimizeLegibility;
overflow-wrap: break-word; overflow-wrap: break-word;
cursor: default;
-moz-tab-size: 4; -moz-tab-size: 4;
-o-tab-size: 4; -o-tab-size: 4;
tab-size: 4; tab-size: 4;
@ -1691,7 +1690,7 @@ input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=time] {
input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=search] { input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=search] {
padding-inline-start: calc(var(--pico-form-element-spacing-horizontal) + 1.75rem); padding-inline-start: calc(var(--pico-form-element-spacing-horizontal) + 1.75rem);
background-image: var(--pico-icon-search); background-image: var(--pico-icon-search);
background-position: center left 1.125rem; background-position: center left calc(var(--pico-form-element-spacing-horizontal) + 0.125rem);
background-size: 1rem auto; background-size: 1rem auto;
background-repeat: no-repeat; background-repeat: no-repeat;
} }
@ -2027,7 +2026,7 @@ dialog article {
dialog article > header > * { dialog article > header > * {
margin-bottom: 0; margin-bottom: 0;
} }
dialog article > header a[rel=prev] { dialog article > header :is(a, button)[rel=prev] {
margin: 0; margin: 0;
margin-left: var(--pico-spacing); margin-left: var(--pico-spacing);
float: right; float: right;
@ -2043,21 +2042,23 @@ dialog article > footer button:not(:first-of-type),
dialog article > footer [role=button]:not(:first-of-type) { dialog article > footer [role=button]:not(:first-of-type) {
margin-left: calc(var(--pico-spacing) * 0.5); margin-left: calc(var(--pico-spacing) * 0.5);
} }
dialog article a[rel=prev] { dialog article :is(a, button)[rel=prev] {
display: block; display: block;
width: 1rem; width: 1rem;
height: 1rem; height: 1rem;
margin-top: calc(var(--pico-spacing) * -1); margin-top: calc(var(--pico-spacing) * -1);
margin-bottom: var(--pico-spacing); margin-bottom: var(--pico-spacing);
margin-left: auto; margin-left: auto;
border: none;
background-image: var(--pico-icon-close); background-image: var(--pico-icon-close);
background-position: center; background-position: center;
background-size: auto 1rem; background-size: auto 1rem;
background-repeat: no-repeat; background-repeat: no-repeat;
background-color: transparent;
opacity: 0.5; opacity: 0.5;
transition: opacity var(--pico-transition); transition: opacity var(--pico-transition);
} }
dialog article a[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) { dialog article :is(a, button)[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
opacity: 1; opacity: 1;
} }
dialog:not([open]), dialog[open=false] { dialog:not([open]), dialog[open=false] {

File diff suppressed because one or more lines are too long

View file

@ -1,6 +1,6 @@
@charset "UTF-8"; @charset "UTF-8";
/*! /*!
* Pico CSS v2.0.0 (https://picocss.com) * Pico CSS v2.0.1 (https://picocss.com)
* Copyright 2019-2024 - Licensed under MIT * Copyright 2019-2024 - Licensed under MIT
*/ */
/** /**
@ -560,7 +560,6 @@ progress,
text-underline-offset: var(--pico-text-underline-offset); text-underline-offset: var(--pico-text-underline-offset);
text-rendering: optimizeLegibility; text-rendering: optimizeLegibility;
overflow-wrap: break-word; overflow-wrap: break-word;
cursor: default;
-moz-tab-size: 4; -moz-tab-size: 4;
-o-tab-size: 4; -o-tab-size: 4;
tab-size: 4; tab-size: 4;
@ -1691,7 +1690,7 @@ input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=time] {
input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=search] { input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=search] {
padding-inline-start: calc(var(--pico-form-element-spacing-horizontal) + 1.75rem); padding-inline-start: calc(var(--pico-form-element-spacing-horizontal) + 1.75rem);
background-image: var(--pico-icon-search); background-image: var(--pico-icon-search);
background-position: center left 1.125rem; background-position: center left calc(var(--pico-form-element-spacing-horizontal) + 0.125rem);
background-size: 1rem auto; background-size: 1rem auto;
background-repeat: no-repeat; background-repeat: no-repeat;
} }
@ -2027,7 +2026,7 @@ dialog article {
dialog article > header > * { dialog article > header > * {
margin-bottom: 0; margin-bottom: 0;
} }
dialog article > header a[rel=prev] { dialog article > header :is(a, button)[rel=prev] {
margin: 0; margin: 0;
margin-left: var(--pico-spacing); margin-left: var(--pico-spacing);
float: right; float: right;
@ -2043,21 +2042,23 @@ dialog article > footer button:not(:first-of-type),
dialog article > footer [role=button]:not(:first-of-type) { dialog article > footer [role=button]:not(:first-of-type) {
margin-left: calc(var(--pico-spacing) * 0.5); margin-left: calc(var(--pico-spacing) * 0.5);
} }
dialog article a[rel=prev] { dialog article :is(a, button)[rel=prev] {
display: block; display: block;
width: 1rem; width: 1rem;
height: 1rem; height: 1rem;
margin-top: calc(var(--pico-spacing) * -1); margin-top: calc(var(--pico-spacing) * -1);
margin-bottom: var(--pico-spacing); margin-bottom: var(--pico-spacing);
margin-left: auto; margin-left: auto;
border: none;
background-image: var(--pico-icon-close); background-image: var(--pico-icon-close);
background-position: center; background-position: center;
background-size: auto 1rem; background-size: auto 1rem;
background-repeat: no-repeat; background-repeat: no-repeat;
background-color: transparent;
opacity: 0.5; opacity: 0.5;
transition: opacity var(--pico-transition); transition: opacity var(--pico-transition);
} }
dialog article a[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) { dialog article :is(a, button)[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
opacity: 1; opacity: 1;
} }
dialog:not([open]), dialog[open=false] { dialog:not([open]), dialog[open=false] {

File diff suppressed because one or more lines are too long

View file

@ -1,6 +1,6 @@
@charset "UTF-8"; @charset "UTF-8";
/*! /*!
* Pico CSS v2.0.0 (https://picocss.com) * Pico CSS v2.0.1 (https://picocss.com)
* Copyright 2019-2024 - Licensed under MIT * Copyright 2019-2024 - Licensed under MIT
*/ */
/** /**
@ -560,7 +560,6 @@ progress,
text-underline-offset: var(--pico-text-underline-offset); text-underline-offset: var(--pico-text-underline-offset);
text-rendering: optimizeLegibility; text-rendering: optimizeLegibility;
overflow-wrap: break-word; overflow-wrap: break-word;
cursor: default;
-moz-tab-size: 4; -moz-tab-size: 4;
-o-tab-size: 4; -o-tab-size: 4;
tab-size: 4; tab-size: 4;
@ -1691,7 +1690,7 @@ input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=time] {
input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=search] { input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=search] {
padding-inline-start: calc(var(--pico-form-element-spacing-horizontal) + 1.75rem); padding-inline-start: calc(var(--pico-form-element-spacing-horizontal) + 1.75rem);
background-image: var(--pico-icon-search); background-image: var(--pico-icon-search);
background-position: center left 1.125rem; background-position: center left calc(var(--pico-form-element-spacing-horizontal) + 0.125rem);
background-size: 1rem auto; background-size: 1rem auto;
background-repeat: no-repeat; background-repeat: no-repeat;
} }
@ -2027,7 +2026,7 @@ dialog article {
dialog article > header > * { dialog article > header > * {
margin-bottom: 0; margin-bottom: 0;
} }
dialog article > header a[rel=prev] { dialog article > header :is(a, button)[rel=prev] {
margin: 0; margin: 0;
margin-left: var(--pico-spacing); margin-left: var(--pico-spacing);
float: right; float: right;
@ -2043,21 +2042,23 @@ dialog article > footer button:not(:first-of-type),
dialog article > footer [role=button]:not(:first-of-type) { dialog article > footer [role=button]:not(:first-of-type) {
margin-left: calc(var(--pico-spacing) * 0.5); margin-left: calc(var(--pico-spacing) * 0.5);
} }
dialog article a[rel=prev] { dialog article :is(a, button)[rel=prev] {
display: block; display: block;
width: 1rem; width: 1rem;
height: 1rem; height: 1rem;
margin-top: calc(var(--pico-spacing) * -1); margin-top: calc(var(--pico-spacing) * -1);
margin-bottom: var(--pico-spacing); margin-bottom: var(--pico-spacing);
margin-left: auto; margin-left: auto;
border: none;
background-image: var(--pico-icon-close); background-image: var(--pico-icon-close);
background-position: center; background-position: center;
background-size: auto 1rem; background-size: auto 1rem;
background-repeat: no-repeat; background-repeat: no-repeat;
background-color: transparent;
opacity: 0.5; opacity: 0.5;
transition: opacity var(--pico-transition); transition: opacity var(--pico-transition);
} }
dialog article a[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) { dialog article :is(a, button)[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
opacity: 1; opacity: 1;
} }
dialog:not([open]), dialog[open=false] { dialog:not([open]), dialog[open=false] {

File diff suppressed because one or more lines are too long

View file

@ -1,6 +1,6 @@
@charset "UTF-8"; @charset "UTF-8";
/*! /*!
* Pico CSS v2.0.0 (https://picocss.com) * Pico CSS v2.0.1 (https://picocss.com)
* Copyright 2019-2024 - Licensed under MIT * Copyright 2019-2024 - Licensed under MIT
*/ */
/** /**
@ -560,7 +560,6 @@ progress,
text-underline-offset: var(--pico-text-underline-offset); text-underline-offset: var(--pico-text-underline-offset);
text-rendering: optimizeLegibility; text-rendering: optimizeLegibility;
overflow-wrap: break-word; overflow-wrap: break-word;
cursor: default;
-moz-tab-size: 4; -moz-tab-size: 4;
-o-tab-size: 4; -o-tab-size: 4;
tab-size: 4; tab-size: 4;
@ -1691,7 +1690,7 @@ input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=time] {
input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=search] { input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=search] {
padding-inline-start: calc(var(--pico-form-element-spacing-horizontal) + 1.75rem); padding-inline-start: calc(var(--pico-form-element-spacing-horizontal) + 1.75rem);
background-image: var(--pico-icon-search); background-image: var(--pico-icon-search);
background-position: center left 1.125rem; background-position: center left calc(var(--pico-form-element-spacing-horizontal) + 0.125rem);
background-size: 1rem auto; background-size: 1rem auto;
background-repeat: no-repeat; background-repeat: no-repeat;
} }
@ -2027,7 +2026,7 @@ dialog article {
dialog article > header > * { dialog article > header > * {
margin-bottom: 0; margin-bottom: 0;
} }
dialog article > header a[rel=prev] { dialog article > header :is(a, button)[rel=prev] {
margin: 0; margin: 0;
margin-left: var(--pico-spacing); margin-left: var(--pico-spacing);
float: right; float: right;
@ -2043,21 +2042,23 @@ dialog article > footer button:not(:first-of-type),
dialog article > footer [role=button]:not(:first-of-type) { dialog article > footer [role=button]:not(:first-of-type) {
margin-left: calc(var(--pico-spacing) * 0.5); margin-left: calc(var(--pico-spacing) * 0.5);
} }
dialog article a[rel=prev] { dialog article :is(a, button)[rel=prev] {
display: block; display: block;
width: 1rem; width: 1rem;
height: 1rem; height: 1rem;
margin-top: calc(var(--pico-spacing) * -1); margin-top: calc(var(--pico-spacing) * -1);
margin-bottom: var(--pico-spacing); margin-bottom: var(--pico-spacing);
margin-left: auto; margin-left: auto;
border: none;
background-image: var(--pico-icon-close); background-image: var(--pico-icon-close);
background-position: center; background-position: center;
background-size: auto 1rem; background-size: auto 1rem;
background-repeat: no-repeat; background-repeat: no-repeat;
background-color: transparent;
opacity: 0.5; opacity: 0.5;
transition: opacity var(--pico-transition); transition: opacity var(--pico-transition);
} }
dialog article a[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) { dialog article :is(a, button)[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
opacity: 1; opacity: 1;
} }
dialog:not([open]), dialog[open=false] { dialog:not([open]), dialog[open=false] {

File diff suppressed because one or more lines are too long

View file

@ -1,6 +1,6 @@
@charset "UTF-8"; @charset "UTF-8";
/*! /*!
* Pico CSS v2.0.0 (https://picocss.com) * Pico CSS v2.0.1 (https://picocss.com)
* Copyright 2019-2024 - Licensed under MIT * Copyright 2019-2024 - Licensed under MIT
*/ */
/** /**
@ -560,7 +560,6 @@ progress,
text-underline-offset: var(--pico-text-underline-offset); text-underline-offset: var(--pico-text-underline-offset);
text-rendering: optimizeLegibility; text-rendering: optimizeLegibility;
overflow-wrap: break-word; overflow-wrap: break-word;
cursor: default;
-moz-tab-size: 4; -moz-tab-size: 4;
-o-tab-size: 4; -o-tab-size: 4;
tab-size: 4; tab-size: 4;
@ -1691,7 +1690,7 @@ input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=time] {
input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=search] { input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=search] {
padding-inline-start: calc(var(--pico-form-element-spacing-horizontal) + 1.75rem); padding-inline-start: calc(var(--pico-form-element-spacing-horizontal) + 1.75rem);
background-image: var(--pico-icon-search); background-image: var(--pico-icon-search);
background-position: center left 1.125rem; background-position: center left calc(var(--pico-form-element-spacing-horizontal) + 0.125rem);
background-size: 1rem auto; background-size: 1rem auto;
background-repeat: no-repeat; background-repeat: no-repeat;
} }
@ -2027,7 +2026,7 @@ dialog article {
dialog article > header > * { dialog article > header > * {
margin-bottom: 0; margin-bottom: 0;
} }
dialog article > header a[rel=prev] { dialog article > header :is(a, button)[rel=prev] {
margin: 0; margin: 0;
margin-left: var(--pico-spacing); margin-left: var(--pico-spacing);
float: right; float: right;
@ -2043,21 +2042,23 @@ dialog article > footer button:not(:first-of-type),
dialog article > footer [role=button]:not(:first-of-type) { dialog article > footer [role=button]:not(:first-of-type) {
margin-left: calc(var(--pico-spacing) * 0.5); margin-left: calc(var(--pico-spacing) * 0.5);
} }
dialog article a[rel=prev] { dialog article :is(a, button)[rel=prev] {
display: block; display: block;
width: 1rem; width: 1rem;
height: 1rem; height: 1rem;
margin-top: calc(var(--pico-spacing) * -1); margin-top: calc(var(--pico-spacing) * -1);
margin-bottom: var(--pico-spacing); margin-bottom: var(--pico-spacing);
margin-left: auto; margin-left: auto;
border: none;
background-image: var(--pico-icon-close); background-image: var(--pico-icon-close);
background-position: center; background-position: center;
background-size: auto 1rem; background-size: auto 1rem;
background-repeat: no-repeat; background-repeat: no-repeat;
background-color: transparent;
opacity: 0.5; opacity: 0.5;
transition: opacity var(--pico-transition); transition: opacity var(--pico-transition);
} }
dialog article a[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) { dialog article :is(a, button)[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
opacity: 1; opacity: 1;
} }
dialog:not([open]), dialog[open=false] { dialog:not([open]), dialog[open=false] {

File diff suppressed because one or more lines are too long

View file

@ -1,6 +1,6 @@
@charset "UTF-8"; @charset "UTF-8";
/*! /*!
* Pico CSS v2.0.0 (https://picocss.com) * Pico CSS v2.0.1 (https://picocss.com)
* Copyright 2019-2024 - Licensed under MIT * Copyright 2019-2024 - Licensed under MIT
*/ */
/** /**
@ -560,7 +560,6 @@ progress,
text-underline-offset: var(--pico-text-underline-offset); text-underline-offset: var(--pico-text-underline-offset);
text-rendering: optimizeLegibility; text-rendering: optimizeLegibility;
overflow-wrap: break-word; overflow-wrap: break-word;
cursor: default;
-moz-tab-size: 4; -moz-tab-size: 4;
-o-tab-size: 4; -o-tab-size: 4;
tab-size: 4; tab-size: 4;
@ -1691,7 +1690,7 @@ input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=time] {
input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=search] { input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=search] {
padding-inline-start: calc(var(--pico-form-element-spacing-horizontal) + 1.75rem); padding-inline-start: calc(var(--pico-form-element-spacing-horizontal) + 1.75rem);
background-image: var(--pico-icon-search); background-image: var(--pico-icon-search);
background-position: center left 1.125rem; background-position: center left calc(var(--pico-form-element-spacing-horizontal) + 0.125rem);
background-size: 1rem auto; background-size: 1rem auto;
background-repeat: no-repeat; background-repeat: no-repeat;
} }
@ -2027,7 +2026,7 @@ dialog article {
dialog article > header > * { dialog article > header > * {
margin-bottom: 0; margin-bottom: 0;
} }
dialog article > header a[rel=prev] { dialog article > header :is(a, button)[rel=prev] {
margin: 0; margin: 0;
margin-left: var(--pico-spacing); margin-left: var(--pico-spacing);
float: right; float: right;
@ -2043,21 +2042,23 @@ dialog article > footer button:not(:first-of-type),
dialog article > footer [role=button]:not(:first-of-type) { dialog article > footer [role=button]:not(:first-of-type) {
margin-left: calc(var(--pico-spacing) * 0.5); margin-left: calc(var(--pico-spacing) * 0.5);
} }
dialog article a[rel=prev] { dialog article :is(a, button)[rel=prev] {
display: block; display: block;
width: 1rem; width: 1rem;
height: 1rem; height: 1rem;
margin-top: calc(var(--pico-spacing) * -1); margin-top: calc(var(--pico-spacing) * -1);
margin-bottom: var(--pico-spacing); margin-bottom: var(--pico-spacing);
margin-left: auto; margin-left: auto;
border: none;
background-image: var(--pico-icon-close); background-image: var(--pico-icon-close);
background-position: center; background-position: center;
background-size: auto 1rem; background-size: auto 1rem;
background-repeat: no-repeat; background-repeat: no-repeat;
background-color: transparent;
opacity: 0.5; opacity: 0.5;
transition: opacity var(--pico-transition); transition: opacity var(--pico-transition);
} }
dialog article a[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) { dialog article :is(a, button)[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
opacity: 1; opacity: 1;
} }
dialog:not([open]), dialog[open=false] { dialog:not([open]), dialog[open=false] {

File diff suppressed because one or more lines are too long

View file

@ -1,6 +1,6 @@
@charset "UTF-8"; @charset "UTF-8";
/*! /*!
* Pico CSS v2.0.0 (https://picocss.com) * Pico CSS v2.0.1 (https://picocss.com)
* Copyright 2019-2024 - Licensed under MIT * Copyright 2019-2024 - Licensed under MIT
*/ */
/** /**
@ -560,7 +560,6 @@ progress,
text-underline-offset: var(--pico-text-underline-offset); text-underline-offset: var(--pico-text-underline-offset);
text-rendering: optimizeLegibility; text-rendering: optimizeLegibility;
overflow-wrap: break-word; overflow-wrap: break-word;
cursor: default;
-moz-tab-size: 4; -moz-tab-size: 4;
-o-tab-size: 4; -o-tab-size: 4;
tab-size: 4; tab-size: 4;
@ -1691,7 +1690,7 @@ input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=time] {
input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=search] { input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=search] {
padding-inline-start: calc(var(--pico-form-element-spacing-horizontal) + 1.75rem); padding-inline-start: calc(var(--pico-form-element-spacing-horizontal) + 1.75rem);
background-image: var(--pico-icon-search); background-image: var(--pico-icon-search);
background-position: center left 1.125rem; background-position: center left calc(var(--pico-form-element-spacing-horizontal) + 0.125rem);
background-size: 1rem auto; background-size: 1rem auto;
background-repeat: no-repeat; background-repeat: no-repeat;
} }
@ -2027,7 +2026,7 @@ dialog article {
dialog article > header > * { dialog article > header > * {
margin-bottom: 0; margin-bottom: 0;
} }
dialog article > header a[rel=prev] { dialog article > header :is(a, button)[rel=prev] {
margin: 0; margin: 0;
margin-left: var(--pico-spacing); margin-left: var(--pico-spacing);
float: right; float: right;
@ -2043,21 +2042,23 @@ dialog article > footer button:not(:first-of-type),
dialog article > footer [role=button]:not(:first-of-type) { dialog article > footer [role=button]:not(:first-of-type) {
margin-left: calc(var(--pico-spacing) * 0.5); margin-left: calc(var(--pico-spacing) * 0.5);
} }
dialog article a[rel=prev] { dialog article :is(a, button)[rel=prev] {
display: block; display: block;
width: 1rem; width: 1rem;
height: 1rem; height: 1rem;
margin-top: calc(var(--pico-spacing) * -1); margin-top: calc(var(--pico-spacing) * -1);
margin-bottom: var(--pico-spacing); margin-bottom: var(--pico-spacing);
margin-left: auto; margin-left: auto;
border: none;
background-image: var(--pico-icon-close); background-image: var(--pico-icon-close);
background-position: center; background-position: center;
background-size: auto 1rem; background-size: auto 1rem;
background-repeat: no-repeat; background-repeat: no-repeat;
background-color: transparent;
opacity: 0.5; opacity: 0.5;
transition: opacity var(--pico-transition); transition: opacity var(--pico-transition);
} }
dialog article a[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) { dialog article :is(a, button)[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
opacity: 1; opacity: 1;
} }
dialog:not([open]), dialog[open=false] { dialog:not([open]), dialog[open=false] {

File diff suppressed because one or more lines are too long

View file

@ -1,6 +1,6 @@
@charset "UTF-8"; @charset "UTF-8";
/*! /*!
* Pico CSS v2.0.0 (https://picocss.com) * Pico CSS v2.0.1 (https://picocss.com)
* Copyright 2019-2024 - Licensed under MIT * Copyright 2019-2024 - Licensed under MIT
*/ */
/** /**
@ -560,7 +560,6 @@ progress,
text-underline-offset: var(--pico-text-underline-offset); text-underline-offset: var(--pico-text-underline-offset);
text-rendering: optimizeLegibility; text-rendering: optimizeLegibility;
overflow-wrap: break-word; overflow-wrap: break-word;
cursor: default;
-moz-tab-size: 4; -moz-tab-size: 4;
-o-tab-size: 4; -o-tab-size: 4;
tab-size: 4; tab-size: 4;
@ -1691,7 +1690,7 @@ input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=time] {
input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=search] { input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=search] {
padding-inline-start: calc(var(--pico-form-element-spacing-horizontal) + 1.75rem); padding-inline-start: calc(var(--pico-form-element-spacing-horizontal) + 1.75rem);
background-image: var(--pico-icon-search); background-image: var(--pico-icon-search);
background-position: center left 1.125rem; background-position: center left calc(var(--pico-form-element-spacing-horizontal) + 0.125rem);
background-size: 1rem auto; background-size: 1rem auto;
background-repeat: no-repeat; background-repeat: no-repeat;
} }
@ -2027,7 +2026,7 @@ dialog article {
dialog article > header > * { dialog article > header > * {
margin-bottom: 0; margin-bottom: 0;
} }
dialog article > header a[rel=prev] { dialog article > header :is(a, button)[rel=prev] {
margin: 0; margin: 0;
margin-left: var(--pico-spacing); margin-left: var(--pico-spacing);
float: right; float: right;
@ -2043,21 +2042,23 @@ dialog article > footer button:not(:first-of-type),
dialog article > footer [role=button]:not(:first-of-type) { dialog article > footer [role=button]:not(:first-of-type) {
margin-left: calc(var(--pico-spacing) * 0.5); margin-left: calc(var(--pico-spacing) * 0.5);
} }
dialog article a[rel=prev] { dialog article :is(a, button)[rel=prev] {
display: block; display: block;
width: 1rem; width: 1rem;
height: 1rem; height: 1rem;
margin-top: calc(var(--pico-spacing) * -1); margin-top: calc(var(--pico-spacing) * -1);
margin-bottom: var(--pico-spacing); margin-bottom: var(--pico-spacing);
margin-left: auto; margin-left: auto;
border: none;
background-image: var(--pico-icon-close); background-image: var(--pico-icon-close);
background-position: center; background-position: center;
background-size: auto 1rem; background-size: auto 1rem;
background-repeat: no-repeat; background-repeat: no-repeat;
background-color: transparent;
opacity: 0.5; opacity: 0.5;
transition: opacity var(--pico-transition); transition: opacity var(--pico-transition);
} }
dialog article a[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) { dialog article :is(a, button)[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
opacity: 1; opacity: 1;
} }
dialog:not([open]), dialog[open=false] { dialog:not([open]), dialog[open=false] {

File diff suppressed because one or more lines are too long

View file

@ -1,6 +1,6 @@
@charset "UTF-8"; @charset "UTF-8";
/*! /*!
* Pico CSS v2.0.0 (https://picocss.com) * Pico CSS v2.0.1 (https://picocss.com)
* Copyright 2019-2024 - Licensed under MIT * Copyright 2019-2024 - Licensed under MIT
*/ */
:root { :root {

File diff suppressed because one or more lines are too long

View file

@ -1,6 +1,6 @@
@charset "UTF-8"; @charset "UTF-8";
/*! /*!
* Pico CSS v2.0.0 (https://picocss.com) * Pico CSS v2.0.1 (https://picocss.com)
* Copyright 2019-2024 - Licensed under MIT * Copyright 2019-2024 - Licensed under MIT
*/ */
/** /**
@ -628,7 +628,6 @@ nav details.dropdown summary:focus-visible {
text-underline-offset: var(--pico-text-underline-offset); text-underline-offset: var(--pico-text-underline-offset);
text-rendering: optimizeLegibility; text-rendering: optimizeLegibility;
overflow-wrap: break-word; overflow-wrap: break-word;
cursor: default;
-moz-tab-size: 4; -moz-tab-size: 4;
-o-tab-size: 4; -o-tab-size: 4;
tab-size: 4; tab-size: 4;
@ -1857,7 +1856,7 @@ main {
.pico input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=search] { .pico input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=search] {
padding-inline-start: calc(var(--pico-form-element-spacing-horizontal) + 1.75rem); padding-inline-start: calc(var(--pico-form-element-spacing-horizontal) + 1.75rem);
background-image: var(--pico-icon-search); background-image: var(--pico-icon-search);
background-position: center left 1.125rem; background-position: center left calc(var(--pico-form-element-spacing-horizontal) + 0.125rem);
background-size: 1rem auto; background-size: 1rem auto;
background-repeat: no-repeat; background-repeat: no-repeat;
} }
@ -2353,7 +2352,7 @@ main {
.pico dialog article > header > * { .pico dialog article > header > * {
margin-bottom: 0; margin-bottom: 0;
} }
.pico dialog article > header .close, .pico dialog article > header a[rel=prev] { .pico dialog article > header .close, .pico dialog article > header :is(a, button)[rel=prev] {
margin: 0; margin: 0;
margin-left: var(--pico-spacing); margin-left: var(--pico-spacing);
float: right; float: right;
@ -2369,21 +2368,23 @@ main {
.pico dialog article > footer [role=button]:not(:first-of-type) { .pico dialog article > footer [role=button]:not(:first-of-type) {
margin-left: calc(var(--pico-spacing) * 0.5); margin-left: calc(var(--pico-spacing) * 0.5);
} }
.pico dialog article .close, .pico dialog article a[rel=prev] { .pico dialog article .close, .pico dialog article :is(a, button)[rel=prev] {
display: block; display: block;
width: 1rem; width: 1rem;
height: 1rem; height: 1rem;
margin-top: calc(var(--pico-spacing) * -1); margin-top: calc(var(--pico-spacing) * -1);
margin-bottom: var(--pico-spacing); margin-bottom: var(--pico-spacing);
margin-left: auto; margin-left: auto;
border: none;
background-image: var(--pico-icon-close); background-image: var(--pico-icon-close);
background-position: center; background-position: center;
background-size: auto 1rem; background-size: auto 1rem;
background-repeat: no-repeat; background-repeat: no-repeat;
background-color: transparent;
opacity: 0.5; opacity: 0.5;
transition: opacity var(--pico-transition); transition: opacity var(--pico-transition);
} }
.pico dialog article .close:is([aria-current]:not([aria-current=false]), :hover, :active, :focus), .pico dialog article a[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) { .pico dialog article .close:is([aria-current]:not([aria-current=false]), :hover, :active, :focus), .pico dialog article :is(a, button)[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
opacity: 1; opacity: 1;
} }
.pico dialog:not([open]), .pico dialog[open=false] { .pico dialog:not([open]), .pico dialog[open=false] {

File diff suppressed because one or more lines are too long

View file

@ -1,6 +1,6 @@
@charset "UTF-8"; @charset "UTF-8";
/*! /*!
* Pico CSS v2.0.0 (https://picocss.com) * Pico CSS v2.0.1 (https://picocss.com)
* Copyright 2019-2024 - Licensed under MIT * Copyright 2019-2024 - Licensed under MIT
*/ */
/** /**
@ -628,7 +628,6 @@ nav details.dropdown summary:focus-visible {
text-underline-offset: var(--pico-text-underline-offset); text-underline-offset: var(--pico-text-underline-offset);
text-rendering: optimizeLegibility; text-rendering: optimizeLegibility;
overflow-wrap: break-word; overflow-wrap: break-word;
cursor: default;
-moz-tab-size: 4; -moz-tab-size: 4;
-o-tab-size: 4; -o-tab-size: 4;
tab-size: 4; tab-size: 4;
@ -1857,7 +1856,7 @@ main {
.pico input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=search] { .pico input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=search] {
padding-inline-start: calc(var(--pico-form-element-spacing-horizontal) + 1.75rem); padding-inline-start: calc(var(--pico-form-element-spacing-horizontal) + 1.75rem);
background-image: var(--pico-icon-search); background-image: var(--pico-icon-search);
background-position: center left 1.125rem; background-position: center left calc(var(--pico-form-element-spacing-horizontal) + 0.125rem);
background-size: 1rem auto; background-size: 1rem auto;
background-repeat: no-repeat; background-repeat: no-repeat;
} }
@ -2353,7 +2352,7 @@ main {
.pico dialog article > header > * { .pico dialog article > header > * {
margin-bottom: 0; margin-bottom: 0;
} }
.pico dialog article > header .close, .pico dialog article > header a[rel=prev] { .pico dialog article > header .close, .pico dialog article > header :is(a, button)[rel=prev] {
margin: 0; margin: 0;
margin-left: var(--pico-spacing); margin-left: var(--pico-spacing);
float: right; float: right;
@ -2369,21 +2368,23 @@ main {
.pico dialog article > footer [role=button]:not(:first-of-type) { .pico dialog article > footer [role=button]:not(:first-of-type) {
margin-left: calc(var(--pico-spacing) * 0.5); margin-left: calc(var(--pico-spacing) * 0.5);
} }
.pico dialog article .close, .pico dialog article a[rel=prev] { .pico dialog article .close, .pico dialog article :is(a, button)[rel=prev] {
display: block; display: block;
width: 1rem; width: 1rem;
height: 1rem; height: 1rem;
margin-top: calc(var(--pico-spacing) * -1); margin-top: calc(var(--pico-spacing) * -1);
margin-bottom: var(--pico-spacing); margin-bottom: var(--pico-spacing);
margin-left: auto; margin-left: auto;
border: none;
background-image: var(--pico-icon-close); background-image: var(--pico-icon-close);
background-position: center; background-position: center;
background-size: auto 1rem; background-size: auto 1rem;
background-repeat: no-repeat; background-repeat: no-repeat;
background-color: transparent;
opacity: 0.5; opacity: 0.5;
transition: opacity var(--pico-transition); transition: opacity var(--pico-transition);
} }
.pico dialog article .close:is([aria-current]:not([aria-current=false]), :hover, :active, :focus), .pico dialog article a[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) { .pico dialog article .close:is([aria-current]:not([aria-current=false]), :hover, :active, :focus), .pico dialog article :is(a, button)[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
opacity: 1; opacity: 1;
} }
.pico dialog:not([open]), .pico dialog[open=false] { .pico dialog:not([open]), .pico dialog[open=false] {

File diff suppressed because one or more lines are too long

View file

@ -1,6 +1,6 @@
@charset "UTF-8"; @charset "UTF-8";
/*! /*!
* Pico CSS v2.0.0 (https://picocss.com) * Pico CSS v2.0.1 (https://picocss.com)
* Copyright 2019-2024 - Licensed under MIT * Copyright 2019-2024 - Licensed under MIT
*/ */
/** /**
@ -628,7 +628,6 @@ nav details.dropdown summary:focus-visible {
text-underline-offset: var(--pico-text-underline-offset); text-underline-offset: var(--pico-text-underline-offset);
text-rendering: optimizeLegibility; text-rendering: optimizeLegibility;
overflow-wrap: break-word; overflow-wrap: break-word;
cursor: default;
-moz-tab-size: 4; -moz-tab-size: 4;
-o-tab-size: 4; -o-tab-size: 4;
tab-size: 4; tab-size: 4;
@ -1857,7 +1856,7 @@ main {
.pico input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=search] { .pico input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=search] {
padding-inline-start: calc(var(--pico-form-element-spacing-horizontal) + 1.75rem); padding-inline-start: calc(var(--pico-form-element-spacing-horizontal) + 1.75rem);
background-image: var(--pico-icon-search); background-image: var(--pico-icon-search);
background-position: center left 1.125rem; background-position: center left calc(var(--pico-form-element-spacing-horizontal) + 0.125rem);
background-size: 1rem auto; background-size: 1rem auto;
background-repeat: no-repeat; background-repeat: no-repeat;
} }
@ -2353,7 +2352,7 @@ main {
.pico dialog article > header > * { .pico dialog article > header > * {
margin-bottom: 0; margin-bottom: 0;
} }
.pico dialog article > header .close, .pico dialog article > header a[rel=prev] { .pico dialog article > header .close, .pico dialog article > header :is(a, button)[rel=prev] {
margin: 0; margin: 0;
margin-left: var(--pico-spacing); margin-left: var(--pico-spacing);
float: right; float: right;
@ -2369,21 +2368,23 @@ main {
.pico dialog article > footer [role=button]:not(:first-of-type) { .pico dialog article > footer [role=button]:not(:first-of-type) {
margin-left: calc(var(--pico-spacing) * 0.5); margin-left: calc(var(--pico-spacing) * 0.5);
} }
.pico dialog article .close, .pico dialog article a[rel=prev] { .pico dialog article .close, .pico dialog article :is(a, button)[rel=prev] {
display: block; display: block;
width: 1rem; width: 1rem;
height: 1rem; height: 1rem;
margin-top: calc(var(--pico-spacing) * -1); margin-top: calc(var(--pico-spacing) * -1);
margin-bottom: var(--pico-spacing); margin-bottom: var(--pico-spacing);
margin-left: auto; margin-left: auto;
border: none;
background-image: var(--pico-icon-close); background-image: var(--pico-icon-close);
background-position: center; background-position: center;
background-size: auto 1rem; background-size: auto 1rem;
background-repeat: no-repeat; background-repeat: no-repeat;
background-color: transparent;
opacity: 0.5; opacity: 0.5;
transition: opacity var(--pico-transition); transition: opacity var(--pico-transition);
} }
.pico dialog article .close:is([aria-current]:not([aria-current=false]), :hover, :active, :focus), .pico dialog article a[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) { .pico dialog article .close:is([aria-current]:not([aria-current=false]), :hover, :active, :focus), .pico dialog article :is(a, button)[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
opacity: 1; opacity: 1;
} }
.pico dialog:not([open]), .pico dialog[open=false] { .pico dialog:not([open]), .pico dialog[open=false] {

View file

@ -1,6 +1,6 @@
@charset "UTF-8"; @charset "UTF-8";
/*! /*!
* Pico CSS v2.0.0 (https://picocss.com) * Pico CSS v2.0.1 (https://picocss.com)
* Copyright 2019-2024 - Licensed under MIT * Copyright 2019-2024 - Licensed under MIT
*/ */
/** /**
@ -628,7 +628,6 @@ nav details.dropdown summary:focus-visible {
text-underline-offset: var(--pico-text-underline-offset); text-underline-offset: var(--pico-text-underline-offset);
text-rendering: optimizeLegibility; text-rendering: optimizeLegibility;
overflow-wrap: break-word; overflow-wrap: break-word;
cursor: default;
-moz-tab-size: 4; -moz-tab-size: 4;
-o-tab-size: 4; -o-tab-size: 4;
tab-size: 4; tab-size: 4;
@ -1857,7 +1856,7 @@ main {
.pico input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=search] { .pico input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=search] {
padding-inline-start: calc(var(--pico-form-element-spacing-horizontal) + 1.75rem); padding-inline-start: calc(var(--pico-form-element-spacing-horizontal) + 1.75rem);
background-image: var(--pico-icon-search); background-image: var(--pico-icon-search);
background-position: center left 1.125rem; background-position: center left calc(var(--pico-form-element-spacing-horizontal) + 0.125rem);
background-size: 1rem auto; background-size: 1rem auto;
background-repeat: no-repeat; background-repeat: no-repeat;
} }
@ -2353,7 +2352,7 @@ main {
.pico dialog article > header > * { .pico dialog article > header > * {
margin-bottom: 0; margin-bottom: 0;
} }
.pico dialog article > header .close, .pico dialog article > header a[rel=prev] { .pico dialog article > header .close, .pico dialog article > header :is(a, button)[rel=prev] {
margin: 0; margin: 0;
margin-left: var(--pico-spacing); margin-left: var(--pico-spacing);
float: right; float: right;
@ -2369,21 +2368,23 @@ main {
.pico dialog article > footer [role=button]:not(:first-of-type) { .pico dialog article > footer [role=button]:not(:first-of-type) {
margin-left: calc(var(--pico-spacing) * 0.5); margin-left: calc(var(--pico-spacing) * 0.5);
} }
.pico dialog article .close, .pico dialog article a[rel=prev] { .pico dialog article .close, .pico dialog article :is(a, button)[rel=prev] {
display: block; display: block;
width: 1rem; width: 1rem;
height: 1rem; height: 1rem;
margin-top: calc(var(--pico-spacing) * -1); margin-top: calc(var(--pico-spacing) * -1);
margin-bottom: var(--pico-spacing); margin-bottom: var(--pico-spacing);
margin-left: auto; margin-left: auto;
border: none;
background-image: var(--pico-icon-close); background-image: var(--pico-icon-close);
background-position: center; background-position: center;
background-size: auto 1rem; background-size: auto 1rem;
background-repeat: no-repeat; background-repeat: no-repeat;
background-color: transparent;
opacity: 0.5; opacity: 0.5;
transition: opacity var(--pico-transition); transition: opacity var(--pico-transition);
} }
.pico dialog article .close:is([aria-current]:not([aria-current=false]), :hover, :active, :focus), .pico dialog article a[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) { .pico dialog article .close:is([aria-current]:not([aria-current=false]), :hover, :active, :focus), .pico dialog article :is(a, button)[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
opacity: 1; opacity: 1;
} }
.pico dialog:not([open]), .pico dialog[open=false] { .pico dialog:not([open]), .pico dialog[open=false] {

File diff suppressed because one or more lines are too long

View file

@ -1,6 +1,6 @@
@charset "UTF-8"; @charset "UTF-8";
/*! /*!
* Pico CSS v2.0.0 (https://picocss.com) * Pico CSS v2.0.1 (https://picocss.com)
* Copyright 2019-2024 - Licensed under MIT * Copyright 2019-2024 - Licensed under MIT
*/ */
/** /**
@ -628,7 +628,6 @@ nav details.dropdown summary:focus-visible {
text-underline-offset: var(--pico-text-underline-offset); text-underline-offset: var(--pico-text-underline-offset);
text-rendering: optimizeLegibility; text-rendering: optimizeLegibility;
overflow-wrap: break-word; overflow-wrap: break-word;
cursor: default;
-moz-tab-size: 4; -moz-tab-size: 4;
-o-tab-size: 4; -o-tab-size: 4;
tab-size: 4; tab-size: 4;
@ -1857,7 +1856,7 @@ main {
.pico input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=search] { .pico input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=search] {
padding-inline-start: calc(var(--pico-form-element-spacing-horizontal) + 1.75rem); padding-inline-start: calc(var(--pico-form-element-spacing-horizontal) + 1.75rem);
background-image: var(--pico-icon-search); background-image: var(--pico-icon-search);
background-position: center left 1.125rem; background-position: center left calc(var(--pico-form-element-spacing-horizontal) + 0.125rem);
background-size: 1rem auto; background-size: 1rem auto;
background-repeat: no-repeat; background-repeat: no-repeat;
} }
@ -2353,7 +2352,7 @@ main {
.pico dialog article > header > * { .pico dialog article > header > * {
margin-bottom: 0; margin-bottom: 0;
} }
.pico dialog article > header .close, .pico dialog article > header a[rel=prev] { .pico dialog article > header .close, .pico dialog article > header :is(a, button)[rel=prev] {
margin: 0; margin: 0;
margin-left: var(--pico-spacing); margin-left: var(--pico-spacing);
float: right; float: right;
@ -2369,21 +2368,23 @@ main {
.pico dialog article > footer [role=button]:not(:first-of-type) { .pico dialog article > footer [role=button]:not(:first-of-type) {
margin-left: calc(var(--pico-spacing) * 0.5); margin-left: calc(var(--pico-spacing) * 0.5);
} }
.pico dialog article .close, .pico dialog article a[rel=prev] { .pico dialog article .close, .pico dialog article :is(a, button)[rel=prev] {
display: block; display: block;
width: 1rem; width: 1rem;
height: 1rem; height: 1rem;
margin-top: calc(var(--pico-spacing) * -1); margin-top: calc(var(--pico-spacing) * -1);
margin-bottom: var(--pico-spacing); margin-bottom: var(--pico-spacing);
margin-left: auto; margin-left: auto;
border: none;
background-image: var(--pico-icon-close); background-image: var(--pico-icon-close);
background-position: center; background-position: center;
background-size: auto 1rem; background-size: auto 1rem;
background-repeat: no-repeat; background-repeat: no-repeat;
background-color: transparent;
opacity: 0.5; opacity: 0.5;
transition: opacity var(--pico-transition); transition: opacity var(--pico-transition);
} }
.pico dialog article .close:is([aria-current]:not([aria-current=false]), :hover, :active, :focus), .pico dialog article a[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) { .pico dialog article .close:is([aria-current]:not([aria-current=false]), :hover, :active, :focus), .pico dialog article :is(a, button)[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
opacity: 1; opacity: 1;
} }
.pico dialog:not([open]), .pico dialog[open=false] { .pico dialog:not([open]), .pico dialog[open=false] {

File diff suppressed because one or more lines are too long

View file

@ -1,6 +1,6 @@
@charset "UTF-8"; @charset "UTF-8";
/*! /*!
* Pico CSS v2.0.0 (https://picocss.com) * Pico CSS v2.0.1 (https://picocss.com)
* Copyright 2019-2024 - Licensed under MIT * Copyright 2019-2024 - Licensed under MIT
*/ */
/** /**
@ -628,7 +628,6 @@ nav details.dropdown summary:focus-visible {
text-underline-offset: var(--pico-text-underline-offset); text-underline-offset: var(--pico-text-underline-offset);
text-rendering: optimizeLegibility; text-rendering: optimizeLegibility;
overflow-wrap: break-word; overflow-wrap: break-word;
cursor: default;
-moz-tab-size: 4; -moz-tab-size: 4;
-o-tab-size: 4; -o-tab-size: 4;
tab-size: 4; tab-size: 4;
@ -1857,7 +1856,7 @@ main {
.pico input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=search] { .pico input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=search] {
padding-inline-start: calc(var(--pico-form-element-spacing-horizontal) + 1.75rem); padding-inline-start: calc(var(--pico-form-element-spacing-horizontal) + 1.75rem);
background-image: var(--pico-icon-search); background-image: var(--pico-icon-search);
background-position: center left 1.125rem; background-position: center left calc(var(--pico-form-element-spacing-horizontal) + 0.125rem);
background-size: 1rem auto; background-size: 1rem auto;
background-repeat: no-repeat; background-repeat: no-repeat;
} }
@ -2353,7 +2352,7 @@ main {
.pico dialog article > header > * { .pico dialog article > header > * {
margin-bottom: 0; margin-bottom: 0;
} }
.pico dialog article > header .close, .pico dialog article > header a[rel=prev] { .pico dialog article > header .close, .pico dialog article > header :is(a, button)[rel=prev] {
margin: 0; margin: 0;
margin-left: var(--pico-spacing); margin-left: var(--pico-spacing);
float: right; float: right;
@ -2369,21 +2368,23 @@ main {
.pico dialog article > footer [role=button]:not(:first-of-type) { .pico dialog article > footer [role=button]:not(:first-of-type) {
margin-left: calc(var(--pico-spacing) * 0.5); margin-left: calc(var(--pico-spacing) * 0.5);
} }
.pico dialog article .close, .pico dialog article a[rel=prev] { .pico dialog article .close, .pico dialog article :is(a, button)[rel=prev] {
display: block; display: block;
width: 1rem; width: 1rem;
height: 1rem; height: 1rem;
margin-top: calc(var(--pico-spacing) * -1); margin-top: calc(var(--pico-spacing) * -1);
margin-bottom: var(--pico-spacing); margin-bottom: var(--pico-spacing);
margin-left: auto; margin-left: auto;
border: none;
background-image: var(--pico-icon-close); background-image: var(--pico-icon-close);
background-position: center; background-position: center;
background-size: auto 1rem; background-size: auto 1rem;
background-repeat: no-repeat; background-repeat: no-repeat;
background-color: transparent;
opacity: 0.5; opacity: 0.5;
transition: opacity var(--pico-transition); transition: opacity var(--pico-transition);
} }
.pico dialog article .close:is([aria-current]:not([aria-current=false]), :hover, :active, :focus), .pico dialog article a[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) { .pico dialog article .close:is([aria-current]:not([aria-current=false]), :hover, :active, :focus), .pico dialog article :is(a, button)[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
opacity: 1; opacity: 1;
} }
.pico dialog:not([open]), .pico dialog[open=false] { .pico dialog:not([open]), .pico dialog[open=false] {

File diff suppressed because one or more lines are too long

View file

@ -1,6 +1,6 @@
@charset "UTF-8"; @charset "UTF-8";
/*! /*!
* Pico CSS v2.0.0 (https://picocss.com) * Pico CSS v2.0.1 (https://picocss.com)
* Copyright 2019-2024 - Licensed under MIT * Copyright 2019-2024 - Licensed under MIT
*/ */
/** /**
@ -628,7 +628,6 @@ nav details.dropdown summary:focus-visible {
text-underline-offset: var(--pico-text-underline-offset); text-underline-offset: var(--pico-text-underline-offset);
text-rendering: optimizeLegibility; text-rendering: optimizeLegibility;
overflow-wrap: break-word; overflow-wrap: break-word;
cursor: default;
-moz-tab-size: 4; -moz-tab-size: 4;
-o-tab-size: 4; -o-tab-size: 4;
tab-size: 4; tab-size: 4;
@ -1857,7 +1856,7 @@ main {
.pico input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=search] { .pico input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=search] {
padding-inline-start: calc(var(--pico-form-element-spacing-horizontal) + 1.75rem); padding-inline-start: calc(var(--pico-form-element-spacing-horizontal) + 1.75rem);
background-image: var(--pico-icon-search); background-image: var(--pico-icon-search);
background-position: center left 1.125rem; background-position: center left calc(var(--pico-form-element-spacing-horizontal) + 0.125rem);
background-size: 1rem auto; background-size: 1rem auto;
background-repeat: no-repeat; background-repeat: no-repeat;
} }
@ -2353,7 +2352,7 @@ main {
.pico dialog article > header > * { .pico dialog article > header > * {
margin-bottom: 0; margin-bottom: 0;
} }
.pico dialog article > header .close, .pico dialog article > header a[rel=prev] { .pico dialog article > header .close, .pico dialog article > header :is(a, button)[rel=prev] {
margin: 0; margin: 0;
margin-left: var(--pico-spacing); margin-left: var(--pico-spacing);
float: right; float: right;
@ -2369,21 +2368,23 @@ main {
.pico dialog article > footer [role=button]:not(:first-of-type) { .pico dialog article > footer [role=button]:not(:first-of-type) {
margin-left: calc(var(--pico-spacing) * 0.5); margin-left: calc(var(--pico-spacing) * 0.5);
} }
.pico dialog article .close, .pico dialog article a[rel=prev] { .pico dialog article .close, .pico dialog article :is(a, button)[rel=prev] {
display: block; display: block;
width: 1rem; width: 1rem;
height: 1rem; height: 1rem;
margin-top: calc(var(--pico-spacing) * -1); margin-top: calc(var(--pico-spacing) * -1);
margin-bottom: var(--pico-spacing); margin-bottom: var(--pico-spacing);
margin-left: auto; margin-left: auto;
border: none;
background-image: var(--pico-icon-close); background-image: var(--pico-icon-close);
background-position: center; background-position: center;
background-size: auto 1rem; background-size: auto 1rem;
background-repeat: no-repeat; background-repeat: no-repeat;
background-color: transparent;
opacity: 0.5; opacity: 0.5;
transition: opacity var(--pico-transition); transition: opacity var(--pico-transition);
} }
.pico dialog article .close:is([aria-current]:not([aria-current=false]), :hover, :active, :focus), .pico dialog article a[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) { .pico dialog article .close:is([aria-current]:not([aria-current=false]), :hover, :active, :focus), .pico dialog article :is(a, button)[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
opacity: 1; opacity: 1;
} }
.pico dialog:not([open]), .pico dialog[open=false] { .pico dialog:not([open]), .pico dialog[open=false] {

File diff suppressed because one or more lines are too long

View file

@ -1,6 +1,6 @@
@charset "UTF-8"; @charset "UTF-8";
/*! /*!
* Pico CSS v2.0.0 (https://picocss.com) * Pico CSS v2.0.1 (https://picocss.com)
* Copyright 2019-2024 - Licensed under MIT * Copyright 2019-2024 - Licensed under MIT
*/ */
/** /**
@ -628,7 +628,6 @@ nav details.dropdown summary:focus-visible {
text-underline-offset: var(--pico-text-underline-offset); text-underline-offset: var(--pico-text-underline-offset);
text-rendering: optimizeLegibility; text-rendering: optimizeLegibility;
overflow-wrap: break-word; overflow-wrap: break-word;
cursor: default;
-moz-tab-size: 4; -moz-tab-size: 4;
-o-tab-size: 4; -o-tab-size: 4;
tab-size: 4; tab-size: 4;
@ -1857,7 +1856,7 @@ main {
.pico input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=search] { .pico input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=search] {
padding-inline-start: calc(var(--pico-form-element-spacing-horizontal) + 1.75rem); padding-inline-start: calc(var(--pico-form-element-spacing-horizontal) + 1.75rem);
background-image: var(--pico-icon-search); background-image: var(--pico-icon-search);
background-position: center left 1.125rem; background-position: center left calc(var(--pico-form-element-spacing-horizontal) + 0.125rem);
background-size: 1rem auto; background-size: 1rem auto;
background-repeat: no-repeat; background-repeat: no-repeat;
} }
@ -2353,7 +2352,7 @@ main {
.pico dialog article > header > * { .pico dialog article > header > * {
margin-bottom: 0; margin-bottom: 0;
} }
.pico dialog article > header .close, .pico dialog article > header a[rel=prev] { .pico dialog article > header .close, .pico dialog article > header :is(a, button)[rel=prev] {
margin: 0; margin: 0;
margin-left: var(--pico-spacing); margin-left: var(--pico-spacing);
float: right; float: right;
@ -2369,21 +2368,23 @@ main {
.pico dialog article > footer [role=button]:not(:first-of-type) { .pico dialog article > footer [role=button]:not(:first-of-type) {
margin-left: calc(var(--pico-spacing) * 0.5); margin-left: calc(var(--pico-spacing) * 0.5);
} }
.pico dialog article .close, .pico dialog article a[rel=prev] { .pico dialog article .close, .pico dialog article :is(a, button)[rel=prev] {
display: block; display: block;
width: 1rem; width: 1rem;
height: 1rem; height: 1rem;
margin-top: calc(var(--pico-spacing) * -1); margin-top: calc(var(--pico-spacing) * -1);
margin-bottom: var(--pico-spacing); margin-bottom: var(--pico-spacing);
margin-left: auto; margin-left: auto;
border: none;
background-image: var(--pico-icon-close); background-image: var(--pico-icon-close);
background-position: center; background-position: center;
background-size: auto 1rem; background-size: auto 1rem;
background-repeat: no-repeat; background-repeat: no-repeat;
background-color: transparent;
opacity: 0.5; opacity: 0.5;
transition: opacity var(--pico-transition); transition: opacity var(--pico-transition);
} }
.pico dialog article .close:is([aria-current]:not([aria-current=false]), :hover, :active, :focus), .pico dialog article a[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) { .pico dialog article .close:is([aria-current]:not([aria-current=false]), :hover, :active, :focus), .pico dialog article :is(a, button)[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
opacity: 1; opacity: 1;
} }
.pico dialog:not([open]), .pico dialog[open=false] { .pico dialog:not([open]), .pico dialog[open=false] {

File diff suppressed because one or more lines are too long

View file

@ -1,6 +1,6 @@
@charset "UTF-8"; @charset "UTF-8";
/*! /*!
* Pico CSS v2.0.0 (https://picocss.com) * Pico CSS v2.0.1 (https://picocss.com)
* Copyright 2019-2024 - Licensed under MIT * Copyright 2019-2024 - Licensed under MIT
*/ */
/** /**
@ -628,7 +628,6 @@ nav details.dropdown summary:focus-visible {
text-underline-offset: var(--pico-text-underline-offset); text-underline-offset: var(--pico-text-underline-offset);
text-rendering: optimizeLegibility; text-rendering: optimizeLegibility;
overflow-wrap: break-word; overflow-wrap: break-word;
cursor: default;
-moz-tab-size: 4; -moz-tab-size: 4;
-o-tab-size: 4; -o-tab-size: 4;
tab-size: 4; tab-size: 4;
@ -1857,7 +1856,7 @@ main {
.pico input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=search] { .pico input:not([type=checkbox], [type=radio], [type=range], [type=file])[type=search] {
padding-inline-start: calc(var(--pico-form-element-spacing-horizontal) + 1.75rem); padding-inline-start: calc(var(--pico-form-element-spacing-horizontal) + 1.75rem);
background-image: var(--pico-icon-search); background-image: var(--pico-icon-search);
background-position: center left 1.125rem; background-position: center left calc(var(--pico-form-element-spacing-horizontal) + 0.125rem);
background-size: 1rem auto; background-size: 1rem auto;
background-repeat: no-repeat; background-repeat: no-repeat;
} }
@ -2353,7 +2352,7 @@ main {
.pico dialog article > header > * { .pico dialog article > header > * {
margin-bottom: 0; margin-bottom: 0;
} }
.pico dialog article > header .close, .pico dialog article > header a[rel=prev] { .pico dialog article > header .close, .pico dialog article > header :is(a, button)[rel=prev] {
margin: 0; margin: 0;
margin-left: var(--pico-spacing); margin-left: var(--pico-spacing);
float: right; float: right;
@ -2369,21 +2368,23 @@ main {
.pico dialog article > footer [role=button]:not(:first-of-type) { .pico dialog article > footer [role=button]:not(:first-of-type) {
margin-left: calc(var(--pico-spacing) * 0.5); margin-left: calc(var(--pico-spacing) * 0.5);
} }
.pico dialog article .close, .pico dialog article a[rel=prev] { .pico dialog article .close, .pico dialog article :is(a, button)[rel=prev] {
display: block; display: block;
width: 1rem; width: 1rem;
height: 1rem; height: 1rem;
margin-top: calc(var(--pico-spacing) * -1); margin-top: calc(var(--pico-spacing) * -1);
margin-bottom: var(--pico-spacing); margin-bottom: var(--pico-spacing);
margin-left: auto; margin-left: auto;
border: none;
background-image: var(--pico-icon-close); background-image: var(--pico-icon-close);
background-position: center; background-position: center;
background-size: auto 1rem; background-size: auto 1rem;
background-repeat: no-repeat; background-repeat: no-repeat;
background-color: transparent;
opacity: 0.5; opacity: 0.5;
transition: opacity var(--pico-transition); transition: opacity var(--pico-transition);
} }
.pico dialog article .close:is([aria-current]:not([aria-current=false]), :hover, :active, :focus), .pico dialog article a[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) { .pico dialog article .close:is([aria-current]:not([aria-current=false]), :hover, :active, :focus), .pico dialog article :is(a, button)[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
opacity: 1; opacity: 1;
} }
.pico dialog:not([open]), .pico dialog[open=false] { .pico dialog:not([open]), .pico dialog[open=false] {

Some files were not shown because too many files have changed in this diff Show more