mirror of
https://github.com/picocss/pico
synced 2025-09-10 19:36:29 +00:00
commit
d610bd3b07
@ -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
|
||||||
|
@ -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;
|
||||||
|
4
css/pico.amber.min.css
vendored
4
css/pico.amber.min.css
vendored
File diff suppressed because one or more lines are too long
@ -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;
|
||||||
|
4
css/pico.blue.min.css
vendored
4
css/pico.blue.min.css
vendored
File diff suppressed because one or more lines are too long
@ -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;
|
||||||
|
4
css/pico.classless.amber.min.css
vendored
4
css/pico.classless.amber.min.css
vendored
File diff suppressed because one or more lines are too long
@ -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;
|
||||||
|
4
css/pico.classless.blue.min.css
vendored
4
css/pico.classless.blue.min.css
vendored
File diff suppressed because one or more lines are too long
@ -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;
|
||||||
|
4
css/pico.classless.conditional.amber.min.css
vendored
4
css/pico.classless.conditional.amber.min.css
vendored
File diff suppressed because one or more lines are too long
@ -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;
|
||||||
|
4
css/pico.classless.conditional.blue.min.css
vendored
4
css/pico.classless.conditional.blue.min.css
vendored
File diff suppressed because one or more lines are too long
@ -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;
|
||||||
|
4
css/pico.classless.conditional.cyan.min.css
vendored
4
css/pico.classless.conditional.cyan.min.css
vendored
File diff suppressed because one or more lines are too long
@ -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
@ -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;
|
||||||
|
4
css/pico.classless.conditional.green.min.css
vendored
4
css/pico.classless.conditional.green.min.css
vendored
File diff suppressed because one or more lines are too long
@ -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;
|
||||||
|
4
css/pico.classless.conditional.grey.min.css
vendored
4
css/pico.classless.conditional.grey.min.css
vendored
File diff suppressed because one or more lines are too long
@ -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
@ -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;
|
||||||
|
4
css/pico.classless.conditional.jade.min.css
vendored
4
css/pico.classless.conditional.jade.min.css
vendored
File diff suppressed because one or more lines are too long
@ -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;
|
||||||
|
4
css/pico.classless.conditional.lime.min.css
vendored
4
css/pico.classless.conditional.lime.min.css
vendored
File diff suppressed because one or more lines are too long
@ -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
@ -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;
|
||||||
|
4
css/pico.classless.conditional.pink.min.css
vendored
4
css/pico.classless.conditional.pink.min.css
vendored
File diff suppressed because one or more lines are too long
@ -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
@ -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
@ -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;
|
||||||
|
4
css/pico.classless.conditional.red.min.css
vendored
4
css/pico.classless.conditional.red.min.css
vendored
File diff suppressed because one or more lines are too long
@ -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;
|
||||||
|
4
css/pico.classless.conditional.sand.min.css
vendored
4
css/pico.classless.conditional.sand.min.css
vendored
File diff suppressed because one or more lines are too long
@ -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;
|
||||||
|
4
css/pico.classless.conditional.slate.min.css
vendored
4
css/pico.classless.conditional.slate.min.css
vendored
File diff suppressed because one or more lines are too long
@ -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
@ -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
@ -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;
|
||||||
|
4
css/pico.classless.conditional.zinc.min.css
vendored
4
css/pico.classless.conditional.zinc.min.css
vendored
File diff suppressed because one or more lines are too long
@ -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;
|
||||||
|
@ -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;
|
||||||
|
4
css/pico.classless.cyan.min.css
vendored
4
css/pico.classless.cyan.min.css
vendored
File diff suppressed because one or more lines are too long
@ -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;
|
||||||
|
4
css/pico.classless.fuchsia.min.css
vendored
4
css/pico.classless.fuchsia.min.css
vendored
File diff suppressed because one or more lines are too long
@ -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;
|
||||||
|
4
css/pico.classless.green.min.css
vendored
4
css/pico.classless.green.min.css
vendored
File diff suppressed because one or more lines are too long
@ -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;
|
||||||
|
4
css/pico.classless.grey.min.css
vendored
4
css/pico.classless.grey.min.css
vendored
File diff suppressed because one or more lines are too long
@ -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;
|
||||||
|
4
css/pico.classless.indigo.min.css
vendored
4
css/pico.classless.indigo.min.css
vendored
File diff suppressed because one or more lines are too long
@ -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;
|
||||||
|
4
css/pico.classless.jade.min.css
vendored
4
css/pico.classless.jade.min.css
vendored
File diff suppressed because one or more lines are too long
@ -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;
|
||||||
|
4
css/pico.classless.lime.min.css
vendored
4
css/pico.classless.lime.min.css
vendored
File diff suppressed because one or more lines are too long
4
css/pico.classless.min.css
vendored
4
css/pico.classless.min.css
vendored
File diff suppressed because one or more lines are too long
@ -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;
|
||||||
|
4
css/pico.classless.orange.min.css
vendored
4
css/pico.classless.orange.min.css
vendored
File diff suppressed because one or more lines are too long
@ -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;
|
||||||
|
4
css/pico.classless.pink.min.css
vendored
4
css/pico.classless.pink.min.css
vendored
File diff suppressed because one or more lines are too long
@ -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;
|
||||||
|
4
css/pico.classless.pumpkin.min.css
vendored
4
css/pico.classless.pumpkin.min.css
vendored
File diff suppressed because one or more lines are too long
@ -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;
|
||||||
|
4
css/pico.classless.purple.min.css
vendored
4
css/pico.classless.purple.min.css
vendored
File diff suppressed because one or more lines are too long
@ -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;
|
||||||
|
4
css/pico.classless.red.min.css
vendored
4
css/pico.classless.red.min.css
vendored
File diff suppressed because one or more lines are too long
@ -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;
|
||||||
|
4
css/pico.classless.sand.min.css
vendored
4
css/pico.classless.sand.min.css
vendored
File diff suppressed because one or more lines are too long
@ -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;
|
||||||
|
4
css/pico.classless.slate.min.css
vendored
4
css/pico.classless.slate.min.css
vendored
File diff suppressed because one or more lines are too long
@ -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;
|
||||||
|
4
css/pico.classless.violet.min.css
vendored
4
css/pico.classless.violet.min.css
vendored
File diff suppressed because one or more lines are too long
@ -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;
|
||||||
|
4
css/pico.classless.yellow.min.css
vendored
4
css/pico.classless.yellow.min.css
vendored
File diff suppressed because one or more lines are too long
@ -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;
|
||||||
|
4
css/pico.classless.zinc.min.css
vendored
4
css/pico.classless.zinc.min.css
vendored
File diff suppressed because one or more lines are too long
@ -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 {
|
||||||
|
2
css/pico.colors.min.css
vendored
2
css/pico.colors.min.css
vendored
File diff suppressed because one or more lines are too long
@ -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;
|
||||||
|
4
css/pico.conditional.amber.min.css
vendored
4
css/pico.conditional.amber.min.css
vendored
File diff suppressed because one or more lines are too long
@ -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;
|
||||||
|
4
css/pico.conditional.blue.min.css
vendored
4
css/pico.conditional.blue.min.css
vendored
File diff suppressed because one or more lines are too long
@ -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;
|
||||||
|
@ -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;
|
||||||
|
4
css/pico.conditional.cyan.min.css
vendored
4
css/pico.conditional.cyan.min.css
vendored
File diff suppressed because one or more lines are too long
@ -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;
|
||||||
|
4
css/pico.conditional.fuchsia.min.css
vendored
4
css/pico.conditional.fuchsia.min.css
vendored
File diff suppressed because one or more lines are too long
@ -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;
|
||||||
|
4
css/pico.conditional.green.min.css
vendored
4
css/pico.conditional.green.min.css
vendored
File diff suppressed because one or more lines are too long
@ -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;
|
||||||
|
4
css/pico.conditional.grey.min.css
vendored
4
css/pico.conditional.grey.min.css
vendored
File diff suppressed because one or more lines are too long
@ -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;
|
||||||
|
4
css/pico.conditional.indigo.min.css
vendored
4
css/pico.conditional.indigo.min.css
vendored
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
Loading…
x
Reference in New Issue
Block a user