Merge pull request #478 from picocss/dev

v2.0.4
This commit is contained in:
Lucas Larroche 2024-03-03 12:14:06 +07:00 committed by GitHub
commit d610bd3b07
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
246 changed files with 1164 additions and 639 deletions

View file

@ -25,8 +25,8 @@ Pico v2.0 features better accessibility, easier customization with SASS, a compl
[Read more](https://picocss.com/docs/v2) [Read more](https://picocss.com/docs/v2)
## A Superpowered HTML Reset ## A Superpowered HTML Reset
With just the right amount of everything, Pico is great starting point for a clean and lightweight design system. With just the right amount of everything, Pico is great starting point for a clean and lightweight design system.
- Class-light and Semantic - Class-light and Semantic

View file

@ -1,6 +1,6 @@
@charset "UTF-8"; @charset "UTF-8";
/*! /*!
* Pico CSS v2.0.3 (https://picocss.com) * Pico CSS v2.0.4 (https://picocss.com)
* Copyright 2019-2024 - Licensed under MIT * Copyright 2019-2024 - Licensed under MIT
*/ */
/** /**
@ -708,6 +708,16 @@ section {
display: grid; display: grid;
grid-template-columns: 1fr; grid-template-columns: 1fr;
} }
@media (max-width: calc(768px - 1px)) {
.grid input:not([type=checkbox], [type=radio]),
.grid select,
.grid textarea,
.grid fieldset,
.grid fieldset legend,
.grid label {
margin-bottom: 0;
}
}
@media (min-width: 768px) { @media (min-width: 768px) {
.grid { .grid {
grid-template-columns: repeat(auto-fit, minmax(0%, 1fr)); grid-template-columns: repeat(auto-fit, minmax(0%, 1fr));
@ -1511,6 +1521,7 @@ select:not([multiple], [size]) {
} }
select[multiple] option:checked { select[multiple] option:checked {
background: var(--pico-form-element-selected-background-color); background: var(--pico-form-element-selected-background-color);
color: var(--pico-form-element-color);
} }
[dir=rtl] select:not([multiple], [size]) { [dir=rtl] select:not([multiple], [size]) {
@ -1644,7 +1655,7 @@ label:has([type=checkbox], [type=radio]) {
background-image: none; background-image: none;
} }
[type=checkbox][role=switch]:checked::before { [type=checkbox][role=switch]:checked::before {
margin-inline-start: calc(1.125em - var(--pico-border-width)); margin-inline-start: calc(2.25em - 1.25em / 2 - var(--pico-border-width) * 3);
} }
[type=checkbox][role=switch][disabled] { [type=checkbox][role=switch][disabled] {
--pico-background-color: var(--pico-border-color); --pico-background-color: var(--pico-border-color);
@ -2284,7 +2295,7 @@ label > details.dropdown {
width: 1em; width: 1em;
height: 1em; height: 1em;
background-image: var(--pico-icon-loading); background-image: var(--pico-icon-loading);
background-size: 1rem auto; background-size: 1em auto;
background-repeat: no-repeat; background-repeat: no-repeat;
content: ""; content: "";
vertical-align: -0.125em; vertical-align: -0.125em;

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.3 (https://picocss.com) * Pico CSS v2.0.4 (https://picocss.com)
* Copyright 2019-2024 - Licensed under MIT * Copyright 2019-2024 - Licensed under MIT
*/ */
/** /**
@ -708,6 +708,16 @@ section {
display: grid; display: grid;
grid-template-columns: 1fr; grid-template-columns: 1fr;
} }
@media (max-width: calc(768px - 1px)) {
.grid input:not([type=checkbox], [type=radio]),
.grid select,
.grid textarea,
.grid fieldset,
.grid fieldset legend,
.grid label {
margin-bottom: 0;
}
}
@media (min-width: 768px) { @media (min-width: 768px) {
.grid { .grid {
grid-template-columns: repeat(auto-fit, minmax(0%, 1fr)); grid-template-columns: repeat(auto-fit, minmax(0%, 1fr));
@ -1511,6 +1521,7 @@ select:not([multiple], [size]) {
} }
select[multiple] option:checked { select[multiple] option:checked {
background: var(--pico-form-element-selected-background-color); background: var(--pico-form-element-selected-background-color);
color: var(--pico-form-element-color);
} }
[dir=rtl] select:not([multiple], [size]) { [dir=rtl] select:not([multiple], [size]) {
@ -1644,7 +1655,7 @@ label:has([type=checkbox], [type=radio]) {
background-image: none; background-image: none;
} }
[type=checkbox][role=switch]:checked::before { [type=checkbox][role=switch]:checked::before {
margin-inline-start: calc(1.125em - var(--pico-border-width)); margin-inline-start: calc(2.25em - 1.25em / 2 - var(--pico-border-width) * 3);
} }
[type=checkbox][role=switch][disabled] { [type=checkbox][role=switch][disabled] {
--pico-background-color: var(--pico-border-color); --pico-background-color: var(--pico-border-color);
@ -2284,7 +2295,7 @@ label > details.dropdown {
width: 1em; width: 1em;
height: 1em; height: 1em;
background-image: var(--pico-icon-loading); background-image: var(--pico-icon-loading);
background-size: 1rem auto; background-size: 1em auto;
background-repeat: no-repeat; background-repeat: no-repeat;
content: ""; content: "";
vertical-align: -0.125em; vertical-align: -0.125em;

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.3 (https://picocss.com) * Pico CSS v2.0.4 (https://picocss.com)
* Copyright 2019-2024 - Licensed under MIT * Copyright 2019-2024 - Licensed under MIT
*/ */
/** /**
@ -1345,6 +1345,7 @@ select:not([multiple], [size]) {
} }
select[multiple] option:checked { select[multiple] option:checked {
background: var(--pico-form-element-selected-background-color); background: var(--pico-form-element-selected-background-color);
color: var(--pico-form-element-color);
} }
[dir=rtl] select:not([multiple], [size]) { [dir=rtl] select:not([multiple], [size]) {
@ -1478,7 +1479,7 @@ label:has([type=checkbox], [type=radio]) {
background-image: none; background-image: none;
} }
[type=checkbox][role=switch]:checked::before { [type=checkbox][role=switch]:checked::before {
margin-inline-start: calc(1.125em - var(--pico-border-width)); margin-inline-start: calc(2.25em - 1.25em / 2 - var(--pico-border-width) * 3);
} }
[type=checkbox][role=switch][disabled] { [type=checkbox][role=switch][disabled] {
--pico-background-color: var(--pico-border-color); --pico-background-color: var(--pico-border-color);
@ -1958,7 +1959,7 @@ article > footer {
width: 1em; width: 1em;
height: 1em; height: 1em;
background-image: var(--pico-icon-loading); background-image: var(--pico-icon-loading);
background-size: 1rem auto; background-size: 1em auto;
background-repeat: no-repeat; background-repeat: no-repeat;
content: ""; content: "";
vertical-align: -0.125em; vertical-align: -0.125em;

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.3 (https://picocss.com) * Pico CSS v2.0.4 (https://picocss.com)
* Copyright 2019-2024 - Licensed under MIT * Copyright 2019-2024 - Licensed under MIT
*/ */
/** /**
@ -1345,6 +1345,7 @@ select:not([multiple], [size]) {
} }
select[multiple] option:checked { select[multiple] option:checked {
background: var(--pico-form-element-selected-background-color); background: var(--pico-form-element-selected-background-color);
color: var(--pico-form-element-color);
} }
[dir=rtl] select:not([multiple], [size]) { [dir=rtl] select:not([multiple], [size]) {
@ -1478,7 +1479,7 @@ label:has([type=checkbox], [type=radio]) {
background-image: none; background-image: none;
} }
[type=checkbox][role=switch]:checked::before { [type=checkbox][role=switch]:checked::before {
margin-inline-start: calc(1.125em - var(--pico-border-width)); margin-inline-start: calc(2.25em - 1.25em / 2 - var(--pico-border-width) * 3);
} }
[type=checkbox][role=switch][disabled] { [type=checkbox][role=switch][disabled] {
--pico-background-color: var(--pico-border-color); --pico-background-color: var(--pico-border-color);
@ -1958,7 +1959,7 @@ article > footer {
width: 1em; width: 1em;
height: 1em; height: 1em;
background-image: var(--pico-icon-loading); background-image: var(--pico-icon-loading);
background-size: 1rem auto; background-size: 1em auto;
background-repeat: no-repeat; background-repeat: no-repeat;
content: ""; content: "";
vertical-align: -0.125em; vertical-align: -0.125em;

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.3 (https://picocss.com) * Pico CSS v2.0.4 (https://picocss.com)
* Copyright 2019-2024 - Licensed under MIT * Copyright 2019-2024 - Licensed under MIT
*/ */
/** /**
@ -1345,6 +1345,7 @@ main {
} }
.pico select[multiple] option:checked { .pico select[multiple] option:checked {
background: var(--pico-form-element-selected-background-color); background: var(--pico-form-element-selected-background-color);
color: var(--pico-form-element-color);
} }
[dir=rtl] .pico select:not([multiple], [size]) { [dir=rtl] .pico select:not([multiple], [size]) {
@ -1478,7 +1479,7 @@ main {
background-image: none; background-image: none;
} }
.pico [type=checkbox][role=switch]:checked::before { .pico [type=checkbox][role=switch]:checked::before {
margin-inline-start: calc(1.125em - var(--pico-border-width)); margin-inline-start: calc(2.25em - 1.25em / 2 - var(--pico-border-width) * 3);
} }
.pico [type=checkbox][role=switch][disabled] { .pico [type=checkbox][role=switch][disabled] {
--pico-background-color: var(--pico-border-color); --pico-background-color: var(--pico-border-color);
@ -1958,7 +1959,7 @@ main {
width: 1em; width: 1em;
height: 1em; height: 1em;
background-image: var(--pico-icon-loading); background-image: var(--pico-icon-loading);
background-size: 1rem auto; background-size: 1em auto;
background-repeat: no-repeat; background-repeat: no-repeat;
content: ""; content: "";
vertical-align: -0.125em; vertical-align: -0.125em;

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.3 (https://picocss.com) * Pico CSS v2.0.4 (https://picocss.com)
* Copyright 2019-2024 - Licensed under MIT * Copyright 2019-2024 - Licensed under MIT
*/ */
/** /**
@ -1345,6 +1345,7 @@ main {
} }
.pico select[multiple] option:checked { .pico select[multiple] option:checked {
background: var(--pico-form-element-selected-background-color); background: var(--pico-form-element-selected-background-color);
color: var(--pico-form-element-color);
} }
[dir=rtl] .pico select:not([multiple], [size]) { [dir=rtl] .pico select:not([multiple], [size]) {
@ -1478,7 +1479,7 @@ main {
background-image: none; background-image: none;
} }
.pico [type=checkbox][role=switch]:checked::before { .pico [type=checkbox][role=switch]:checked::before {
margin-inline-start: calc(1.125em - var(--pico-border-width)); margin-inline-start: calc(2.25em - 1.25em / 2 - var(--pico-border-width) * 3);
} }
.pico [type=checkbox][role=switch][disabled] { .pico [type=checkbox][role=switch][disabled] {
--pico-background-color: var(--pico-border-color); --pico-background-color: var(--pico-border-color);
@ -1958,7 +1959,7 @@ main {
width: 1em; width: 1em;
height: 1em; height: 1em;
background-image: var(--pico-icon-loading); background-image: var(--pico-icon-loading);
background-size: 1rem auto; background-size: 1em auto;
background-repeat: no-repeat; background-repeat: no-repeat;
content: ""; content: "";
vertical-align: -0.125em; vertical-align: -0.125em;

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.3 (https://picocss.com) * Pico CSS v2.0.4 (https://picocss.com)
* Copyright 2019-2024 - Licensed under MIT * Copyright 2019-2024 - Licensed under MIT
*/ */
/** /**
@ -1345,6 +1345,7 @@ main {
} }
.pico select[multiple] option:checked { .pico select[multiple] option:checked {
background: var(--pico-form-element-selected-background-color); background: var(--pico-form-element-selected-background-color);
color: var(--pico-form-element-color);
} }
[dir=rtl] .pico select:not([multiple], [size]) { [dir=rtl] .pico select:not([multiple], [size]) {
@ -1478,7 +1479,7 @@ main {
background-image: none; background-image: none;
} }
.pico [type=checkbox][role=switch]:checked::before { .pico [type=checkbox][role=switch]:checked::before {
margin-inline-start: calc(1.125em - var(--pico-border-width)); margin-inline-start: calc(2.25em - 1.25em / 2 - var(--pico-border-width) * 3);
} }
.pico [type=checkbox][role=switch][disabled] { .pico [type=checkbox][role=switch][disabled] {
--pico-background-color: var(--pico-border-color); --pico-background-color: var(--pico-border-color);
@ -1958,7 +1959,7 @@ main {
width: 1em; width: 1em;
height: 1em; height: 1em;
background-image: var(--pico-icon-loading); background-image: var(--pico-icon-loading);
background-size: 1rem auto; background-size: 1em auto;
background-repeat: no-repeat; background-repeat: no-repeat;
content: ""; content: "";
vertical-align: -0.125em; vertical-align: -0.125em;

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.3 (https://picocss.com) * Pico CSS v2.0.4 (https://picocss.com)
* Copyright 2019-2024 - Licensed under MIT * Copyright 2019-2024 - Licensed under MIT
*/ */
/** /**
@ -1345,6 +1345,7 @@ main {
} }
.pico select[multiple] option:checked { .pico select[multiple] option:checked {
background: var(--pico-form-element-selected-background-color); background: var(--pico-form-element-selected-background-color);
color: var(--pico-form-element-color);
} }
[dir=rtl] .pico select:not([multiple], [size]) { [dir=rtl] .pico select:not([multiple], [size]) {
@ -1478,7 +1479,7 @@ main {
background-image: none; background-image: none;
} }
.pico [type=checkbox][role=switch]:checked::before { .pico [type=checkbox][role=switch]:checked::before {
margin-inline-start: calc(1.125em - var(--pico-border-width)); margin-inline-start: calc(2.25em - 1.25em / 2 - var(--pico-border-width) * 3);
} }
.pico [type=checkbox][role=switch][disabled] { .pico [type=checkbox][role=switch][disabled] {
--pico-background-color: var(--pico-border-color); --pico-background-color: var(--pico-border-color);
@ -1958,7 +1959,7 @@ main {
width: 1em; width: 1em;
height: 1em; height: 1em;
background-image: var(--pico-icon-loading); background-image: var(--pico-icon-loading);
background-size: 1rem auto; background-size: 1em auto;
background-repeat: no-repeat; background-repeat: no-repeat;
content: ""; content: "";
vertical-align: -0.125em; vertical-align: -0.125em;

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.3 (https://picocss.com) * Pico CSS v2.0.4 (https://picocss.com)
* Copyright 2019-2024 - Licensed under MIT * Copyright 2019-2024 - Licensed under MIT
*/ */
/** /**
@ -1345,6 +1345,7 @@ main {
} }
.pico select[multiple] option:checked { .pico select[multiple] option:checked {
background: var(--pico-form-element-selected-background-color); background: var(--pico-form-element-selected-background-color);
color: var(--pico-form-element-color);
} }
[dir=rtl] .pico select:not([multiple], [size]) { [dir=rtl] .pico select:not([multiple], [size]) {
@ -1478,7 +1479,7 @@ main {
background-image: none; background-image: none;
} }
.pico [type=checkbox][role=switch]:checked::before { .pico [type=checkbox][role=switch]:checked::before {
margin-inline-start: calc(1.125em - var(--pico-border-width)); margin-inline-start: calc(2.25em - 1.25em / 2 - var(--pico-border-width) * 3);
} }
.pico [type=checkbox][role=switch][disabled] { .pico [type=checkbox][role=switch][disabled] {
--pico-background-color: var(--pico-border-color); --pico-background-color: var(--pico-border-color);
@ -1958,7 +1959,7 @@ main {
width: 1em; width: 1em;
height: 1em; height: 1em;
background-image: var(--pico-icon-loading); background-image: var(--pico-icon-loading);
background-size: 1rem auto; background-size: 1em auto;
background-repeat: no-repeat; background-repeat: no-repeat;
content: ""; content: "";
vertical-align: -0.125em; vertical-align: -0.125em;

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.3 (https://picocss.com) * Pico CSS v2.0.4 (https://picocss.com)
* Copyright 2019-2024 - Licensed under MIT * Copyright 2019-2024 - Licensed under MIT
*/ */
/** /**
@ -1345,6 +1345,7 @@ main {
} }
.pico select[multiple] option:checked { .pico select[multiple] option:checked {
background: var(--pico-form-element-selected-background-color); background: var(--pico-form-element-selected-background-color);
color: var(--pico-form-element-color);
} }
[dir=rtl] .pico select:not([multiple], [size]) { [dir=rtl] .pico select:not([multiple], [size]) {
@ -1478,7 +1479,7 @@ main {
background-image: none; background-image: none;
} }
.pico [type=checkbox][role=switch]:checked::before { .pico [type=checkbox][role=switch]:checked::before {
margin-inline-start: calc(1.125em - var(--pico-border-width)); margin-inline-start: calc(2.25em - 1.25em / 2 - var(--pico-border-width) * 3);
} }
.pico [type=checkbox][role=switch][disabled] { .pico [type=checkbox][role=switch][disabled] {
--pico-background-color: var(--pico-border-color); --pico-background-color: var(--pico-border-color);
@ -1958,7 +1959,7 @@ main {
width: 1em; width: 1em;
height: 1em; height: 1em;
background-image: var(--pico-icon-loading); background-image: var(--pico-icon-loading);
background-size: 1rem auto; background-size: 1em auto;
background-repeat: no-repeat; background-repeat: no-repeat;
content: ""; content: "";
vertical-align: -0.125em; vertical-align: -0.125em;

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.3 (https://picocss.com) * Pico CSS v2.0.4 (https://picocss.com)
* Copyright 2019-2024 - Licensed under MIT * Copyright 2019-2024 - Licensed under MIT
*/ */
/** /**
@ -1345,6 +1345,7 @@ main {
} }
.pico select[multiple] option:checked { .pico select[multiple] option:checked {
background: var(--pico-form-element-selected-background-color); background: var(--pico-form-element-selected-background-color);
color: var(--pico-form-element-color);
} }
[dir=rtl] .pico select:not([multiple], [size]) { [dir=rtl] .pico select:not([multiple], [size]) {
@ -1478,7 +1479,7 @@ main {
background-image: none; background-image: none;
} }
.pico [type=checkbox][role=switch]:checked::before { .pico [type=checkbox][role=switch]:checked::before {
margin-inline-start: calc(1.125em - var(--pico-border-width)); margin-inline-start: calc(2.25em - 1.25em / 2 - var(--pico-border-width) * 3);
} }
.pico [type=checkbox][role=switch][disabled] { .pico [type=checkbox][role=switch][disabled] {
--pico-background-color: var(--pico-border-color); --pico-background-color: var(--pico-border-color);
@ -1958,7 +1959,7 @@ main {
width: 1em; width: 1em;
height: 1em; height: 1em;
background-image: var(--pico-icon-loading); background-image: var(--pico-icon-loading);
background-size: 1rem auto; background-size: 1em auto;
background-repeat: no-repeat; background-repeat: no-repeat;
content: ""; content: "";
vertical-align: -0.125em; vertical-align: -0.125em;

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.3 (https://picocss.com) * Pico CSS v2.0.4 (https://picocss.com)
* Copyright 2019-2024 - Licensed under MIT * Copyright 2019-2024 - Licensed under MIT
*/ */
/** /**
@ -1345,6 +1345,7 @@ main {
} }
.pico select[multiple] option:checked { .pico select[multiple] option:checked {
background: var(--pico-form-element-selected-background-color); background: var(--pico-form-element-selected-background-color);
color: var(--pico-form-element-color);
} }
[dir=rtl] .pico select:not([multiple], [size]) { [dir=rtl] .pico select:not([multiple], [size]) {
@ -1478,7 +1479,7 @@ main {
background-image: none; background-image: none;
} }
.pico [type=checkbox][role=switch]:checked::before { .pico [type=checkbox][role=switch]:checked::before {
margin-inline-start: calc(1.125em - var(--pico-border-width)); margin-inline-start: calc(2.25em - 1.25em / 2 - var(--pico-border-width) * 3);
} }
.pico [type=checkbox][role=switch][disabled] { .pico [type=checkbox][role=switch][disabled] {
--pico-background-color: var(--pico-border-color); --pico-background-color: var(--pico-border-color);
@ -1958,7 +1959,7 @@ main {
width: 1em; width: 1em;
height: 1em; height: 1em;
background-image: var(--pico-icon-loading); background-image: var(--pico-icon-loading);
background-size: 1rem auto; background-size: 1em auto;
background-repeat: no-repeat; background-repeat: no-repeat;
content: ""; content: "";
vertical-align: -0.125em; vertical-align: -0.125em;

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.3 (https://picocss.com) * Pico CSS v2.0.4 (https://picocss.com)
* Copyright 2019-2024 - Licensed under MIT * Copyright 2019-2024 - Licensed under MIT
*/ */
/** /**
@ -1345,6 +1345,7 @@ main {
} }
.pico select[multiple] option:checked { .pico select[multiple] option:checked {
background: var(--pico-form-element-selected-background-color); background: var(--pico-form-element-selected-background-color);
color: var(--pico-form-element-color);
} }
[dir=rtl] .pico select:not([multiple], [size]) { [dir=rtl] .pico select:not([multiple], [size]) {
@ -1478,7 +1479,7 @@ main {
background-image: none; background-image: none;
} }
.pico [type=checkbox][role=switch]:checked::before { .pico [type=checkbox][role=switch]:checked::before {
margin-inline-start: calc(1.125em - var(--pico-border-width)); margin-inline-start: calc(2.25em - 1.25em / 2 - var(--pico-border-width) * 3);
} }
.pico [type=checkbox][role=switch][disabled] { .pico [type=checkbox][role=switch][disabled] {
--pico-background-color: var(--pico-border-color); --pico-background-color: var(--pico-border-color);
@ -1958,7 +1959,7 @@ main {
width: 1em; width: 1em;
height: 1em; height: 1em;
background-image: var(--pico-icon-loading); background-image: var(--pico-icon-loading);
background-size: 1rem auto; background-size: 1em auto;
background-repeat: no-repeat; background-repeat: no-repeat;
content: ""; content: "";
vertical-align: -0.125em; vertical-align: -0.125em;

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.3 (https://picocss.com) * Pico CSS v2.0.4 (https://picocss.com)
* Copyright 2019-2024 - Licensed under MIT * Copyright 2019-2024 - Licensed under MIT
*/ */
/** /**
@ -1345,6 +1345,7 @@ main {
} }
.pico select[multiple] option:checked { .pico select[multiple] option:checked {
background: var(--pico-form-element-selected-background-color); background: var(--pico-form-element-selected-background-color);
color: var(--pico-form-element-color);
} }
[dir=rtl] .pico select:not([multiple], [size]) { [dir=rtl] .pico select:not([multiple], [size]) {
@ -1478,7 +1479,7 @@ main {
background-image: none; background-image: none;
} }
.pico [type=checkbox][role=switch]:checked::before { .pico [type=checkbox][role=switch]:checked::before {
margin-inline-start: calc(1.125em - var(--pico-border-width)); margin-inline-start: calc(2.25em - 1.25em / 2 - var(--pico-border-width) * 3);
} }
.pico [type=checkbox][role=switch][disabled] { .pico [type=checkbox][role=switch][disabled] {
--pico-background-color: var(--pico-border-color); --pico-background-color: var(--pico-border-color);
@ -1958,7 +1959,7 @@ main {
width: 1em; width: 1em;
height: 1em; height: 1em;
background-image: var(--pico-icon-loading); background-image: var(--pico-icon-loading);
background-size: 1rem auto; background-size: 1em auto;
background-repeat: no-repeat; background-repeat: no-repeat;
content: ""; content: "";
vertical-align: -0.125em; vertical-align: -0.125em;

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.3 (https://picocss.com) * Pico CSS v2.0.4 (https://picocss.com)
* Copyright 2019-2024 - Licensed under MIT * Copyright 2019-2024 - Licensed under MIT
*/ */
/** /**
@ -1345,6 +1345,7 @@ main {
} }
.pico select[multiple] option:checked { .pico select[multiple] option:checked {
background: var(--pico-form-element-selected-background-color); background: var(--pico-form-element-selected-background-color);
color: var(--pico-form-element-color);
} }
[dir=rtl] .pico select:not([multiple], [size]) { [dir=rtl] .pico select:not([multiple], [size]) {
@ -1478,7 +1479,7 @@ main {
background-image: none; background-image: none;
} }
.pico [type=checkbox][role=switch]:checked::before { .pico [type=checkbox][role=switch]:checked::before {
margin-inline-start: calc(1.125em - var(--pico-border-width)); margin-inline-start: calc(2.25em - 1.25em / 2 - var(--pico-border-width) * 3);
} }
.pico [type=checkbox][role=switch][disabled] { .pico [type=checkbox][role=switch][disabled] {
--pico-background-color: var(--pico-border-color); --pico-background-color: var(--pico-border-color);
@ -1958,7 +1959,7 @@ main {
width: 1em; width: 1em;
height: 1em; height: 1em;
background-image: var(--pico-icon-loading); background-image: var(--pico-icon-loading);
background-size: 1rem auto; background-size: 1em auto;
background-repeat: no-repeat; background-repeat: no-repeat;
content: ""; content: "";
vertical-align: -0.125em; vertical-align: -0.125em;

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.3 (https://picocss.com) * Pico CSS v2.0.4 (https://picocss.com)
* Copyright 2019-2024 - Licensed under MIT * Copyright 2019-2024 - Licensed under MIT
*/ */
/** /**
@ -1345,6 +1345,7 @@ main {
} }
.pico select[multiple] option:checked { .pico select[multiple] option:checked {
background: var(--pico-form-element-selected-background-color); background: var(--pico-form-element-selected-background-color);
color: var(--pico-form-element-color);
} }
[dir=rtl] .pico select:not([multiple], [size]) { [dir=rtl] .pico select:not([multiple], [size]) {
@ -1478,7 +1479,7 @@ main {
background-image: none; background-image: none;
} }
.pico [type=checkbox][role=switch]:checked::before { .pico [type=checkbox][role=switch]:checked::before {
margin-inline-start: calc(1.125em - var(--pico-border-width)); margin-inline-start: calc(2.25em - 1.25em / 2 - var(--pico-border-width) * 3);
} }
.pico [type=checkbox][role=switch][disabled] { .pico [type=checkbox][role=switch][disabled] {
--pico-background-color: var(--pico-border-color); --pico-background-color: var(--pico-border-color);
@ -1958,7 +1959,7 @@ main {
width: 1em; width: 1em;
height: 1em; height: 1em;
background-image: var(--pico-icon-loading); background-image: var(--pico-icon-loading);
background-size: 1rem auto; background-size: 1em auto;
background-repeat: no-repeat; background-repeat: no-repeat;
content: ""; content: "";
vertical-align: -0.125em; vertical-align: -0.125em;

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.3 (https://picocss.com) * Pico CSS v2.0.4 (https://picocss.com)
* Copyright 2019-2024 - Licensed under MIT * Copyright 2019-2024 - Licensed under MIT
*/ */
/** /**
@ -1345,6 +1345,7 @@ main {
} }
.pico select[multiple] option:checked { .pico select[multiple] option:checked {
background: var(--pico-form-element-selected-background-color); background: var(--pico-form-element-selected-background-color);
color: var(--pico-form-element-color);
} }
[dir=rtl] .pico select:not([multiple], [size]) { [dir=rtl] .pico select:not([multiple], [size]) {
@ -1478,7 +1479,7 @@ main {
background-image: none; background-image: none;
} }
.pico [type=checkbox][role=switch]:checked::before { .pico [type=checkbox][role=switch]:checked::before {
margin-inline-start: calc(1.125em - var(--pico-border-width)); margin-inline-start: calc(2.25em - 1.25em / 2 - var(--pico-border-width) * 3);
} }
.pico [type=checkbox][role=switch][disabled] { .pico [type=checkbox][role=switch][disabled] {
--pico-background-color: var(--pico-border-color); --pico-background-color: var(--pico-border-color);
@ -1958,7 +1959,7 @@ main {
width: 1em; width: 1em;
height: 1em; height: 1em;
background-image: var(--pico-icon-loading); background-image: var(--pico-icon-loading);
background-size: 1rem auto; background-size: 1em auto;
background-repeat: no-repeat; background-repeat: no-repeat;
content: ""; content: "";
vertical-align: -0.125em; vertical-align: -0.125em;

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.3 (https://picocss.com) * Pico CSS v2.0.4 (https://picocss.com)
* Copyright 2019-2024 - Licensed under MIT * Copyright 2019-2024 - Licensed under MIT
*/ */
/** /**
@ -1345,6 +1345,7 @@ main {
} }
.pico select[multiple] option:checked { .pico select[multiple] option:checked {
background: var(--pico-form-element-selected-background-color); background: var(--pico-form-element-selected-background-color);
color: var(--pico-form-element-color);
} }
[dir=rtl] .pico select:not([multiple], [size]) { [dir=rtl] .pico select:not([multiple], [size]) {
@ -1478,7 +1479,7 @@ main {
background-image: none; background-image: none;
} }
.pico [type=checkbox][role=switch]:checked::before { .pico [type=checkbox][role=switch]:checked::before {
margin-inline-start: calc(1.125em - var(--pico-border-width)); margin-inline-start: calc(2.25em - 1.25em / 2 - var(--pico-border-width) * 3);
} }
.pico [type=checkbox][role=switch][disabled] { .pico [type=checkbox][role=switch][disabled] {
--pico-background-color: var(--pico-border-color); --pico-background-color: var(--pico-border-color);
@ -1958,7 +1959,7 @@ main {
width: 1em; width: 1em;
height: 1em; height: 1em;
background-image: var(--pico-icon-loading); background-image: var(--pico-icon-loading);
background-size: 1rem auto; background-size: 1em auto;
background-repeat: no-repeat; background-repeat: no-repeat;
content: ""; content: "";
vertical-align: -0.125em; vertical-align: -0.125em;

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.3 (https://picocss.com) * Pico CSS v2.0.4 (https://picocss.com)
* Copyright 2019-2024 - Licensed under MIT * Copyright 2019-2024 - Licensed under MIT
*/ */
/** /**
@ -1345,6 +1345,7 @@ main {
} }
.pico select[multiple] option:checked { .pico select[multiple] option:checked {
background: var(--pico-form-element-selected-background-color); background: var(--pico-form-element-selected-background-color);
color: var(--pico-form-element-color);
} }
[dir=rtl] .pico select:not([multiple], [size]) { [dir=rtl] .pico select:not([multiple], [size]) {
@ -1478,7 +1479,7 @@ main {
background-image: none; background-image: none;
} }
.pico [type=checkbox][role=switch]:checked::before { .pico [type=checkbox][role=switch]:checked::before {
margin-inline-start: calc(1.125em - var(--pico-border-width)); margin-inline-start: calc(2.25em - 1.25em / 2 - var(--pico-border-width) * 3);
} }
.pico [type=checkbox][role=switch][disabled] { .pico [type=checkbox][role=switch][disabled] {
--pico-background-color: var(--pico-border-color); --pico-background-color: var(--pico-border-color);
@ -1958,7 +1959,7 @@ main {
width: 1em; width: 1em;
height: 1em; height: 1em;
background-image: var(--pico-icon-loading); background-image: var(--pico-icon-loading);
background-size: 1rem auto; background-size: 1em auto;
background-repeat: no-repeat; background-repeat: no-repeat;
content: ""; content: "";
vertical-align: -0.125em; vertical-align: -0.125em;

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.3 (https://picocss.com) * Pico CSS v2.0.4 (https://picocss.com)
* Copyright 2019-2024 - Licensed under MIT * Copyright 2019-2024 - Licensed under MIT
*/ */
/** /**
@ -1345,6 +1345,7 @@ main {
} }
.pico select[multiple] option:checked { .pico select[multiple] option:checked {
background: var(--pico-form-element-selected-background-color); background: var(--pico-form-element-selected-background-color);
color: var(--pico-form-element-color);
} }
[dir=rtl] .pico select:not([multiple], [size]) { [dir=rtl] .pico select:not([multiple], [size]) {
@ -1478,7 +1479,7 @@ main {
background-image: none; background-image: none;
} }
.pico [type=checkbox][role=switch]:checked::before { .pico [type=checkbox][role=switch]:checked::before {
margin-inline-start: calc(1.125em - var(--pico-border-width)); margin-inline-start: calc(2.25em - 1.25em / 2 - var(--pico-border-width) * 3);
} }
.pico [type=checkbox][role=switch][disabled] { .pico [type=checkbox][role=switch][disabled] {
--pico-background-color: var(--pico-border-color); --pico-background-color: var(--pico-border-color);
@ -1958,7 +1959,7 @@ main {
width: 1em; width: 1em;
height: 1em; height: 1em;
background-image: var(--pico-icon-loading); background-image: var(--pico-icon-loading);
background-size: 1rem auto; background-size: 1em auto;
background-repeat: no-repeat; background-repeat: no-repeat;
content: ""; content: "";
vertical-align: -0.125em; vertical-align: -0.125em;

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.3 (https://picocss.com) * Pico CSS v2.0.4 (https://picocss.com)
* Copyright 2019-2024 - Licensed under MIT * Copyright 2019-2024 - Licensed under MIT
*/ */
/** /**
@ -1345,6 +1345,7 @@ main {
} }
.pico select[multiple] option:checked { .pico select[multiple] option:checked {
background: var(--pico-form-element-selected-background-color); background: var(--pico-form-element-selected-background-color);
color: var(--pico-form-element-color);
} }
[dir=rtl] .pico select:not([multiple], [size]) { [dir=rtl] .pico select:not([multiple], [size]) {
@ -1478,7 +1479,7 @@ main {
background-image: none; background-image: none;
} }
.pico [type=checkbox][role=switch]:checked::before { .pico [type=checkbox][role=switch]:checked::before {
margin-inline-start: calc(1.125em - var(--pico-border-width)); margin-inline-start: calc(2.25em - 1.25em / 2 - var(--pico-border-width) * 3);
} }
.pico [type=checkbox][role=switch][disabled] { .pico [type=checkbox][role=switch][disabled] {
--pico-background-color: var(--pico-border-color); --pico-background-color: var(--pico-border-color);
@ -1958,7 +1959,7 @@ main {
width: 1em; width: 1em;
height: 1em; height: 1em;
background-image: var(--pico-icon-loading); background-image: var(--pico-icon-loading);
background-size: 1rem auto; background-size: 1em auto;
background-repeat: no-repeat; background-repeat: no-repeat;
content: ""; content: "";
vertical-align: -0.125em; vertical-align: -0.125em;

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.3 (https://picocss.com) * Pico CSS v2.0.4 (https://picocss.com)
* Copyright 2019-2024 - Licensed under MIT * Copyright 2019-2024 - Licensed under MIT
*/ */
/** /**
@ -1345,6 +1345,7 @@ main {
} }
.pico select[multiple] option:checked { .pico select[multiple] option:checked {
background: var(--pico-form-element-selected-background-color); background: var(--pico-form-element-selected-background-color);
color: var(--pico-form-element-color);
} }
[dir=rtl] .pico select:not([multiple], [size]) { [dir=rtl] .pico select:not([multiple], [size]) {
@ -1478,7 +1479,7 @@ main {
background-image: none; background-image: none;
} }
.pico [type=checkbox][role=switch]:checked::before { .pico [type=checkbox][role=switch]:checked::before {
margin-inline-start: calc(1.125em - var(--pico-border-width)); margin-inline-start: calc(2.25em - 1.25em / 2 - var(--pico-border-width) * 3);
} }
.pico [type=checkbox][role=switch][disabled] { .pico [type=checkbox][role=switch][disabled] {
--pico-background-color: var(--pico-border-color); --pico-background-color: var(--pico-border-color);
@ -1958,7 +1959,7 @@ main {
width: 1em; width: 1em;
height: 1em; height: 1em;
background-image: var(--pico-icon-loading); background-image: var(--pico-icon-loading);
background-size: 1rem auto; background-size: 1em auto;
background-repeat: no-repeat; background-repeat: no-repeat;
content: ""; content: "";
vertical-align: -0.125em; vertical-align: -0.125em;

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.3 (https://picocss.com) * Pico CSS v2.0.4 (https://picocss.com)
* Copyright 2019-2024 - Licensed under MIT * Copyright 2019-2024 - Licensed under MIT
*/ */
/** /**
@ -1345,6 +1345,7 @@ main {
} }
.pico select[multiple] option:checked { .pico select[multiple] option:checked {
background: var(--pico-form-element-selected-background-color); background: var(--pico-form-element-selected-background-color);
color: var(--pico-form-element-color);
} }
[dir=rtl] .pico select:not([multiple], [size]) { [dir=rtl] .pico select:not([multiple], [size]) {
@ -1478,7 +1479,7 @@ main {
background-image: none; background-image: none;
} }
.pico [type=checkbox][role=switch]:checked::before { .pico [type=checkbox][role=switch]:checked::before {
margin-inline-start: calc(1.125em - var(--pico-border-width)); margin-inline-start: calc(2.25em - 1.25em / 2 - var(--pico-border-width) * 3);
} }
.pico [type=checkbox][role=switch][disabled] { .pico [type=checkbox][role=switch][disabled] {
--pico-background-color: var(--pico-border-color); --pico-background-color: var(--pico-border-color);
@ -1958,7 +1959,7 @@ main {
width: 1em; width: 1em;
height: 1em; height: 1em;
background-image: var(--pico-icon-loading); background-image: var(--pico-icon-loading);
background-size: 1rem auto; background-size: 1em auto;
background-repeat: no-repeat; background-repeat: no-repeat;
content: ""; content: "";
vertical-align: -0.125em; vertical-align: -0.125em;

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.3 (https://picocss.com) * Pico CSS v2.0.4 (https://picocss.com)
* Copyright 2019-2024 - Licensed under MIT * Copyright 2019-2024 - Licensed under MIT
*/ */
/** /**
@ -1345,6 +1345,7 @@ select:not([multiple], [size]) {
} }
select[multiple] option:checked { select[multiple] option:checked {
background: var(--pico-form-element-selected-background-color); background: var(--pico-form-element-selected-background-color);
color: var(--pico-form-element-color);
} }
[dir=rtl] select:not([multiple], [size]) { [dir=rtl] select:not([multiple], [size]) {
@ -1478,7 +1479,7 @@ label:has([type=checkbox], [type=radio]) {
background-image: none; background-image: none;
} }
[type=checkbox][role=switch]:checked::before { [type=checkbox][role=switch]:checked::before {
margin-inline-start: calc(1.125em - var(--pico-border-width)); margin-inline-start: calc(2.25em - 1.25em / 2 - var(--pico-border-width) * 3);
} }
[type=checkbox][role=switch][disabled] { [type=checkbox][role=switch][disabled] {
--pico-background-color: var(--pico-border-color); --pico-background-color: var(--pico-border-color);
@ -1958,7 +1959,7 @@ article > footer {
width: 1em; width: 1em;
height: 1em; height: 1em;
background-image: var(--pico-icon-loading); background-image: var(--pico-icon-loading);
background-size: 1rem auto; background-size: 1em auto;
background-repeat: no-repeat; background-repeat: no-repeat;
content: ""; content: "";
vertical-align: -0.125em; vertical-align: -0.125em;

View file

@ -1,6 +1,6 @@
@charset "UTF-8"; @charset "UTF-8";
/*! /*!
* Pico CSS v2.0.3 (https://picocss.com) * Pico CSS v2.0.4 (https://picocss.com)
* Copyright 2019-2024 - Licensed under MIT * Copyright 2019-2024 - Licensed under MIT
*/ */
/** /**
@ -1345,6 +1345,7 @@ select:not([multiple], [size]) {
} }
select[multiple] option:checked { select[multiple] option:checked {
background: var(--pico-form-element-selected-background-color); background: var(--pico-form-element-selected-background-color);
color: var(--pico-form-element-color);
} }
[dir=rtl] select:not([multiple], [size]) { [dir=rtl] select:not([multiple], [size]) {
@ -1478,7 +1479,7 @@ label:has([type=checkbox], [type=radio]) {
background-image: none; background-image: none;
} }
[type=checkbox][role=switch]:checked::before { [type=checkbox][role=switch]:checked::before {
margin-inline-start: calc(1.125em - var(--pico-border-width)); margin-inline-start: calc(2.25em - 1.25em / 2 - var(--pico-border-width) * 3);
} }
[type=checkbox][role=switch][disabled] { [type=checkbox][role=switch][disabled] {
--pico-background-color: var(--pico-border-color); --pico-background-color: var(--pico-border-color);
@ -1958,7 +1959,7 @@ article > footer {
width: 1em; width: 1em;
height: 1em; height: 1em;
background-image: var(--pico-icon-loading); background-image: var(--pico-icon-loading);
background-size: 1rem auto; background-size: 1em auto;
background-repeat: no-repeat; background-repeat: no-repeat;
content: ""; content: "";
vertical-align: -0.125em; vertical-align: -0.125em;

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.3 (https://picocss.com) * Pico CSS v2.0.4 (https://picocss.com)
* Copyright 2019-2024 - Licensed under MIT * Copyright 2019-2024 - Licensed under MIT
*/ */
/** /**
@ -1345,6 +1345,7 @@ select:not([multiple], [size]) {
} }
select[multiple] option:checked { select[multiple] option:checked {
background: var(--pico-form-element-selected-background-color); background: var(--pico-form-element-selected-background-color);
color: var(--pico-form-element-color);
} }
[dir=rtl] select:not([multiple], [size]) { [dir=rtl] select:not([multiple], [size]) {
@ -1478,7 +1479,7 @@ label:has([type=checkbox], [type=radio]) {
background-image: none; background-image: none;
} }
[type=checkbox][role=switch]:checked::before { [type=checkbox][role=switch]:checked::before {
margin-inline-start: calc(1.125em - var(--pico-border-width)); margin-inline-start: calc(2.25em - 1.25em / 2 - var(--pico-border-width) * 3);
} }
[type=checkbox][role=switch][disabled] { [type=checkbox][role=switch][disabled] {
--pico-background-color: var(--pico-border-color); --pico-background-color: var(--pico-border-color);
@ -1958,7 +1959,7 @@ article > footer {
width: 1em; width: 1em;
height: 1em; height: 1em;
background-image: var(--pico-icon-loading); background-image: var(--pico-icon-loading);
background-size: 1rem auto; background-size: 1em auto;
background-repeat: no-repeat; background-repeat: no-repeat;
content: ""; content: "";
vertical-align: -0.125em; vertical-align: -0.125em;

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.3 (https://picocss.com) * Pico CSS v2.0.4 (https://picocss.com)
* Copyright 2019-2024 - Licensed under MIT * Copyright 2019-2024 - Licensed under MIT
*/ */
/** /**
@ -1345,6 +1345,7 @@ select:not([multiple], [size]) {
} }
select[multiple] option:checked { select[multiple] option:checked {
background: var(--pico-form-element-selected-background-color); background: var(--pico-form-element-selected-background-color);
color: var(--pico-form-element-color);
} }
[dir=rtl] select:not([multiple], [size]) { [dir=rtl] select:not([multiple], [size]) {
@ -1478,7 +1479,7 @@ label:has([type=checkbox], [type=radio]) {
background-image: none; background-image: none;
} }
[type=checkbox][role=switch]:checked::before { [type=checkbox][role=switch]:checked::before {
margin-inline-start: calc(1.125em - var(--pico-border-width)); margin-inline-start: calc(2.25em - 1.25em / 2 - var(--pico-border-width) * 3);
} }
[type=checkbox][role=switch][disabled] { [type=checkbox][role=switch][disabled] {
--pico-background-color: var(--pico-border-color); --pico-background-color: var(--pico-border-color);
@ -1958,7 +1959,7 @@ article > footer {
width: 1em; width: 1em;
height: 1em; height: 1em;
background-image: var(--pico-icon-loading); background-image: var(--pico-icon-loading);
background-size: 1rem auto; background-size: 1em auto;
background-repeat: no-repeat; background-repeat: no-repeat;
content: ""; content: "";
vertical-align: -0.125em; vertical-align: -0.125em;

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.3 (https://picocss.com) * Pico CSS v2.0.4 (https://picocss.com)
* Copyright 2019-2024 - Licensed under MIT * Copyright 2019-2024 - Licensed under MIT
*/ */
/** /**
@ -1345,6 +1345,7 @@ select:not([multiple], [size]) {
} }
select[multiple] option:checked { select[multiple] option:checked {
background: var(--pico-form-element-selected-background-color); background: var(--pico-form-element-selected-background-color);
color: var(--pico-form-element-color);
} }
[dir=rtl] select:not([multiple], [size]) { [dir=rtl] select:not([multiple], [size]) {
@ -1478,7 +1479,7 @@ label:has([type=checkbox], [type=radio]) {
background-image: none; background-image: none;
} }
[type=checkbox][role=switch]:checked::before { [type=checkbox][role=switch]:checked::before {
margin-inline-start: calc(1.125em - var(--pico-border-width)); margin-inline-start: calc(2.25em - 1.25em / 2 - var(--pico-border-width) * 3);
} }
[type=checkbox][role=switch][disabled] { [type=checkbox][role=switch][disabled] {
--pico-background-color: var(--pico-border-color); --pico-background-color: var(--pico-border-color);
@ -1958,7 +1959,7 @@ article > footer {
width: 1em; width: 1em;
height: 1em; height: 1em;
background-image: var(--pico-icon-loading); background-image: var(--pico-icon-loading);
background-size: 1rem auto; background-size: 1em auto;
background-repeat: no-repeat; background-repeat: no-repeat;
content: ""; content: "";
vertical-align: -0.125em; vertical-align: -0.125em;

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.3 (https://picocss.com) * Pico CSS v2.0.4 (https://picocss.com)
* Copyright 2019-2024 - Licensed under MIT * Copyright 2019-2024 - Licensed under MIT
*/ */
/** /**
@ -1345,6 +1345,7 @@ select:not([multiple], [size]) {
} }
select[multiple] option:checked { select[multiple] option:checked {
background: var(--pico-form-element-selected-background-color); background: var(--pico-form-element-selected-background-color);
color: var(--pico-form-element-color);
} }
[dir=rtl] select:not([multiple], [size]) { [dir=rtl] select:not([multiple], [size]) {
@ -1478,7 +1479,7 @@ label:has([type=checkbox], [type=radio]) {
background-image: none; background-image: none;
} }
[type=checkbox][role=switch]:checked::before { [type=checkbox][role=switch]:checked::before {
margin-inline-start: calc(1.125em - var(--pico-border-width)); margin-inline-start: calc(2.25em - 1.25em / 2 - var(--pico-border-width) * 3);
} }
[type=checkbox][role=switch][disabled] { [type=checkbox][role=switch][disabled] {
--pico-background-color: var(--pico-border-color); --pico-background-color: var(--pico-border-color);
@ -1958,7 +1959,7 @@ article > footer {
width: 1em; width: 1em;
height: 1em; height: 1em;
background-image: var(--pico-icon-loading); background-image: var(--pico-icon-loading);
background-size: 1rem auto; background-size: 1em auto;
background-repeat: no-repeat; background-repeat: no-repeat;
content: ""; content: "";
vertical-align: -0.125em; vertical-align: -0.125em;

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.3 (https://picocss.com) * Pico CSS v2.0.4 (https://picocss.com)
* Copyright 2019-2024 - Licensed under MIT * Copyright 2019-2024 - Licensed under MIT
*/ */
/** /**
@ -1345,6 +1345,7 @@ select:not([multiple], [size]) {
} }
select[multiple] option:checked { select[multiple] option:checked {
background: var(--pico-form-element-selected-background-color); background: var(--pico-form-element-selected-background-color);
color: var(--pico-form-element-color);
} }
[dir=rtl] select:not([multiple], [size]) { [dir=rtl] select:not([multiple], [size]) {
@ -1478,7 +1479,7 @@ label:has([type=checkbox], [type=radio]) {
background-image: none; background-image: none;
} }
[type=checkbox][role=switch]:checked::before { [type=checkbox][role=switch]:checked::before {
margin-inline-start: calc(1.125em - var(--pico-border-width)); margin-inline-start: calc(2.25em - 1.25em / 2 - var(--pico-border-width) * 3);
} }
[type=checkbox][role=switch][disabled] { [type=checkbox][role=switch][disabled] {
--pico-background-color: var(--pico-border-color); --pico-background-color: var(--pico-border-color);
@ -1958,7 +1959,7 @@ article > footer {
width: 1em; width: 1em;
height: 1em; height: 1em;
background-image: var(--pico-icon-loading); background-image: var(--pico-icon-loading);
background-size: 1rem auto; background-size: 1em auto;
background-repeat: no-repeat; background-repeat: no-repeat;
content: ""; content: "";
vertical-align: -0.125em; vertical-align: -0.125em;

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.3 (https://picocss.com) * Pico CSS v2.0.4 (https://picocss.com)
* Copyright 2019-2024 - Licensed under MIT * Copyright 2019-2024 - Licensed under MIT
*/ */
/** /**
@ -1345,6 +1345,7 @@ select:not([multiple], [size]) {
} }
select[multiple] option:checked { select[multiple] option:checked {
background: var(--pico-form-element-selected-background-color); background: var(--pico-form-element-selected-background-color);
color: var(--pico-form-element-color);
} }
[dir=rtl] select:not([multiple], [size]) { [dir=rtl] select:not([multiple], [size]) {
@ -1478,7 +1479,7 @@ label:has([type=checkbox], [type=radio]) {
background-image: none; background-image: none;
} }
[type=checkbox][role=switch]:checked::before { [type=checkbox][role=switch]:checked::before {
margin-inline-start: calc(1.125em - var(--pico-border-width)); margin-inline-start: calc(2.25em - 1.25em / 2 - var(--pico-border-width) * 3);
} }
[type=checkbox][role=switch][disabled] { [type=checkbox][role=switch][disabled] {
--pico-background-color: var(--pico-border-color); --pico-background-color: var(--pico-border-color);
@ -1958,7 +1959,7 @@ article > footer {
width: 1em; width: 1em;
height: 1em; height: 1em;
background-image: var(--pico-icon-loading); background-image: var(--pico-icon-loading);
background-size: 1rem auto; background-size: 1em auto;
background-repeat: no-repeat; background-repeat: no-repeat;
content: ""; content: "";
vertical-align: -0.125em; vertical-align: -0.125em;

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.3 (https://picocss.com) * Pico CSS v2.0.4 (https://picocss.com)
* Copyright 2019-2024 - Licensed under MIT * Copyright 2019-2024 - Licensed under MIT
*/ */
/** /**
@ -1345,6 +1345,7 @@ select:not([multiple], [size]) {
} }
select[multiple] option:checked { select[multiple] option:checked {
background: var(--pico-form-element-selected-background-color); background: var(--pico-form-element-selected-background-color);
color: var(--pico-form-element-color);
} }
[dir=rtl] select:not([multiple], [size]) { [dir=rtl] select:not([multiple], [size]) {
@ -1478,7 +1479,7 @@ label:has([type=checkbox], [type=radio]) {
background-image: none; background-image: none;
} }
[type=checkbox][role=switch]:checked::before { [type=checkbox][role=switch]:checked::before {
margin-inline-start: calc(1.125em - var(--pico-border-width)); margin-inline-start: calc(2.25em - 1.25em / 2 - var(--pico-border-width) * 3);
} }
[type=checkbox][role=switch][disabled] { [type=checkbox][role=switch][disabled] {
--pico-background-color: var(--pico-border-color); --pico-background-color: var(--pico-border-color);
@ -1958,7 +1959,7 @@ article > footer {
width: 1em; width: 1em;
height: 1em; height: 1em;
background-image: var(--pico-icon-loading); background-image: var(--pico-icon-loading);
background-size: 1rem auto; background-size: 1em auto;
background-repeat: no-repeat; background-repeat: no-repeat;
content: ""; content: "";
vertical-align: -0.125em; vertical-align: -0.125em;

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.3 (https://picocss.com) * Pico CSS v2.0.4 (https://picocss.com)
* Copyright 2019-2024 - Licensed under MIT * Copyright 2019-2024 - Licensed under MIT
*/ */
/** /**
@ -1345,6 +1345,7 @@ select:not([multiple], [size]) {
} }
select[multiple] option:checked { select[multiple] option:checked {
background: var(--pico-form-element-selected-background-color); background: var(--pico-form-element-selected-background-color);
color: var(--pico-form-element-color);
} }
[dir=rtl] select:not([multiple], [size]) { [dir=rtl] select:not([multiple], [size]) {
@ -1478,7 +1479,7 @@ label:has([type=checkbox], [type=radio]) {
background-image: none; background-image: none;
} }
[type=checkbox][role=switch]:checked::before { [type=checkbox][role=switch]:checked::before {
margin-inline-start: calc(1.125em - var(--pico-border-width)); margin-inline-start: calc(2.25em - 1.25em / 2 - var(--pico-border-width) * 3);
} }
[type=checkbox][role=switch][disabled] { [type=checkbox][role=switch][disabled] {
--pico-background-color: var(--pico-border-color); --pico-background-color: var(--pico-border-color);
@ -1958,7 +1959,7 @@ article > footer {
width: 1em; width: 1em;
height: 1em; height: 1em;
background-image: var(--pico-icon-loading); background-image: var(--pico-icon-loading);
background-size: 1rem auto; background-size: 1em auto;
background-repeat: no-repeat; background-repeat: no-repeat;
content: ""; content: "";
vertical-align: -0.125em; vertical-align: -0.125em;

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.3 (https://picocss.com) * Pico CSS v2.0.4 (https://picocss.com)
* Copyright 2019-2024 - Licensed under MIT * Copyright 2019-2024 - Licensed under MIT
*/ */
/** /**
@ -1345,6 +1345,7 @@ select:not([multiple], [size]) {
} }
select[multiple] option:checked { select[multiple] option:checked {
background: var(--pico-form-element-selected-background-color); background: var(--pico-form-element-selected-background-color);
color: var(--pico-form-element-color);
} }
[dir=rtl] select:not([multiple], [size]) { [dir=rtl] select:not([multiple], [size]) {
@ -1478,7 +1479,7 @@ label:has([type=checkbox], [type=radio]) {
background-image: none; background-image: none;
} }
[type=checkbox][role=switch]:checked::before { [type=checkbox][role=switch]:checked::before {
margin-inline-start: calc(1.125em - var(--pico-border-width)); margin-inline-start: calc(2.25em - 1.25em / 2 - var(--pico-border-width) * 3);
} }
[type=checkbox][role=switch][disabled] { [type=checkbox][role=switch][disabled] {
--pico-background-color: var(--pico-border-color); --pico-background-color: var(--pico-border-color);
@ -1958,7 +1959,7 @@ article > footer {
width: 1em; width: 1em;
height: 1em; height: 1em;
background-image: var(--pico-icon-loading); background-image: var(--pico-icon-loading);
background-size: 1rem auto; background-size: 1em auto;
background-repeat: no-repeat; background-repeat: no-repeat;
content: ""; content: "";
vertical-align: -0.125em; vertical-align: -0.125em;

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.3 (https://picocss.com) * Pico CSS v2.0.4 (https://picocss.com)
* Copyright 2019-2024 - Licensed under MIT * Copyright 2019-2024 - Licensed under MIT
*/ */
/** /**
@ -1345,6 +1345,7 @@ select:not([multiple], [size]) {
} }
select[multiple] option:checked { select[multiple] option:checked {
background: var(--pico-form-element-selected-background-color); background: var(--pico-form-element-selected-background-color);
color: var(--pico-form-element-color);
} }
[dir=rtl] select:not([multiple], [size]) { [dir=rtl] select:not([multiple], [size]) {
@ -1478,7 +1479,7 @@ label:has([type=checkbox], [type=radio]) {
background-image: none; background-image: none;
} }
[type=checkbox][role=switch]:checked::before { [type=checkbox][role=switch]:checked::before {
margin-inline-start: calc(1.125em - var(--pico-border-width)); margin-inline-start: calc(2.25em - 1.25em / 2 - var(--pico-border-width) * 3);
} }
[type=checkbox][role=switch][disabled] { [type=checkbox][role=switch][disabled] {
--pico-background-color: var(--pico-border-color); --pico-background-color: var(--pico-border-color);
@ -1958,7 +1959,7 @@ article > footer {
width: 1em; width: 1em;
height: 1em; height: 1em;
background-image: var(--pico-icon-loading); background-image: var(--pico-icon-loading);
background-size: 1rem auto; background-size: 1em auto;
background-repeat: no-repeat; background-repeat: no-repeat;
content: ""; content: "";
vertical-align: -0.125em; vertical-align: -0.125em;

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.3 (https://picocss.com) * Pico CSS v2.0.4 (https://picocss.com)
* Copyright 2019-2024 - Licensed under MIT * Copyright 2019-2024 - Licensed under MIT
*/ */
/** /**
@ -1345,6 +1345,7 @@ select:not([multiple], [size]) {
} }
select[multiple] option:checked { select[multiple] option:checked {
background: var(--pico-form-element-selected-background-color); background: var(--pico-form-element-selected-background-color);
color: var(--pico-form-element-color);
} }
[dir=rtl] select:not([multiple], [size]) { [dir=rtl] select:not([multiple], [size]) {
@ -1478,7 +1479,7 @@ label:has([type=checkbox], [type=radio]) {
background-image: none; background-image: none;
} }
[type=checkbox][role=switch]:checked::before { [type=checkbox][role=switch]:checked::before {
margin-inline-start: calc(1.125em - var(--pico-border-width)); margin-inline-start: calc(2.25em - 1.25em / 2 - var(--pico-border-width) * 3);
} }
[type=checkbox][role=switch][disabled] { [type=checkbox][role=switch][disabled] {
--pico-background-color: var(--pico-border-color); --pico-background-color: var(--pico-border-color);
@ -1958,7 +1959,7 @@ article > footer {
width: 1em; width: 1em;
height: 1em; height: 1em;
background-image: var(--pico-icon-loading); background-image: var(--pico-icon-loading);
background-size: 1rem auto; background-size: 1em auto;
background-repeat: no-repeat; background-repeat: no-repeat;
content: ""; content: "";
vertical-align: -0.125em; vertical-align: -0.125em;

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.3 (https://picocss.com) * Pico CSS v2.0.4 (https://picocss.com)
* Copyright 2019-2024 - Licensed under MIT * Copyright 2019-2024 - Licensed under MIT
*/ */
/** /**
@ -1345,6 +1345,7 @@ select:not([multiple], [size]) {
} }
select[multiple] option:checked { select[multiple] option:checked {
background: var(--pico-form-element-selected-background-color); background: var(--pico-form-element-selected-background-color);
color: var(--pico-form-element-color);
} }
[dir=rtl] select:not([multiple], [size]) { [dir=rtl] select:not([multiple], [size]) {
@ -1478,7 +1479,7 @@ label:has([type=checkbox], [type=radio]) {
background-image: none; background-image: none;
} }
[type=checkbox][role=switch]:checked::before { [type=checkbox][role=switch]:checked::before {
margin-inline-start: calc(1.125em - var(--pico-border-width)); margin-inline-start: calc(2.25em - 1.25em / 2 - var(--pico-border-width) * 3);
} }
[type=checkbox][role=switch][disabled] { [type=checkbox][role=switch][disabled] {
--pico-background-color: var(--pico-border-color); --pico-background-color: var(--pico-border-color);
@ -1958,7 +1959,7 @@ article > footer {
width: 1em; width: 1em;
height: 1em; height: 1em;
background-image: var(--pico-icon-loading); background-image: var(--pico-icon-loading);
background-size: 1rem auto; background-size: 1em auto;
background-repeat: no-repeat; background-repeat: no-repeat;
content: ""; content: "";
vertical-align: -0.125em; vertical-align: -0.125em;

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.3 (https://picocss.com) * Pico CSS v2.0.4 (https://picocss.com)
* Copyright 2019-2024 - Licensed under MIT * Copyright 2019-2024 - Licensed under MIT
*/ */
/** /**
@ -1345,6 +1345,7 @@ select:not([multiple], [size]) {
} }
select[multiple] option:checked { select[multiple] option:checked {
background: var(--pico-form-element-selected-background-color); background: var(--pico-form-element-selected-background-color);
color: var(--pico-form-element-color);
} }
[dir=rtl] select:not([multiple], [size]) { [dir=rtl] select:not([multiple], [size]) {
@ -1478,7 +1479,7 @@ label:has([type=checkbox], [type=radio]) {
background-image: none; background-image: none;
} }
[type=checkbox][role=switch]:checked::before { [type=checkbox][role=switch]:checked::before {
margin-inline-start: calc(1.125em - var(--pico-border-width)); margin-inline-start: calc(2.25em - 1.25em / 2 - var(--pico-border-width) * 3);
} }
[type=checkbox][role=switch][disabled] { [type=checkbox][role=switch][disabled] {
--pico-background-color: var(--pico-border-color); --pico-background-color: var(--pico-border-color);
@ -1958,7 +1959,7 @@ article > footer {
width: 1em; width: 1em;
height: 1em; height: 1em;
background-image: var(--pico-icon-loading); background-image: var(--pico-icon-loading);
background-size: 1rem auto; background-size: 1em auto;
background-repeat: no-repeat; background-repeat: no-repeat;
content: ""; content: "";
vertical-align: -0.125em; vertical-align: -0.125em;

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.3 (https://picocss.com) * Pico CSS v2.0.4 (https://picocss.com)
* Copyright 2019-2024 - Licensed under MIT * Copyright 2019-2024 - Licensed under MIT
*/ */
/** /**
@ -1345,6 +1345,7 @@ select:not([multiple], [size]) {
} }
select[multiple] option:checked { select[multiple] option:checked {
background: var(--pico-form-element-selected-background-color); background: var(--pico-form-element-selected-background-color);
color: var(--pico-form-element-color);
} }
[dir=rtl] select:not([multiple], [size]) { [dir=rtl] select:not([multiple], [size]) {
@ -1478,7 +1479,7 @@ label:has([type=checkbox], [type=radio]) {
background-image: none; background-image: none;
} }
[type=checkbox][role=switch]:checked::before { [type=checkbox][role=switch]:checked::before {
margin-inline-start: calc(1.125em - var(--pico-border-width)); margin-inline-start: calc(2.25em - 1.25em / 2 - var(--pico-border-width) * 3);
} }
[type=checkbox][role=switch][disabled] { [type=checkbox][role=switch][disabled] {
--pico-background-color: var(--pico-border-color); --pico-background-color: var(--pico-border-color);
@ -1958,7 +1959,7 @@ article > footer {
width: 1em; width: 1em;
height: 1em; height: 1em;
background-image: var(--pico-icon-loading); background-image: var(--pico-icon-loading);
background-size: 1rem auto; background-size: 1em auto;
background-repeat: no-repeat; background-repeat: no-repeat;
content: ""; content: "";
vertical-align: -0.125em; vertical-align: -0.125em;

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.3 (https://picocss.com) * Pico CSS v2.0.4 (https://picocss.com)
* Copyright 2019-2024 - Licensed under MIT * Copyright 2019-2024 - Licensed under MIT
*/ */
/** /**
@ -1345,6 +1345,7 @@ select:not([multiple], [size]) {
} }
select[multiple] option:checked { select[multiple] option:checked {
background: var(--pico-form-element-selected-background-color); background: var(--pico-form-element-selected-background-color);
color: var(--pico-form-element-color);
} }
[dir=rtl] select:not([multiple], [size]) { [dir=rtl] select:not([multiple], [size]) {
@ -1478,7 +1479,7 @@ label:has([type=checkbox], [type=radio]) {
background-image: none; background-image: none;
} }
[type=checkbox][role=switch]:checked::before { [type=checkbox][role=switch]:checked::before {
margin-inline-start: calc(1.125em - var(--pico-border-width)); margin-inline-start: calc(2.25em - 1.25em / 2 - var(--pico-border-width) * 3);
} }
[type=checkbox][role=switch][disabled] { [type=checkbox][role=switch][disabled] {
--pico-background-color: var(--pico-border-color); --pico-background-color: var(--pico-border-color);
@ -1958,7 +1959,7 @@ article > footer {
width: 1em; width: 1em;
height: 1em; height: 1em;
background-image: var(--pico-icon-loading); background-image: var(--pico-icon-loading);
background-size: 1rem auto; background-size: 1em auto;
background-repeat: no-repeat; background-repeat: no-repeat;
content: ""; content: "";
vertical-align: -0.125em; vertical-align: -0.125em;

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.3 (https://picocss.com) * Pico CSS v2.0.4 (https://picocss.com)
* Copyright 2019-2024 - Licensed under MIT * Copyright 2019-2024 - Licensed under MIT
*/ */
/** /**
@ -1345,6 +1345,7 @@ select:not([multiple], [size]) {
} }
select[multiple] option:checked { select[multiple] option:checked {
background: var(--pico-form-element-selected-background-color); background: var(--pico-form-element-selected-background-color);
color: var(--pico-form-element-color);
} }
[dir=rtl] select:not([multiple], [size]) { [dir=rtl] select:not([multiple], [size]) {
@ -1478,7 +1479,7 @@ label:has([type=checkbox], [type=radio]) {
background-image: none; background-image: none;
} }
[type=checkbox][role=switch]:checked::before { [type=checkbox][role=switch]:checked::before {
margin-inline-start: calc(1.125em - var(--pico-border-width)); margin-inline-start: calc(2.25em - 1.25em / 2 - var(--pico-border-width) * 3);
} }
[type=checkbox][role=switch][disabled] { [type=checkbox][role=switch][disabled] {
--pico-background-color: var(--pico-border-color); --pico-background-color: var(--pico-border-color);
@ -1958,7 +1959,7 @@ article > footer {
width: 1em; width: 1em;
height: 1em; height: 1em;
background-image: var(--pico-icon-loading); background-image: var(--pico-icon-loading);
background-size: 1rem auto; background-size: 1em auto;
background-repeat: no-repeat; background-repeat: no-repeat;
content: ""; content: "";
vertical-align: -0.125em; vertical-align: -0.125em;

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.3 (https://picocss.com) * Pico CSS v2.0.4 (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.3 (https://picocss.com) * Pico CSS v2.0.4 (https://picocss.com)
* Copyright 2019-2024 - Licensed under MIT * Copyright 2019-2024 - Licensed under MIT
*/ */
/** /**
@ -708,6 +708,16 @@ main {
display: grid; display: grid;
grid-template-columns: 1fr; grid-template-columns: 1fr;
} }
@media (max-width: calc(768px - 1px)) {
.grid input:not([type=checkbox], [type=radio]),
.grid select,
.grid textarea,
.grid fieldset,
.grid fieldset legend,
.grid label {
margin-bottom: 0;
}
}
@media (min-width: 768px) { @media (min-width: 768px) {
.grid { .grid {
grid-template-columns: repeat(auto-fit, minmax(0%, 1fr)); grid-template-columns: repeat(auto-fit, minmax(0%, 1fr));
@ -1511,6 +1521,7 @@ main {
} }
.pico select[multiple] option:checked { .pico select[multiple] option:checked {
background: var(--pico-form-element-selected-background-color); background: var(--pico-form-element-selected-background-color);
color: var(--pico-form-element-color);
} }
[dir=rtl] .pico select:not([multiple], [size]) { [dir=rtl] .pico select:not([multiple], [size]) {
@ -1644,7 +1655,7 @@ main {
background-image: none; background-image: none;
} }
.pico [type=checkbox][role=switch]:checked::before { .pico [type=checkbox][role=switch]:checked::before {
margin-inline-start: calc(1.125em - var(--pico-border-width)); margin-inline-start: calc(2.25em - 1.25em / 2 - var(--pico-border-width) * 3);
} }
.pico [type=checkbox][role=switch][disabled] { .pico [type=checkbox][role=switch][disabled] {
--pico-background-color: var(--pico-border-color); --pico-background-color: var(--pico-border-color);
@ -2284,7 +2295,7 @@ main {
width: 1em; width: 1em;
height: 1em; height: 1em;
background-image: var(--pico-icon-loading); background-image: var(--pico-icon-loading);
background-size: 1rem auto; background-size: 1em auto;
background-repeat: no-repeat; background-repeat: no-repeat;
content: ""; content: "";
vertical-align: -0.125em; vertical-align: -0.125em;

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.3 (https://picocss.com) * Pico CSS v2.0.4 (https://picocss.com)
* Copyright 2019-2024 - Licensed under MIT * Copyright 2019-2024 - Licensed under MIT
*/ */
/** /**
@ -708,6 +708,16 @@ main {
display: grid; display: grid;
grid-template-columns: 1fr; grid-template-columns: 1fr;
} }
@media (max-width: calc(768px - 1px)) {
.grid input:not([type=checkbox], [type=radio]),
.grid select,
.grid textarea,
.grid fieldset,
.grid fieldset legend,
.grid label {
margin-bottom: 0;
}
}
@media (min-width: 768px) { @media (min-width: 768px) {
.grid { .grid {
grid-template-columns: repeat(auto-fit, minmax(0%, 1fr)); grid-template-columns: repeat(auto-fit, minmax(0%, 1fr));
@ -1511,6 +1521,7 @@ main {
} }
.pico select[multiple] option:checked { .pico select[multiple] option:checked {
background: var(--pico-form-element-selected-background-color); background: var(--pico-form-element-selected-background-color);
color: var(--pico-form-element-color);
} }
[dir=rtl] .pico select:not([multiple], [size]) { [dir=rtl] .pico select:not([multiple], [size]) {
@ -1644,7 +1655,7 @@ main {
background-image: none; background-image: none;
} }
.pico [type=checkbox][role=switch]:checked::before { .pico [type=checkbox][role=switch]:checked::before {
margin-inline-start: calc(1.125em - var(--pico-border-width)); margin-inline-start: calc(2.25em - 1.25em / 2 - var(--pico-border-width) * 3);
} }
.pico [type=checkbox][role=switch][disabled] { .pico [type=checkbox][role=switch][disabled] {
--pico-background-color: var(--pico-border-color); --pico-background-color: var(--pico-border-color);
@ -2284,7 +2295,7 @@ main {
width: 1em; width: 1em;
height: 1em; height: 1em;
background-image: var(--pico-icon-loading); background-image: var(--pico-icon-loading);
background-size: 1rem auto; background-size: 1em auto;
background-repeat: no-repeat; background-repeat: no-repeat;
content: ""; content: "";
vertical-align: -0.125em; vertical-align: -0.125em;

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.3 (https://picocss.com) * Pico CSS v2.0.4 (https://picocss.com)
* Copyright 2019-2024 - Licensed under MIT * Copyright 2019-2024 - Licensed under MIT
*/ */
/** /**
@ -708,6 +708,16 @@ main {
display: grid; display: grid;
grid-template-columns: 1fr; grid-template-columns: 1fr;
} }
@media (max-width: calc(768px - 1px)) {
.grid input:not([type=checkbox], [type=radio]),
.grid select,
.grid textarea,
.grid fieldset,
.grid fieldset legend,
.grid label {
margin-bottom: 0;
}
}
@media (min-width: 768px) { @media (min-width: 768px) {
.grid { .grid {
grid-template-columns: repeat(auto-fit, minmax(0%, 1fr)); grid-template-columns: repeat(auto-fit, minmax(0%, 1fr));
@ -1511,6 +1521,7 @@ main {
} }
.pico select[multiple] option:checked { .pico select[multiple] option:checked {
background: var(--pico-form-element-selected-background-color); background: var(--pico-form-element-selected-background-color);
color: var(--pico-form-element-color);
} }
[dir=rtl] .pico select:not([multiple], [size]) { [dir=rtl] .pico select:not([multiple], [size]) {
@ -1644,7 +1655,7 @@ main {
background-image: none; background-image: none;
} }
.pico [type=checkbox][role=switch]:checked::before { .pico [type=checkbox][role=switch]:checked::before {
margin-inline-start: calc(1.125em - var(--pico-border-width)); margin-inline-start: calc(2.25em - 1.25em / 2 - var(--pico-border-width) * 3);
} }
.pico [type=checkbox][role=switch][disabled] { .pico [type=checkbox][role=switch][disabled] {
--pico-background-color: var(--pico-border-color); --pico-background-color: var(--pico-border-color);
@ -2284,7 +2295,7 @@ main {
width: 1em; width: 1em;
height: 1em; height: 1em;
background-image: var(--pico-icon-loading); background-image: var(--pico-icon-loading);
background-size: 1rem auto; background-size: 1em auto;
background-repeat: no-repeat; background-repeat: no-repeat;
content: ""; content: "";
vertical-align: -0.125em; vertical-align: -0.125em;

View file

@ -1,6 +1,6 @@
@charset "UTF-8"; @charset "UTF-8";
/*! /*!
* Pico CSS v2.0.3 (https://picocss.com) * Pico CSS v2.0.4 (https://picocss.com)
* Copyright 2019-2024 - Licensed under MIT * Copyright 2019-2024 - Licensed under MIT
*/ */
/** /**
@ -708,6 +708,16 @@ main {
display: grid; display: grid;
grid-template-columns: 1fr; grid-template-columns: 1fr;
} }
@media (max-width: calc(768px - 1px)) {
.grid input:not([type=checkbox], [type=radio]),
.grid select,
.grid textarea,
.grid fieldset,
.grid fieldset legend,
.grid label {
margin-bottom: 0;
}
}
@media (min-width: 768px) { @media (min-width: 768px) {
.grid { .grid {
grid-template-columns: repeat(auto-fit, minmax(0%, 1fr)); grid-template-columns: repeat(auto-fit, minmax(0%, 1fr));
@ -1511,6 +1521,7 @@ main {
} }
.pico select[multiple] option:checked { .pico select[multiple] option:checked {
background: var(--pico-form-element-selected-background-color); background: var(--pico-form-element-selected-background-color);
color: var(--pico-form-element-color);
} }
[dir=rtl] .pico select:not([multiple], [size]) { [dir=rtl] .pico select:not([multiple], [size]) {
@ -1644,7 +1655,7 @@ main {
background-image: none; background-image: none;
} }
.pico [type=checkbox][role=switch]:checked::before { .pico [type=checkbox][role=switch]:checked::before {
margin-inline-start: calc(1.125em - var(--pico-border-width)); margin-inline-start: calc(2.25em - 1.25em / 2 - var(--pico-border-width) * 3);
} }
.pico [type=checkbox][role=switch][disabled] { .pico [type=checkbox][role=switch][disabled] {
--pico-background-color: var(--pico-border-color); --pico-background-color: var(--pico-border-color);
@ -2284,7 +2295,7 @@ main {
width: 1em; width: 1em;
height: 1em; height: 1em;
background-image: var(--pico-icon-loading); background-image: var(--pico-icon-loading);
background-size: 1rem auto; background-size: 1em auto;
background-repeat: no-repeat; background-repeat: no-repeat;
content: ""; content: "";
vertical-align: -0.125em; vertical-align: -0.125em;

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.3 (https://picocss.com) * Pico CSS v2.0.4 (https://picocss.com)
* Copyright 2019-2024 - Licensed under MIT * Copyright 2019-2024 - Licensed under MIT
*/ */
/** /**
@ -708,6 +708,16 @@ main {
display: grid; display: grid;
grid-template-columns: 1fr; grid-template-columns: 1fr;
} }
@media (max-width: calc(768px - 1px)) {
.grid input:not([type=checkbox], [type=radio]),
.grid select,
.grid textarea,
.grid fieldset,
.grid fieldset legend,
.grid label {
margin-bottom: 0;
}
}
@media (min-width: 768px) { @media (min-width: 768px) {
.grid { .grid {
grid-template-columns: repeat(auto-fit, minmax(0%, 1fr)); grid-template-columns: repeat(auto-fit, minmax(0%, 1fr));
@ -1511,6 +1521,7 @@ main {
} }
.pico select[multiple] option:checked { .pico select[multiple] option:checked {
background: var(--pico-form-element-selected-background-color); background: var(--pico-form-element-selected-background-color);
color: var(--pico-form-element-color);
} }
[dir=rtl] .pico select:not([multiple], [size]) { [dir=rtl] .pico select:not([multiple], [size]) {
@ -1644,7 +1655,7 @@ main {
background-image: none; background-image: none;
} }
.pico [type=checkbox][role=switch]:checked::before { .pico [type=checkbox][role=switch]:checked::before {
margin-inline-start: calc(1.125em - var(--pico-border-width)); margin-inline-start: calc(2.25em - 1.25em / 2 - var(--pico-border-width) * 3);
} }
.pico [type=checkbox][role=switch][disabled] { .pico [type=checkbox][role=switch][disabled] {
--pico-background-color: var(--pico-border-color); --pico-background-color: var(--pico-border-color);
@ -2284,7 +2295,7 @@ main {
width: 1em; width: 1em;
height: 1em; height: 1em;
background-image: var(--pico-icon-loading); background-image: var(--pico-icon-loading);
background-size: 1rem auto; background-size: 1em auto;
background-repeat: no-repeat; background-repeat: no-repeat;
content: ""; content: "";
vertical-align: -0.125em; vertical-align: -0.125em;

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.3 (https://picocss.com) * Pico CSS v2.0.4 (https://picocss.com)
* Copyright 2019-2024 - Licensed under MIT * Copyright 2019-2024 - Licensed under MIT
*/ */
/** /**
@ -708,6 +708,16 @@ main {
display: grid; display: grid;
grid-template-columns: 1fr; grid-template-columns: 1fr;
} }
@media (max-width: calc(768px - 1px)) {
.grid input:not([type=checkbox], [type=radio]),
.grid select,
.grid textarea,
.grid fieldset,
.grid fieldset legend,
.grid label {
margin-bottom: 0;
}
}
@media (min-width: 768px) { @media (min-width: 768px) {
.grid { .grid {
grid-template-columns: repeat(auto-fit, minmax(0%, 1fr)); grid-template-columns: repeat(auto-fit, minmax(0%, 1fr));
@ -1511,6 +1521,7 @@ main {
} }
.pico select[multiple] option:checked { .pico select[multiple] option:checked {
background: var(--pico-form-element-selected-background-color); background: var(--pico-form-element-selected-background-color);
color: var(--pico-form-element-color);
} }
[dir=rtl] .pico select:not([multiple], [size]) { [dir=rtl] .pico select:not([multiple], [size]) {
@ -1644,7 +1655,7 @@ main {
background-image: none; background-image: none;
} }
.pico [type=checkbox][role=switch]:checked::before { .pico [type=checkbox][role=switch]:checked::before {
margin-inline-start: calc(1.125em - var(--pico-border-width)); margin-inline-start: calc(2.25em - 1.25em / 2 - var(--pico-border-width) * 3);
} }
.pico [type=checkbox][role=switch][disabled] { .pico [type=checkbox][role=switch][disabled] {
--pico-background-color: var(--pico-border-color); --pico-background-color: var(--pico-border-color);
@ -2284,7 +2295,7 @@ main {
width: 1em; width: 1em;
height: 1em; height: 1em;
background-image: var(--pico-icon-loading); background-image: var(--pico-icon-loading);
background-size: 1rem auto; background-size: 1em auto;
background-repeat: no-repeat; background-repeat: no-repeat;
content: ""; content: "";
vertical-align: -0.125em; vertical-align: -0.125em;

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.3 (https://picocss.com) * Pico CSS v2.0.4 (https://picocss.com)
* Copyright 2019-2024 - Licensed under MIT * Copyright 2019-2024 - Licensed under MIT
*/ */
/** /**
@ -708,6 +708,16 @@ main {
display: grid; display: grid;
grid-template-columns: 1fr; grid-template-columns: 1fr;
} }
@media (max-width: calc(768px - 1px)) {
.grid input:not([type=checkbox], [type=radio]),
.grid select,
.grid textarea,
.grid fieldset,
.grid fieldset legend,
.grid label {
margin-bottom: 0;
}
}
@media (min-width: 768px) { @media (min-width: 768px) {
.grid { .grid {
grid-template-columns: repeat(auto-fit, minmax(0%, 1fr)); grid-template-columns: repeat(auto-fit, minmax(0%, 1fr));
@ -1511,6 +1521,7 @@ main {
} }
.pico select[multiple] option:checked { .pico select[multiple] option:checked {
background: var(--pico-form-element-selected-background-color); background: var(--pico-form-element-selected-background-color);
color: var(--pico-form-element-color);
} }
[dir=rtl] .pico select:not([multiple], [size]) { [dir=rtl] .pico select:not([multiple], [size]) {
@ -1644,7 +1655,7 @@ main {
background-image: none; background-image: none;
} }
.pico [type=checkbox][role=switch]:checked::before { .pico [type=checkbox][role=switch]:checked::before {
margin-inline-start: calc(1.125em - var(--pico-border-width)); margin-inline-start: calc(2.25em - 1.25em / 2 - var(--pico-border-width) * 3);
} }
.pico [type=checkbox][role=switch][disabled] { .pico [type=checkbox][role=switch][disabled] {
--pico-background-color: var(--pico-border-color); --pico-background-color: var(--pico-border-color);
@ -2284,7 +2295,7 @@ main {
width: 1em; width: 1em;
height: 1em; height: 1em;
background-image: var(--pico-icon-loading); background-image: var(--pico-icon-loading);
background-size: 1rem auto; background-size: 1em auto;
background-repeat: no-repeat; background-repeat: no-repeat;
content: ""; content: "";
vertical-align: -0.125em; vertical-align: -0.125em;

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.3 (https://picocss.com) * Pico CSS v2.0.4 (https://picocss.com)
* Copyright 2019-2024 - Licensed under MIT * Copyright 2019-2024 - Licensed under MIT
*/ */
/** /**
@ -708,6 +708,16 @@ main {
display: grid; display: grid;
grid-template-columns: 1fr; grid-template-columns: 1fr;
} }
@media (max-width: calc(768px - 1px)) {
.grid input:not([type=checkbox], [type=radio]),
.grid select,
.grid textarea,
.grid fieldset,
.grid fieldset legend,
.grid label {
margin-bottom: 0;
}
}
@media (min-width: 768px) { @media (min-width: 768px) {
.grid { .grid {
grid-template-columns: repeat(auto-fit, minmax(0%, 1fr)); grid-template-columns: repeat(auto-fit, minmax(0%, 1fr));
@ -1511,6 +1521,7 @@ main {
} }
.pico select[multiple] option:checked { .pico select[multiple] option:checked {
background: var(--pico-form-element-selected-background-color); background: var(--pico-form-element-selected-background-color);
color: var(--pico-form-element-color);
} }
[dir=rtl] .pico select:not([multiple], [size]) { [dir=rtl] .pico select:not([multiple], [size]) {
@ -1644,7 +1655,7 @@ main {
background-image: none; background-image: none;
} }
.pico [type=checkbox][role=switch]:checked::before { .pico [type=checkbox][role=switch]:checked::before {
margin-inline-start: calc(1.125em - var(--pico-border-width)); margin-inline-start: calc(2.25em - 1.25em / 2 - var(--pico-border-width) * 3);
} }
.pico [type=checkbox][role=switch][disabled] { .pico [type=checkbox][role=switch][disabled] {
--pico-background-color: var(--pico-border-color); --pico-background-color: var(--pico-border-color);
@ -2284,7 +2295,7 @@ main {
width: 1em; width: 1em;
height: 1em; height: 1em;
background-image: var(--pico-icon-loading); background-image: var(--pico-icon-loading);
background-size: 1rem auto; background-size: 1em auto;
background-repeat: no-repeat; background-repeat: no-repeat;
content: ""; content: "";
vertical-align: -0.125em; vertical-align: -0.125em;

File diff suppressed because one or more lines are too long

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