mirror of
https://github.com/picocss/pico.git
synced 2025-04-24 02:16:15 -04:00
Merged RTL pull request into css files, and updated docs for hamburger menu.
Will create new versioning soon, I have something else I'd like to include.
This commit is contained in:
parent
828d1f3143
commit
b7100d22d5
239 changed files with 5355 additions and 838 deletions
|
@ -2818,7 +2818,6 @@ details summary {
|
|||
line-height: 1rem;
|
||||
list-style-type: none;
|
||||
cursor: pointer;
|
||||
transition: color var(--pico-transition);
|
||||
}
|
||||
details summary:not([role]) {
|
||||
color: var(--pico-accordion-close-summary-color);
|
||||
|
@ -2844,7 +2843,6 @@ details summary::after {
|
|||
background-size: 1rem auto;
|
||||
background-repeat: no-repeat;
|
||||
content: "";
|
||||
transition: transform var(--pico-transition);
|
||||
}
|
||||
details summary:focus {
|
||||
outline: none;
|
||||
|
@ -2870,17 +2868,17 @@ details[open] > summary {
|
|||
details[open] > summary:not([role]):not(:focus) {
|
||||
color: var(--pico-accordion-open-summary-color);
|
||||
}
|
||||
details[open] > summary::after {
|
||||
transform: rotate(0);
|
||||
}
|
||||
|
||||
[dir=rtl] details summary {
|
||||
text-align: right;
|
||||
}
|
||||
[dir=rtl] details summary::after {
|
||||
float: left;
|
||||
transform: rotate(90deg);
|
||||
background-position: left center;
|
||||
}
|
||||
[dir=rtl] details[open] > summary::after {
|
||||
transform: rotate(0);
|
||||
}
|
||||
|
||||
/**
|
||||
* Card (<article>, role="article")
|
||||
|
@ -3275,6 +3273,46 @@ label > details.dropdown {
|
|||
border-bottom-right-radius: 5rem;
|
||||
}
|
||||
|
||||
[dir=rtl] [role=search] > *:not(:first-child),
|
||||
[dir=rtl] [role=search] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] [role=search] select:not(:first-child),
|
||||
[dir=rtl] [role=search] label:not(:first-child),
|
||||
[dir=rtl] [role=group] > *:not(:first-child),
|
||||
[dir=rtl] [role=group] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] [role=group] select:not(:first-child),
|
||||
[dir=rtl] [role=group] label:not(:first-child) {
|
||||
margin-right: 0;
|
||||
margin-left: auto;
|
||||
border-top-right-radius: 0;
|
||||
border-top-left-radius: var(--pico-border-radius);
|
||||
border-bottom-right-radius: 0;
|
||||
border-bottom-left-radius: var(--pico-border-radius);
|
||||
}
|
||||
[dir=rtl] [role=search] > *:not(:last-child),
|
||||
[dir=rtl] [role=search] input:not([type=checkbox], [type=radio]):not(:last-child),
|
||||
[dir=rtl] [role=search] select:not(:last-child),
|
||||
[dir=rtl] [role=search] label:not(:last-child),
|
||||
[dir=rtl] [role=group] > *:not(:last-child),
|
||||
[dir=rtl] [role=group] input:not([type=checkbox], [type=radio]):not(:last-child),
|
||||
[dir=rtl] [role=group] select:not(:last-child),
|
||||
[dir=rtl] [role=group] label:not(:last-child) {
|
||||
border-top-right-radius: var(--pico-border-radius);
|
||||
border-top-left-radius: 0;
|
||||
border-bottom-right-radius: var(--pico-border-radius);
|
||||
border-bottom-left-radius: 0;
|
||||
}
|
||||
[dir=rtl] button:not(:first-child),
|
||||
[dir=rtl] [type=submit]:not(:first-child),
|
||||
[dir=rtl] [type=reset]:not(:first-child),
|
||||
[dir=rtl] [type=button]:not(:first-child),
|
||||
[dir=rtl] [role=button]:not(:first-child),
|
||||
[dir=rtl] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] select:not(:first-child),
|
||||
[dir=rtl] label:not(:first-child) {
|
||||
margin-right: calc(var(--pico-border-width) * -1);
|
||||
margin-left: auto;
|
||||
}
|
||||
|
||||
/**
|
||||
* Loading ([aria-busy=true])
|
||||
*/
|
||||
|
|
2
css/pico.amber.min.css
vendored
2
css/pico.amber.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -2818,7 +2818,6 @@ details summary {
|
|||
line-height: 1rem;
|
||||
list-style-type: none;
|
||||
cursor: pointer;
|
||||
transition: color var(--pico-transition);
|
||||
}
|
||||
details summary:not([role]) {
|
||||
color: var(--pico-accordion-close-summary-color);
|
||||
|
@ -2844,7 +2843,6 @@ details summary::after {
|
|||
background-size: 1rem auto;
|
||||
background-repeat: no-repeat;
|
||||
content: "";
|
||||
transition: transform var(--pico-transition);
|
||||
}
|
||||
details summary:focus {
|
||||
outline: none;
|
||||
|
@ -2870,17 +2868,17 @@ details[open] > summary {
|
|||
details[open] > summary:not([role]):not(:focus) {
|
||||
color: var(--pico-accordion-open-summary-color);
|
||||
}
|
||||
details[open] > summary::after {
|
||||
transform: rotate(0);
|
||||
}
|
||||
|
||||
[dir=rtl] details summary {
|
||||
text-align: right;
|
||||
}
|
||||
[dir=rtl] details summary::after {
|
||||
float: left;
|
||||
transform: rotate(90deg);
|
||||
background-position: left center;
|
||||
}
|
||||
[dir=rtl] details[open] > summary::after {
|
||||
transform: rotate(0);
|
||||
}
|
||||
|
||||
/**
|
||||
* Card (<article>, role="article")
|
||||
|
@ -3275,6 +3273,46 @@ label > details.dropdown {
|
|||
border-bottom-right-radius: 5rem;
|
||||
}
|
||||
|
||||
[dir=rtl] [role=search] > *:not(:first-child),
|
||||
[dir=rtl] [role=search] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] [role=search] select:not(:first-child),
|
||||
[dir=rtl] [role=search] label:not(:first-child),
|
||||
[dir=rtl] [role=group] > *:not(:first-child),
|
||||
[dir=rtl] [role=group] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] [role=group] select:not(:first-child),
|
||||
[dir=rtl] [role=group] label:not(:first-child) {
|
||||
margin-right: 0;
|
||||
margin-left: auto;
|
||||
border-top-right-radius: 0;
|
||||
border-top-left-radius: var(--pico-border-radius);
|
||||
border-bottom-right-radius: 0;
|
||||
border-bottom-left-radius: var(--pico-border-radius);
|
||||
}
|
||||
[dir=rtl] [role=search] > *:not(:last-child),
|
||||
[dir=rtl] [role=search] input:not([type=checkbox], [type=radio]):not(:last-child),
|
||||
[dir=rtl] [role=search] select:not(:last-child),
|
||||
[dir=rtl] [role=search] label:not(:last-child),
|
||||
[dir=rtl] [role=group] > *:not(:last-child),
|
||||
[dir=rtl] [role=group] input:not([type=checkbox], [type=radio]):not(:last-child),
|
||||
[dir=rtl] [role=group] select:not(:last-child),
|
||||
[dir=rtl] [role=group] label:not(:last-child) {
|
||||
border-top-right-radius: var(--pico-border-radius);
|
||||
border-top-left-radius: 0;
|
||||
border-bottom-right-radius: var(--pico-border-radius);
|
||||
border-bottom-left-radius: 0;
|
||||
}
|
||||
[dir=rtl] button:not(:first-child),
|
||||
[dir=rtl] [type=submit]:not(:first-child),
|
||||
[dir=rtl] [type=reset]:not(:first-child),
|
||||
[dir=rtl] [type=button]:not(:first-child),
|
||||
[dir=rtl] [role=button]:not(:first-child),
|
||||
[dir=rtl] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] select:not(:first-child),
|
||||
[dir=rtl] label:not(:first-child) {
|
||||
margin-right: calc(var(--pico-border-width) * -1);
|
||||
margin-left: auto;
|
||||
}
|
||||
|
||||
/**
|
||||
* Loading ([aria-busy=true])
|
||||
*/
|
||||
|
|
2
css/pico.blue.min.css
vendored
2
css/pico.blue.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -2137,7 +2137,6 @@ details summary {
|
|||
line-height: 1rem;
|
||||
list-style-type: none;
|
||||
cursor: pointer;
|
||||
transition: color var(--pico-transition);
|
||||
}
|
||||
details summary:not([role]) {
|
||||
color: var(--pico-accordion-close-summary-color);
|
||||
|
@ -2163,7 +2162,6 @@ details summary::after {
|
|||
background-size: 1rem auto;
|
||||
background-repeat: no-repeat;
|
||||
content: "";
|
||||
transition: transform var(--pico-transition);
|
||||
}
|
||||
details summary:focus {
|
||||
outline: none;
|
||||
|
@ -2189,17 +2187,17 @@ details[open] > summary {
|
|||
details[open] > summary:not([role]):not(:focus) {
|
||||
color: var(--pico-accordion-open-summary-color);
|
||||
}
|
||||
details[open] > summary::after {
|
||||
transform: rotate(0);
|
||||
}
|
||||
|
||||
[dir=rtl] details summary {
|
||||
text-align: right;
|
||||
}
|
||||
[dir=rtl] details summary::after {
|
||||
float: left;
|
||||
transform: rotate(90deg);
|
||||
background-position: left center;
|
||||
}
|
||||
[dir=rtl] details[open] > summary::after {
|
||||
transform: rotate(0);
|
||||
}
|
||||
|
||||
/**
|
||||
* Card (<article>, role="article")
|
||||
|
@ -2434,6 +2432,46 @@ article > footer [role=group]:has(+ [type=hidden]),
|
|||
border-bottom-right-radius: 5rem;
|
||||
}
|
||||
|
||||
[dir=rtl] [role=search] > *:not(:first-child),
|
||||
[dir=rtl] [role=search] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] [role=search] select:not(:first-child),
|
||||
[dir=rtl] [role=search] label:not(:first-child),
|
||||
[dir=rtl] [role=group] > *:not(:first-child),
|
||||
[dir=rtl] [role=group] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] [role=group] select:not(:first-child),
|
||||
[dir=rtl] [role=group] label:not(:first-child) {
|
||||
margin-right: 0;
|
||||
margin-left: auto;
|
||||
border-top-right-radius: 0;
|
||||
border-top-left-radius: var(--pico-border-radius);
|
||||
border-bottom-right-radius: 0;
|
||||
border-bottom-left-radius: var(--pico-border-radius);
|
||||
}
|
||||
[dir=rtl] [role=search] > *:not(:last-child),
|
||||
[dir=rtl] [role=search] input:not([type=checkbox], [type=radio]):not(:last-child),
|
||||
[dir=rtl] [role=search] select:not(:last-child),
|
||||
[dir=rtl] [role=search] label:not(:last-child),
|
||||
[dir=rtl] [role=group] > *:not(:last-child),
|
||||
[dir=rtl] [role=group] input:not([type=checkbox], [type=radio]):not(:last-child),
|
||||
[dir=rtl] [role=group] select:not(:last-child),
|
||||
[dir=rtl] [role=group] label:not(:last-child) {
|
||||
border-top-right-radius: var(--pico-border-radius);
|
||||
border-top-left-radius: 0;
|
||||
border-bottom-right-radius: var(--pico-border-radius);
|
||||
border-bottom-left-radius: 0;
|
||||
}
|
||||
[dir=rtl] button:not(:first-child),
|
||||
[dir=rtl] [type=submit]:not(:first-child),
|
||||
[dir=rtl] [type=reset]:not(:first-child),
|
||||
[dir=rtl] [type=button]:not(:first-child),
|
||||
[dir=rtl] [role=button]:not(:first-child),
|
||||
[dir=rtl] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] select:not(:first-child),
|
||||
[dir=rtl] label:not(:first-child) {
|
||||
margin-right: calc(var(--pico-border-width) * -1);
|
||||
margin-left: auto;
|
||||
}
|
||||
|
||||
/**
|
||||
* Loading ([aria-busy=true])
|
||||
*/
|
||||
|
|
2
css/pico.classless.amber.min.css
vendored
2
css/pico.classless.amber.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -2137,7 +2137,6 @@ details summary {
|
|||
line-height: 1rem;
|
||||
list-style-type: none;
|
||||
cursor: pointer;
|
||||
transition: color var(--pico-transition);
|
||||
}
|
||||
details summary:not([role]) {
|
||||
color: var(--pico-accordion-close-summary-color);
|
||||
|
@ -2163,7 +2162,6 @@ details summary::after {
|
|||
background-size: 1rem auto;
|
||||
background-repeat: no-repeat;
|
||||
content: "";
|
||||
transition: transform var(--pico-transition);
|
||||
}
|
||||
details summary:focus {
|
||||
outline: none;
|
||||
|
@ -2189,17 +2187,17 @@ details[open] > summary {
|
|||
details[open] > summary:not([role]):not(:focus) {
|
||||
color: var(--pico-accordion-open-summary-color);
|
||||
}
|
||||
details[open] > summary::after {
|
||||
transform: rotate(0);
|
||||
}
|
||||
|
||||
[dir=rtl] details summary {
|
||||
text-align: right;
|
||||
}
|
||||
[dir=rtl] details summary::after {
|
||||
float: left;
|
||||
transform: rotate(90deg);
|
||||
background-position: left center;
|
||||
}
|
||||
[dir=rtl] details[open] > summary::after {
|
||||
transform: rotate(0);
|
||||
}
|
||||
|
||||
/**
|
||||
* Card (<article>, role="article")
|
||||
|
@ -2434,6 +2432,46 @@ article > footer [role=group]:has(+ [type=hidden]),
|
|||
border-bottom-right-radius: 5rem;
|
||||
}
|
||||
|
||||
[dir=rtl] [role=search] > *:not(:first-child),
|
||||
[dir=rtl] [role=search] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] [role=search] select:not(:first-child),
|
||||
[dir=rtl] [role=search] label:not(:first-child),
|
||||
[dir=rtl] [role=group] > *:not(:first-child),
|
||||
[dir=rtl] [role=group] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] [role=group] select:not(:first-child),
|
||||
[dir=rtl] [role=group] label:not(:first-child) {
|
||||
margin-right: 0;
|
||||
margin-left: auto;
|
||||
border-top-right-radius: 0;
|
||||
border-top-left-radius: var(--pico-border-radius);
|
||||
border-bottom-right-radius: 0;
|
||||
border-bottom-left-radius: var(--pico-border-radius);
|
||||
}
|
||||
[dir=rtl] [role=search] > *:not(:last-child),
|
||||
[dir=rtl] [role=search] input:not([type=checkbox], [type=radio]):not(:last-child),
|
||||
[dir=rtl] [role=search] select:not(:last-child),
|
||||
[dir=rtl] [role=search] label:not(:last-child),
|
||||
[dir=rtl] [role=group] > *:not(:last-child),
|
||||
[dir=rtl] [role=group] input:not([type=checkbox], [type=radio]):not(:last-child),
|
||||
[dir=rtl] [role=group] select:not(:last-child),
|
||||
[dir=rtl] [role=group] label:not(:last-child) {
|
||||
border-top-right-radius: var(--pico-border-radius);
|
||||
border-top-left-radius: 0;
|
||||
border-bottom-right-radius: var(--pico-border-radius);
|
||||
border-bottom-left-radius: 0;
|
||||
}
|
||||
[dir=rtl] button:not(:first-child),
|
||||
[dir=rtl] [type=submit]:not(:first-child),
|
||||
[dir=rtl] [type=reset]:not(:first-child),
|
||||
[dir=rtl] [type=button]:not(:first-child),
|
||||
[dir=rtl] [role=button]:not(:first-child),
|
||||
[dir=rtl] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] select:not(:first-child),
|
||||
[dir=rtl] label:not(:first-child) {
|
||||
margin-right: calc(var(--pico-border-width) * -1);
|
||||
margin-left: auto;
|
||||
}
|
||||
|
||||
/**
|
||||
* Loading ([aria-busy=true])
|
||||
*/
|
||||
|
|
2
css/pico.classless.blue.min.css
vendored
2
css/pico.classless.blue.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -2137,7 +2137,6 @@ main {
|
|||
line-height: 1rem;
|
||||
list-style-type: none;
|
||||
cursor: pointer;
|
||||
transition: color var(--pico-transition);
|
||||
}
|
||||
.pico details summary:not([role]) {
|
||||
color: var(--pico-accordion-close-summary-color);
|
||||
|
@ -2163,7 +2162,6 @@ main {
|
|||
background-size: 1rem auto;
|
||||
background-repeat: no-repeat;
|
||||
content: "";
|
||||
transition: transform var(--pico-transition);
|
||||
}
|
||||
.pico details summary:focus {
|
||||
outline: none;
|
||||
|
@ -2189,17 +2187,17 @@ main {
|
|||
.pico details[open] > summary:not([role]):not(:focus) {
|
||||
color: var(--pico-accordion-open-summary-color);
|
||||
}
|
||||
.pico details[open] > summary::after {
|
||||
transform: rotate(0);
|
||||
}
|
||||
|
||||
[dir=rtl] .pico details summary {
|
||||
text-align: right;
|
||||
}
|
||||
[dir=rtl] .pico details summary::after {
|
||||
float: left;
|
||||
transform: rotate(90deg);
|
||||
background-position: left center;
|
||||
}
|
||||
[dir=rtl] .pico details[open] > summary::after {
|
||||
transform: rotate(0);
|
||||
}
|
||||
|
||||
/**
|
||||
* Card (<article>, role="article")
|
||||
|
@ -2434,6 +2432,46 @@ main {
|
|||
border-bottom-right-radius: 5rem;
|
||||
}
|
||||
|
||||
[dir=rtl] .pico [role=search] > *:not(:first-child),
|
||||
[dir=rtl] .pico [role=search] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] .pico [role=search] select:not(:first-child),
|
||||
[dir=rtl] .pico [role=search] label:not(:first-child),
|
||||
[dir=rtl] .pico [role=group] > *:not(:first-child),
|
||||
[dir=rtl] .pico [role=group] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] .pico [role=group] select:not(:first-child),
|
||||
[dir=rtl] .pico [role=group] label:not(:first-child) {
|
||||
margin-right: 0;
|
||||
margin-left: auto;
|
||||
border-top-right-radius: 0;
|
||||
border-top-left-radius: var(--pico-border-radius);
|
||||
border-bottom-right-radius: 0;
|
||||
border-bottom-left-radius: var(--pico-border-radius);
|
||||
}
|
||||
[dir=rtl] .pico [role=search] > *:not(:last-child),
|
||||
[dir=rtl] .pico [role=search] input:not([type=checkbox], [type=radio]):not(:last-child),
|
||||
[dir=rtl] .pico [role=search] select:not(:last-child),
|
||||
[dir=rtl] .pico [role=search] label:not(:last-child),
|
||||
[dir=rtl] .pico [role=group] > *:not(:last-child),
|
||||
[dir=rtl] .pico [role=group] input:not([type=checkbox], [type=radio]):not(:last-child),
|
||||
[dir=rtl] .pico [role=group] select:not(:last-child),
|
||||
[dir=rtl] .pico [role=group] label:not(:last-child) {
|
||||
border-top-right-radius: var(--pico-border-radius);
|
||||
border-top-left-radius: 0;
|
||||
border-bottom-right-radius: var(--pico-border-radius);
|
||||
border-bottom-left-radius: 0;
|
||||
}
|
||||
[dir=rtl] button:not(:first-child),
|
||||
[dir=rtl] [type=submit]:not(:first-child),
|
||||
[dir=rtl] [type=reset]:not(:first-child),
|
||||
[dir=rtl] [type=button]:not(:first-child),
|
||||
[dir=rtl] [role=button]:not(:first-child),
|
||||
[dir=rtl] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] select:not(:first-child),
|
||||
[dir=rtl] label:not(:first-child) {
|
||||
margin-right: calc(var(--pico-border-width) * -1);
|
||||
margin-left: auto;
|
||||
}
|
||||
|
||||
/**
|
||||
* Loading ([aria-busy=true])
|
||||
*/
|
||||
|
|
2
css/pico.classless.conditional.amber.min.css
vendored
2
css/pico.classless.conditional.amber.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -2137,7 +2137,6 @@ main {
|
|||
line-height: 1rem;
|
||||
list-style-type: none;
|
||||
cursor: pointer;
|
||||
transition: color var(--pico-transition);
|
||||
}
|
||||
.pico details summary:not([role]) {
|
||||
color: var(--pico-accordion-close-summary-color);
|
||||
|
@ -2163,7 +2162,6 @@ main {
|
|||
background-size: 1rem auto;
|
||||
background-repeat: no-repeat;
|
||||
content: "";
|
||||
transition: transform var(--pico-transition);
|
||||
}
|
||||
.pico details summary:focus {
|
||||
outline: none;
|
||||
|
@ -2189,17 +2187,17 @@ main {
|
|||
.pico details[open] > summary:not([role]):not(:focus) {
|
||||
color: var(--pico-accordion-open-summary-color);
|
||||
}
|
||||
.pico details[open] > summary::after {
|
||||
transform: rotate(0);
|
||||
}
|
||||
|
||||
[dir=rtl] .pico details summary {
|
||||
text-align: right;
|
||||
}
|
||||
[dir=rtl] .pico details summary::after {
|
||||
float: left;
|
||||
transform: rotate(90deg);
|
||||
background-position: left center;
|
||||
}
|
||||
[dir=rtl] .pico details[open] > summary::after {
|
||||
transform: rotate(0);
|
||||
}
|
||||
|
||||
/**
|
||||
* Card (<article>, role="article")
|
||||
|
@ -2434,6 +2432,46 @@ main {
|
|||
border-bottom-right-radius: 5rem;
|
||||
}
|
||||
|
||||
[dir=rtl] .pico [role=search] > *:not(:first-child),
|
||||
[dir=rtl] .pico [role=search] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] .pico [role=search] select:not(:first-child),
|
||||
[dir=rtl] .pico [role=search] label:not(:first-child),
|
||||
[dir=rtl] .pico [role=group] > *:not(:first-child),
|
||||
[dir=rtl] .pico [role=group] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] .pico [role=group] select:not(:first-child),
|
||||
[dir=rtl] .pico [role=group] label:not(:first-child) {
|
||||
margin-right: 0;
|
||||
margin-left: auto;
|
||||
border-top-right-radius: 0;
|
||||
border-top-left-radius: var(--pico-border-radius);
|
||||
border-bottom-right-radius: 0;
|
||||
border-bottom-left-radius: var(--pico-border-radius);
|
||||
}
|
||||
[dir=rtl] .pico [role=search] > *:not(:last-child),
|
||||
[dir=rtl] .pico [role=search] input:not([type=checkbox], [type=radio]):not(:last-child),
|
||||
[dir=rtl] .pico [role=search] select:not(:last-child),
|
||||
[dir=rtl] .pico [role=search] label:not(:last-child),
|
||||
[dir=rtl] .pico [role=group] > *:not(:last-child),
|
||||
[dir=rtl] .pico [role=group] input:not([type=checkbox], [type=radio]):not(:last-child),
|
||||
[dir=rtl] .pico [role=group] select:not(:last-child),
|
||||
[dir=rtl] .pico [role=group] label:not(:last-child) {
|
||||
border-top-right-radius: var(--pico-border-radius);
|
||||
border-top-left-radius: 0;
|
||||
border-bottom-right-radius: var(--pico-border-radius);
|
||||
border-bottom-left-radius: 0;
|
||||
}
|
||||
[dir=rtl] button:not(:first-child),
|
||||
[dir=rtl] [type=submit]:not(:first-child),
|
||||
[dir=rtl] [type=reset]:not(:first-child),
|
||||
[dir=rtl] [type=button]:not(:first-child),
|
||||
[dir=rtl] [role=button]:not(:first-child),
|
||||
[dir=rtl] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] select:not(:first-child),
|
||||
[dir=rtl] label:not(:first-child) {
|
||||
margin-right: calc(var(--pico-border-width) * -1);
|
||||
margin-left: auto;
|
||||
}
|
||||
|
||||
/**
|
||||
* Loading ([aria-busy=true])
|
||||
*/
|
||||
|
|
2
css/pico.classless.conditional.blue.min.css
vendored
2
css/pico.classless.conditional.blue.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -2137,7 +2137,6 @@ main {
|
|||
line-height: 1rem;
|
||||
list-style-type: none;
|
||||
cursor: pointer;
|
||||
transition: color var(--pico-transition);
|
||||
}
|
||||
.pico details summary:not([role]) {
|
||||
color: var(--pico-accordion-close-summary-color);
|
||||
|
@ -2163,7 +2162,6 @@ main {
|
|||
background-size: 1rem auto;
|
||||
background-repeat: no-repeat;
|
||||
content: "";
|
||||
transition: transform var(--pico-transition);
|
||||
}
|
||||
.pico details summary:focus {
|
||||
outline: none;
|
||||
|
@ -2189,17 +2187,17 @@ main {
|
|||
.pico details[open] > summary:not([role]):not(:focus) {
|
||||
color: var(--pico-accordion-open-summary-color);
|
||||
}
|
||||
.pico details[open] > summary::after {
|
||||
transform: rotate(0);
|
||||
}
|
||||
|
||||
[dir=rtl] .pico details summary {
|
||||
text-align: right;
|
||||
}
|
||||
[dir=rtl] .pico details summary::after {
|
||||
float: left;
|
||||
transform: rotate(90deg);
|
||||
background-position: left center;
|
||||
}
|
||||
[dir=rtl] .pico details[open] > summary::after {
|
||||
transform: rotate(0);
|
||||
}
|
||||
|
||||
/**
|
||||
* Card (<article>, role="article")
|
||||
|
@ -2434,6 +2432,46 @@ main {
|
|||
border-bottom-right-radius: 5rem;
|
||||
}
|
||||
|
||||
[dir=rtl] .pico [role=search] > *:not(:first-child),
|
||||
[dir=rtl] .pico [role=search] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] .pico [role=search] select:not(:first-child),
|
||||
[dir=rtl] .pico [role=search] label:not(:first-child),
|
||||
[dir=rtl] .pico [role=group] > *:not(:first-child),
|
||||
[dir=rtl] .pico [role=group] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] .pico [role=group] select:not(:first-child),
|
||||
[dir=rtl] .pico [role=group] label:not(:first-child) {
|
||||
margin-right: 0;
|
||||
margin-left: auto;
|
||||
border-top-right-radius: 0;
|
||||
border-top-left-radius: var(--pico-border-radius);
|
||||
border-bottom-right-radius: 0;
|
||||
border-bottom-left-radius: var(--pico-border-radius);
|
||||
}
|
||||
[dir=rtl] .pico [role=search] > *:not(:last-child),
|
||||
[dir=rtl] .pico [role=search] input:not([type=checkbox], [type=radio]):not(:last-child),
|
||||
[dir=rtl] .pico [role=search] select:not(:last-child),
|
||||
[dir=rtl] .pico [role=search] label:not(:last-child),
|
||||
[dir=rtl] .pico [role=group] > *:not(:last-child),
|
||||
[dir=rtl] .pico [role=group] input:not([type=checkbox], [type=radio]):not(:last-child),
|
||||
[dir=rtl] .pico [role=group] select:not(:last-child),
|
||||
[dir=rtl] .pico [role=group] label:not(:last-child) {
|
||||
border-top-right-radius: var(--pico-border-radius);
|
||||
border-top-left-radius: 0;
|
||||
border-bottom-right-radius: var(--pico-border-radius);
|
||||
border-bottom-left-radius: 0;
|
||||
}
|
||||
[dir=rtl] button:not(:first-child),
|
||||
[dir=rtl] [type=submit]:not(:first-child),
|
||||
[dir=rtl] [type=reset]:not(:first-child),
|
||||
[dir=rtl] [type=button]:not(:first-child),
|
||||
[dir=rtl] [role=button]:not(:first-child),
|
||||
[dir=rtl] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] select:not(:first-child),
|
||||
[dir=rtl] label:not(:first-child) {
|
||||
margin-right: calc(var(--pico-border-width) * -1);
|
||||
margin-left: auto;
|
||||
}
|
||||
|
||||
/**
|
||||
* Loading ([aria-busy=true])
|
||||
*/
|
||||
|
|
2
css/pico.classless.conditional.cyan.min.css
vendored
2
css/pico.classless.conditional.cyan.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -2137,7 +2137,6 @@ main {
|
|||
line-height: 1rem;
|
||||
list-style-type: none;
|
||||
cursor: pointer;
|
||||
transition: color var(--pico-transition);
|
||||
}
|
||||
.pico details summary:not([role]) {
|
||||
color: var(--pico-accordion-close-summary-color);
|
||||
|
@ -2163,7 +2162,6 @@ main {
|
|||
background-size: 1rem auto;
|
||||
background-repeat: no-repeat;
|
||||
content: "";
|
||||
transition: transform var(--pico-transition);
|
||||
}
|
||||
.pico details summary:focus {
|
||||
outline: none;
|
||||
|
@ -2189,17 +2187,17 @@ main {
|
|||
.pico details[open] > summary:not([role]):not(:focus) {
|
||||
color: var(--pico-accordion-open-summary-color);
|
||||
}
|
||||
.pico details[open] > summary::after {
|
||||
transform: rotate(0);
|
||||
}
|
||||
|
||||
[dir=rtl] .pico details summary {
|
||||
text-align: right;
|
||||
}
|
||||
[dir=rtl] .pico details summary::after {
|
||||
float: left;
|
||||
transform: rotate(90deg);
|
||||
background-position: left center;
|
||||
}
|
||||
[dir=rtl] .pico details[open] > summary::after {
|
||||
transform: rotate(0);
|
||||
}
|
||||
|
||||
/**
|
||||
* Card (<article>, role="article")
|
||||
|
@ -2434,6 +2432,46 @@ main {
|
|||
border-bottom-right-radius: 5rem;
|
||||
}
|
||||
|
||||
[dir=rtl] .pico [role=search] > *:not(:first-child),
|
||||
[dir=rtl] .pico [role=search] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] .pico [role=search] select:not(:first-child),
|
||||
[dir=rtl] .pico [role=search] label:not(:first-child),
|
||||
[dir=rtl] .pico [role=group] > *:not(:first-child),
|
||||
[dir=rtl] .pico [role=group] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] .pico [role=group] select:not(:first-child),
|
||||
[dir=rtl] .pico [role=group] label:not(:first-child) {
|
||||
margin-right: 0;
|
||||
margin-left: auto;
|
||||
border-top-right-radius: 0;
|
||||
border-top-left-radius: var(--pico-border-radius);
|
||||
border-bottom-right-radius: 0;
|
||||
border-bottom-left-radius: var(--pico-border-radius);
|
||||
}
|
||||
[dir=rtl] .pico [role=search] > *:not(:last-child),
|
||||
[dir=rtl] .pico [role=search] input:not([type=checkbox], [type=radio]):not(:last-child),
|
||||
[dir=rtl] .pico [role=search] select:not(:last-child),
|
||||
[dir=rtl] .pico [role=search] label:not(:last-child),
|
||||
[dir=rtl] .pico [role=group] > *:not(:last-child),
|
||||
[dir=rtl] .pico [role=group] input:not([type=checkbox], [type=radio]):not(:last-child),
|
||||
[dir=rtl] .pico [role=group] select:not(:last-child),
|
||||
[dir=rtl] .pico [role=group] label:not(:last-child) {
|
||||
border-top-right-radius: var(--pico-border-radius);
|
||||
border-top-left-radius: 0;
|
||||
border-bottom-right-radius: var(--pico-border-radius);
|
||||
border-bottom-left-radius: 0;
|
||||
}
|
||||
[dir=rtl] button:not(:first-child),
|
||||
[dir=rtl] [type=submit]:not(:first-child),
|
||||
[dir=rtl] [type=reset]:not(:first-child),
|
||||
[dir=rtl] [type=button]:not(:first-child),
|
||||
[dir=rtl] [role=button]:not(:first-child),
|
||||
[dir=rtl] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] select:not(:first-child),
|
||||
[dir=rtl] label:not(:first-child) {
|
||||
margin-right: calc(var(--pico-border-width) * -1);
|
||||
margin-left: auto;
|
||||
}
|
||||
|
||||
/**
|
||||
* Loading ([aria-busy=true])
|
||||
*/
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -2137,7 +2137,6 @@ main {
|
|||
line-height: 1rem;
|
||||
list-style-type: none;
|
||||
cursor: pointer;
|
||||
transition: color var(--pico-transition);
|
||||
}
|
||||
.pico details summary:not([role]) {
|
||||
color: var(--pico-accordion-close-summary-color);
|
||||
|
@ -2163,7 +2162,6 @@ main {
|
|||
background-size: 1rem auto;
|
||||
background-repeat: no-repeat;
|
||||
content: "";
|
||||
transition: transform var(--pico-transition);
|
||||
}
|
||||
.pico details summary:focus {
|
||||
outline: none;
|
||||
|
@ -2189,17 +2187,17 @@ main {
|
|||
.pico details[open] > summary:not([role]):not(:focus) {
|
||||
color: var(--pico-accordion-open-summary-color);
|
||||
}
|
||||
.pico details[open] > summary::after {
|
||||
transform: rotate(0);
|
||||
}
|
||||
|
||||
[dir=rtl] .pico details summary {
|
||||
text-align: right;
|
||||
}
|
||||
[dir=rtl] .pico details summary::after {
|
||||
float: left;
|
||||
transform: rotate(90deg);
|
||||
background-position: left center;
|
||||
}
|
||||
[dir=rtl] .pico details[open] > summary::after {
|
||||
transform: rotate(0);
|
||||
}
|
||||
|
||||
/**
|
||||
* Card (<article>, role="article")
|
||||
|
@ -2434,6 +2432,46 @@ main {
|
|||
border-bottom-right-radius: 5rem;
|
||||
}
|
||||
|
||||
[dir=rtl] .pico [role=search] > *:not(:first-child),
|
||||
[dir=rtl] .pico [role=search] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] .pico [role=search] select:not(:first-child),
|
||||
[dir=rtl] .pico [role=search] label:not(:first-child),
|
||||
[dir=rtl] .pico [role=group] > *:not(:first-child),
|
||||
[dir=rtl] .pico [role=group] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] .pico [role=group] select:not(:first-child),
|
||||
[dir=rtl] .pico [role=group] label:not(:first-child) {
|
||||
margin-right: 0;
|
||||
margin-left: auto;
|
||||
border-top-right-radius: 0;
|
||||
border-top-left-radius: var(--pico-border-radius);
|
||||
border-bottom-right-radius: 0;
|
||||
border-bottom-left-radius: var(--pico-border-radius);
|
||||
}
|
||||
[dir=rtl] .pico [role=search] > *:not(:last-child),
|
||||
[dir=rtl] .pico [role=search] input:not([type=checkbox], [type=radio]):not(:last-child),
|
||||
[dir=rtl] .pico [role=search] select:not(:last-child),
|
||||
[dir=rtl] .pico [role=search] label:not(:last-child),
|
||||
[dir=rtl] .pico [role=group] > *:not(:last-child),
|
||||
[dir=rtl] .pico [role=group] input:not([type=checkbox], [type=radio]):not(:last-child),
|
||||
[dir=rtl] .pico [role=group] select:not(:last-child),
|
||||
[dir=rtl] .pico [role=group] label:not(:last-child) {
|
||||
border-top-right-radius: var(--pico-border-radius);
|
||||
border-top-left-radius: 0;
|
||||
border-bottom-right-radius: var(--pico-border-radius);
|
||||
border-bottom-left-radius: 0;
|
||||
}
|
||||
[dir=rtl] button:not(:first-child),
|
||||
[dir=rtl] [type=submit]:not(:first-child),
|
||||
[dir=rtl] [type=reset]:not(:first-child),
|
||||
[dir=rtl] [type=button]:not(:first-child),
|
||||
[dir=rtl] [role=button]:not(:first-child),
|
||||
[dir=rtl] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] select:not(:first-child),
|
||||
[dir=rtl] label:not(:first-child) {
|
||||
margin-right: calc(var(--pico-border-width) * -1);
|
||||
margin-left: auto;
|
||||
}
|
||||
|
||||
/**
|
||||
* Loading ([aria-busy=true])
|
||||
*/
|
||||
|
|
2
css/pico.classless.conditional.green.min.css
vendored
2
css/pico.classless.conditional.green.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -2137,7 +2137,6 @@ main {
|
|||
line-height: 1rem;
|
||||
list-style-type: none;
|
||||
cursor: pointer;
|
||||
transition: color var(--pico-transition);
|
||||
}
|
||||
.pico details summary:not([role]) {
|
||||
color: var(--pico-accordion-close-summary-color);
|
||||
|
@ -2163,7 +2162,6 @@ main {
|
|||
background-size: 1rem auto;
|
||||
background-repeat: no-repeat;
|
||||
content: "";
|
||||
transition: transform var(--pico-transition);
|
||||
}
|
||||
.pico details summary:focus {
|
||||
outline: none;
|
||||
|
@ -2189,17 +2187,17 @@ main {
|
|||
.pico details[open] > summary:not([role]):not(:focus) {
|
||||
color: var(--pico-accordion-open-summary-color);
|
||||
}
|
||||
.pico details[open] > summary::after {
|
||||
transform: rotate(0);
|
||||
}
|
||||
|
||||
[dir=rtl] .pico details summary {
|
||||
text-align: right;
|
||||
}
|
||||
[dir=rtl] .pico details summary::after {
|
||||
float: left;
|
||||
transform: rotate(90deg);
|
||||
background-position: left center;
|
||||
}
|
||||
[dir=rtl] .pico details[open] > summary::after {
|
||||
transform: rotate(0);
|
||||
}
|
||||
|
||||
/**
|
||||
* Card (<article>, role="article")
|
||||
|
@ -2434,6 +2432,46 @@ main {
|
|||
border-bottom-right-radius: 5rem;
|
||||
}
|
||||
|
||||
[dir=rtl] .pico [role=search] > *:not(:first-child),
|
||||
[dir=rtl] .pico [role=search] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] .pico [role=search] select:not(:first-child),
|
||||
[dir=rtl] .pico [role=search] label:not(:first-child),
|
||||
[dir=rtl] .pico [role=group] > *:not(:first-child),
|
||||
[dir=rtl] .pico [role=group] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] .pico [role=group] select:not(:first-child),
|
||||
[dir=rtl] .pico [role=group] label:not(:first-child) {
|
||||
margin-right: 0;
|
||||
margin-left: auto;
|
||||
border-top-right-radius: 0;
|
||||
border-top-left-radius: var(--pico-border-radius);
|
||||
border-bottom-right-radius: 0;
|
||||
border-bottom-left-radius: var(--pico-border-radius);
|
||||
}
|
||||
[dir=rtl] .pico [role=search] > *:not(:last-child),
|
||||
[dir=rtl] .pico [role=search] input:not([type=checkbox], [type=radio]):not(:last-child),
|
||||
[dir=rtl] .pico [role=search] select:not(:last-child),
|
||||
[dir=rtl] .pico [role=search] label:not(:last-child),
|
||||
[dir=rtl] .pico [role=group] > *:not(:last-child),
|
||||
[dir=rtl] .pico [role=group] input:not([type=checkbox], [type=radio]):not(:last-child),
|
||||
[dir=rtl] .pico [role=group] select:not(:last-child),
|
||||
[dir=rtl] .pico [role=group] label:not(:last-child) {
|
||||
border-top-right-radius: var(--pico-border-radius);
|
||||
border-top-left-radius: 0;
|
||||
border-bottom-right-radius: var(--pico-border-radius);
|
||||
border-bottom-left-radius: 0;
|
||||
}
|
||||
[dir=rtl] button:not(:first-child),
|
||||
[dir=rtl] [type=submit]:not(:first-child),
|
||||
[dir=rtl] [type=reset]:not(:first-child),
|
||||
[dir=rtl] [type=button]:not(:first-child),
|
||||
[dir=rtl] [role=button]:not(:first-child),
|
||||
[dir=rtl] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] select:not(:first-child),
|
||||
[dir=rtl] label:not(:first-child) {
|
||||
margin-right: calc(var(--pico-border-width) * -1);
|
||||
margin-left: auto;
|
||||
}
|
||||
|
||||
/**
|
||||
* Loading ([aria-busy=true])
|
||||
*/
|
||||
|
|
2
css/pico.classless.conditional.grey.min.css
vendored
2
css/pico.classless.conditional.grey.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -2137,7 +2137,6 @@ main {
|
|||
line-height: 1rem;
|
||||
list-style-type: none;
|
||||
cursor: pointer;
|
||||
transition: color var(--pico-transition);
|
||||
}
|
||||
.pico details summary:not([role]) {
|
||||
color: var(--pico-accordion-close-summary-color);
|
||||
|
@ -2163,7 +2162,6 @@ main {
|
|||
background-size: 1rem auto;
|
||||
background-repeat: no-repeat;
|
||||
content: "";
|
||||
transition: transform var(--pico-transition);
|
||||
}
|
||||
.pico details summary:focus {
|
||||
outline: none;
|
||||
|
@ -2189,17 +2187,17 @@ main {
|
|||
.pico details[open] > summary:not([role]):not(:focus) {
|
||||
color: var(--pico-accordion-open-summary-color);
|
||||
}
|
||||
.pico details[open] > summary::after {
|
||||
transform: rotate(0);
|
||||
}
|
||||
|
||||
[dir=rtl] .pico details summary {
|
||||
text-align: right;
|
||||
}
|
||||
[dir=rtl] .pico details summary::after {
|
||||
float: left;
|
||||
transform: rotate(90deg);
|
||||
background-position: left center;
|
||||
}
|
||||
[dir=rtl] .pico details[open] > summary::after {
|
||||
transform: rotate(0);
|
||||
}
|
||||
|
||||
/**
|
||||
* Card (<article>, role="article")
|
||||
|
@ -2434,6 +2432,46 @@ main {
|
|||
border-bottom-right-radius: 5rem;
|
||||
}
|
||||
|
||||
[dir=rtl] .pico [role=search] > *:not(:first-child),
|
||||
[dir=rtl] .pico [role=search] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] .pico [role=search] select:not(:first-child),
|
||||
[dir=rtl] .pico [role=search] label:not(:first-child),
|
||||
[dir=rtl] .pico [role=group] > *:not(:first-child),
|
||||
[dir=rtl] .pico [role=group] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] .pico [role=group] select:not(:first-child),
|
||||
[dir=rtl] .pico [role=group] label:not(:first-child) {
|
||||
margin-right: 0;
|
||||
margin-left: auto;
|
||||
border-top-right-radius: 0;
|
||||
border-top-left-radius: var(--pico-border-radius);
|
||||
border-bottom-right-radius: 0;
|
||||
border-bottom-left-radius: var(--pico-border-radius);
|
||||
}
|
||||
[dir=rtl] .pico [role=search] > *:not(:last-child),
|
||||
[dir=rtl] .pico [role=search] input:not([type=checkbox], [type=radio]):not(:last-child),
|
||||
[dir=rtl] .pico [role=search] select:not(:last-child),
|
||||
[dir=rtl] .pico [role=search] label:not(:last-child),
|
||||
[dir=rtl] .pico [role=group] > *:not(:last-child),
|
||||
[dir=rtl] .pico [role=group] input:not([type=checkbox], [type=radio]):not(:last-child),
|
||||
[dir=rtl] .pico [role=group] select:not(:last-child),
|
||||
[dir=rtl] .pico [role=group] label:not(:last-child) {
|
||||
border-top-right-radius: var(--pico-border-radius);
|
||||
border-top-left-radius: 0;
|
||||
border-bottom-right-radius: var(--pico-border-radius);
|
||||
border-bottom-left-radius: 0;
|
||||
}
|
||||
[dir=rtl] button:not(:first-child),
|
||||
[dir=rtl] [type=submit]:not(:first-child),
|
||||
[dir=rtl] [type=reset]:not(:first-child),
|
||||
[dir=rtl] [type=button]:not(:first-child),
|
||||
[dir=rtl] [role=button]:not(:first-child),
|
||||
[dir=rtl] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] select:not(:first-child),
|
||||
[dir=rtl] label:not(:first-child) {
|
||||
margin-right: calc(var(--pico-border-width) * -1);
|
||||
margin-left: auto;
|
||||
}
|
||||
|
||||
/**
|
||||
* Loading ([aria-busy=true])
|
||||
*/
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -2137,7 +2137,6 @@ main {
|
|||
line-height: 1rem;
|
||||
list-style-type: none;
|
||||
cursor: pointer;
|
||||
transition: color var(--pico-transition);
|
||||
}
|
||||
.pico details summary:not([role]) {
|
||||
color: var(--pico-accordion-close-summary-color);
|
||||
|
@ -2163,7 +2162,6 @@ main {
|
|||
background-size: 1rem auto;
|
||||
background-repeat: no-repeat;
|
||||
content: "";
|
||||
transition: transform var(--pico-transition);
|
||||
}
|
||||
.pico details summary:focus {
|
||||
outline: none;
|
||||
|
@ -2189,17 +2187,17 @@ main {
|
|||
.pico details[open] > summary:not([role]):not(:focus) {
|
||||
color: var(--pico-accordion-open-summary-color);
|
||||
}
|
||||
.pico details[open] > summary::after {
|
||||
transform: rotate(0);
|
||||
}
|
||||
|
||||
[dir=rtl] .pico details summary {
|
||||
text-align: right;
|
||||
}
|
||||
[dir=rtl] .pico details summary::after {
|
||||
float: left;
|
||||
transform: rotate(90deg);
|
||||
background-position: left center;
|
||||
}
|
||||
[dir=rtl] .pico details[open] > summary::after {
|
||||
transform: rotate(0);
|
||||
}
|
||||
|
||||
/**
|
||||
* Card (<article>, role="article")
|
||||
|
@ -2434,6 +2432,46 @@ main {
|
|||
border-bottom-right-radius: 5rem;
|
||||
}
|
||||
|
||||
[dir=rtl] .pico [role=search] > *:not(:first-child),
|
||||
[dir=rtl] .pico [role=search] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] .pico [role=search] select:not(:first-child),
|
||||
[dir=rtl] .pico [role=search] label:not(:first-child),
|
||||
[dir=rtl] .pico [role=group] > *:not(:first-child),
|
||||
[dir=rtl] .pico [role=group] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] .pico [role=group] select:not(:first-child),
|
||||
[dir=rtl] .pico [role=group] label:not(:first-child) {
|
||||
margin-right: 0;
|
||||
margin-left: auto;
|
||||
border-top-right-radius: 0;
|
||||
border-top-left-radius: var(--pico-border-radius);
|
||||
border-bottom-right-radius: 0;
|
||||
border-bottom-left-radius: var(--pico-border-radius);
|
||||
}
|
||||
[dir=rtl] .pico [role=search] > *:not(:last-child),
|
||||
[dir=rtl] .pico [role=search] input:not([type=checkbox], [type=radio]):not(:last-child),
|
||||
[dir=rtl] .pico [role=search] select:not(:last-child),
|
||||
[dir=rtl] .pico [role=search] label:not(:last-child),
|
||||
[dir=rtl] .pico [role=group] > *:not(:last-child),
|
||||
[dir=rtl] .pico [role=group] input:not([type=checkbox], [type=radio]):not(:last-child),
|
||||
[dir=rtl] .pico [role=group] select:not(:last-child),
|
||||
[dir=rtl] .pico [role=group] label:not(:last-child) {
|
||||
border-top-right-radius: var(--pico-border-radius);
|
||||
border-top-left-radius: 0;
|
||||
border-bottom-right-radius: var(--pico-border-radius);
|
||||
border-bottom-left-radius: 0;
|
||||
}
|
||||
[dir=rtl] button:not(:first-child),
|
||||
[dir=rtl] [type=submit]:not(:first-child),
|
||||
[dir=rtl] [type=reset]:not(:first-child),
|
||||
[dir=rtl] [type=button]:not(:first-child),
|
||||
[dir=rtl] [role=button]:not(:first-child),
|
||||
[dir=rtl] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] select:not(:first-child),
|
||||
[dir=rtl] label:not(:first-child) {
|
||||
margin-right: calc(var(--pico-border-width) * -1);
|
||||
margin-left: auto;
|
||||
}
|
||||
|
||||
/**
|
||||
* Loading ([aria-busy=true])
|
||||
*/
|
||||
|
|
2
css/pico.classless.conditional.jade.min.css
vendored
2
css/pico.classless.conditional.jade.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -2137,7 +2137,6 @@ main {
|
|||
line-height: 1rem;
|
||||
list-style-type: none;
|
||||
cursor: pointer;
|
||||
transition: color var(--pico-transition);
|
||||
}
|
||||
.pico details summary:not([role]) {
|
||||
color: var(--pico-accordion-close-summary-color);
|
||||
|
@ -2163,7 +2162,6 @@ main {
|
|||
background-size: 1rem auto;
|
||||
background-repeat: no-repeat;
|
||||
content: "";
|
||||
transition: transform var(--pico-transition);
|
||||
}
|
||||
.pico details summary:focus {
|
||||
outline: none;
|
||||
|
@ -2189,17 +2187,17 @@ main {
|
|||
.pico details[open] > summary:not([role]):not(:focus) {
|
||||
color: var(--pico-accordion-open-summary-color);
|
||||
}
|
||||
.pico details[open] > summary::after {
|
||||
transform: rotate(0);
|
||||
}
|
||||
|
||||
[dir=rtl] .pico details summary {
|
||||
text-align: right;
|
||||
}
|
||||
[dir=rtl] .pico details summary::after {
|
||||
float: left;
|
||||
transform: rotate(90deg);
|
||||
background-position: left center;
|
||||
}
|
||||
[dir=rtl] .pico details[open] > summary::after {
|
||||
transform: rotate(0);
|
||||
}
|
||||
|
||||
/**
|
||||
* Card (<article>, role="article")
|
||||
|
@ -2434,6 +2432,46 @@ main {
|
|||
border-bottom-right-radius: 5rem;
|
||||
}
|
||||
|
||||
[dir=rtl] .pico [role=search] > *:not(:first-child),
|
||||
[dir=rtl] .pico [role=search] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] .pico [role=search] select:not(:first-child),
|
||||
[dir=rtl] .pico [role=search] label:not(:first-child),
|
||||
[dir=rtl] .pico [role=group] > *:not(:first-child),
|
||||
[dir=rtl] .pico [role=group] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] .pico [role=group] select:not(:first-child),
|
||||
[dir=rtl] .pico [role=group] label:not(:first-child) {
|
||||
margin-right: 0;
|
||||
margin-left: auto;
|
||||
border-top-right-radius: 0;
|
||||
border-top-left-radius: var(--pico-border-radius);
|
||||
border-bottom-right-radius: 0;
|
||||
border-bottom-left-radius: var(--pico-border-radius);
|
||||
}
|
||||
[dir=rtl] .pico [role=search] > *:not(:last-child),
|
||||
[dir=rtl] .pico [role=search] input:not([type=checkbox], [type=radio]):not(:last-child),
|
||||
[dir=rtl] .pico [role=search] select:not(:last-child),
|
||||
[dir=rtl] .pico [role=search] label:not(:last-child),
|
||||
[dir=rtl] .pico [role=group] > *:not(:last-child),
|
||||
[dir=rtl] .pico [role=group] input:not([type=checkbox], [type=radio]):not(:last-child),
|
||||
[dir=rtl] .pico [role=group] select:not(:last-child),
|
||||
[dir=rtl] .pico [role=group] label:not(:last-child) {
|
||||
border-top-right-radius: var(--pico-border-radius);
|
||||
border-top-left-radius: 0;
|
||||
border-bottom-right-radius: var(--pico-border-radius);
|
||||
border-bottom-left-radius: 0;
|
||||
}
|
||||
[dir=rtl] button:not(:first-child),
|
||||
[dir=rtl] [type=submit]:not(:first-child),
|
||||
[dir=rtl] [type=reset]:not(:first-child),
|
||||
[dir=rtl] [type=button]:not(:first-child),
|
||||
[dir=rtl] [role=button]:not(:first-child),
|
||||
[dir=rtl] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] select:not(:first-child),
|
||||
[dir=rtl] label:not(:first-child) {
|
||||
margin-right: calc(var(--pico-border-width) * -1);
|
||||
margin-left: auto;
|
||||
}
|
||||
|
||||
/**
|
||||
* Loading ([aria-busy=true])
|
||||
*/
|
||||
|
|
2
css/pico.classless.conditional.lime.min.css
vendored
2
css/pico.classless.conditional.lime.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -2137,7 +2137,6 @@ main {
|
|||
line-height: 1rem;
|
||||
list-style-type: none;
|
||||
cursor: pointer;
|
||||
transition: color var(--pico-transition);
|
||||
}
|
||||
.pico details summary:not([role]) {
|
||||
color: var(--pico-accordion-close-summary-color);
|
||||
|
@ -2163,7 +2162,6 @@ main {
|
|||
background-size: 1rem auto;
|
||||
background-repeat: no-repeat;
|
||||
content: "";
|
||||
transition: transform var(--pico-transition);
|
||||
}
|
||||
.pico details summary:focus {
|
||||
outline: none;
|
||||
|
@ -2189,17 +2187,17 @@ main {
|
|||
.pico details[open] > summary:not([role]):not(:focus) {
|
||||
color: var(--pico-accordion-open-summary-color);
|
||||
}
|
||||
.pico details[open] > summary::after {
|
||||
transform: rotate(0);
|
||||
}
|
||||
|
||||
[dir=rtl] .pico details summary {
|
||||
text-align: right;
|
||||
}
|
||||
[dir=rtl] .pico details summary::after {
|
||||
float: left;
|
||||
transform: rotate(90deg);
|
||||
background-position: left center;
|
||||
}
|
||||
[dir=rtl] .pico details[open] > summary::after {
|
||||
transform: rotate(0);
|
||||
}
|
||||
|
||||
/**
|
||||
* Card (<article>, role="article")
|
||||
|
@ -2434,6 +2432,46 @@ main {
|
|||
border-bottom-right-radius: 5rem;
|
||||
}
|
||||
|
||||
[dir=rtl] .pico [role=search] > *:not(:first-child),
|
||||
[dir=rtl] .pico [role=search] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] .pico [role=search] select:not(:first-child),
|
||||
[dir=rtl] .pico [role=search] label:not(:first-child),
|
||||
[dir=rtl] .pico [role=group] > *:not(:first-child),
|
||||
[dir=rtl] .pico [role=group] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] .pico [role=group] select:not(:first-child),
|
||||
[dir=rtl] .pico [role=group] label:not(:first-child) {
|
||||
margin-right: 0;
|
||||
margin-left: auto;
|
||||
border-top-right-radius: 0;
|
||||
border-top-left-radius: var(--pico-border-radius);
|
||||
border-bottom-right-radius: 0;
|
||||
border-bottom-left-radius: var(--pico-border-radius);
|
||||
}
|
||||
[dir=rtl] .pico [role=search] > *:not(:last-child),
|
||||
[dir=rtl] .pico [role=search] input:not([type=checkbox], [type=radio]):not(:last-child),
|
||||
[dir=rtl] .pico [role=search] select:not(:last-child),
|
||||
[dir=rtl] .pico [role=search] label:not(:last-child),
|
||||
[dir=rtl] .pico [role=group] > *:not(:last-child),
|
||||
[dir=rtl] .pico [role=group] input:not([type=checkbox], [type=radio]):not(:last-child),
|
||||
[dir=rtl] .pico [role=group] select:not(:last-child),
|
||||
[dir=rtl] .pico [role=group] label:not(:last-child) {
|
||||
border-top-right-radius: var(--pico-border-radius);
|
||||
border-top-left-radius: 0;
|
||||
border-bottom-right-radius: var(--pico-border-radius);
|
||||
border-bottom-left-radius: 0;
|
||||
}
|
||||
[dir=rtl] button:not(:first-child),
|
||||
[dir=rtl] [type=submit]:not(:first-child),
|
||||
[dir=rtl] [type=reset]:not(:first-child),
|
||||
[dir=rtl] [type=button]:not(:first-child),
|
||||
[dir=rtl] [role=button]:not(:first-child),
|
||||
[dir=rtl] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] select:not(:first-child),
|
||||
[dir=rtl] label:not(:first-child) {
|
||||
margin-right: calc(var(--pico-border-width) * -1);
|
||||
margin-left: auto;
|
||||
}
|
||||
|
||||
/**
|
||||
* Loading ([aria-busy=true])
|
||||
*/
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -2137,7 +2137,6 @@ main {
|
|||
line-height: 1rem;
|
||||
list-style-type: none;
|
||||
cursor: pointer;
|
||||
transition: color var(--pico-transition);
|
||||
}
|
||||
.pico details summary:not([role]) {
|
||||
color: var(--pico-accordion-close-summary-color);
|
||||
|
@ -2163,7 +2162,6 @@ main {
|
|||
background-size: 1rem auto;
|
||||
background-repeat: no-repeat;
|
||||
content: "";
|
||||
transition: transform var(--pico-transition);
|
||||
}
|
||||
.pico details summary:focus {
|
||||
outline: none;
|
||||
|
@ -2189,17 +2187,17 @@ main {
|
|||
.pico details[open] > summary:not([role]):not(:focus) {
|
||||
color: var(--pico-accordion-open-summary-color);
|
||||
}
|
||||
.pico details[open] > summary::after {
|
||||
transform: rotate(0);
|
||||
}
|
||||
|
||||
[dir=rtl] .pico details summary {
|
||||
text-align: right;
|
||||
}
|
||||
[dir=rtl] .pico details summary::after {
|
||||
float: left;
|
||||
transform: rotate(90deg);
|
||||
background-position: left center;
|
||||
}
|
||||
[dir=rtl] .pico details[open] > summary::after {
|
||||
transform: rotate(0);
|
||||
}
|
||||
|
||||
/**
|
||||
* Card (<article>, role="article")
|
||||
|
@ -2434,6 +2432,46 @@ main {
|
|||
border-bottom-right-radius: 5rem;
|
||||
}
|
||||
|
||||
[dir=rtl] .pico [role=search] > *:not(:first-child),
|
||||
[dir=rtl] .pico [role=search] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] .pico [role=search] select:not(:first-child),
|
||||
[dir=rtl] .pico [role=search] label:not(:first-child),
|
||||
[dir=rtl] .pico [role=group] > *:not(:first-child),
|
||||
[dir=rtl] .pico [role=group] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] .pico [role=group] select:not(:first-child),
|
||||
[dir=rtl] .pico [role=group] label:not(:first-child) {
|
||||
margin-right: 0;
|
||||
margin-left: auto;
|
||||
border-top-right-radius: 0;
|
||||
border-top-left-radius: var(--pico-border-radius);
|
||||
border-bottom-right-radius: 0;
|
||||
border-bottom-left-radius: var(--pico-border-radius);
|
||||
}
|
||||
[dir=rtl] .pico [role=search] > *:not(:last-child),
|
||||
[dir=rtl] .pico [role=search] input:not([type=checkbox], [type=radio]):not(:last-child),
|
||||
[dir=rtl] .pico [role=search] select:not(:last-child),
|
||||
[dir=rtl] .pico [role=search] label:not(:last-child),
|
||||
[dir=rtl] .pico [role=group] > *:not(:last-child),
|
||||
[dir=rtl] .pico [role=group] input:not([type=checkbox], [type=radio]):not(:last-child),
|
||||
[dir=rtl] .pico [role=group] select:not(:last-child),
|
||||
[dir=rtl] .pico [role=group] label:not(:last-child) {
|
||||
border-top-right-radius: var(--pico-border-radius);
|
||||
border-top-left-radius: 0;
|
||||
border-bottom-right-radius: var(--pico-border-radius);
|
||||
border-bottom-left-radius: 0;
|
||||
}
|
||||
[dir=rtl] button:not(:first-child),
|
||||
[dir=rtl] [type=submit]:not(:first-child),
|
||||
[dir=rtl] [type=reset]:not(:first-child),
|
||||
[dir=rtl] [type=button]:not(:first-child),
|
||||
[dir=rtl] [role=button]:not(:first-child),
|
||||
[dir=rtl] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] select:not(:first-child),
|
||||
[dir=rtl] label:not(:first-child) {
|
||||
margin-right: calc(var(--pico-border-width) * -1);
|
||||
margin-left: auto;
|
||||
}
|
||||
|
||||
/**
|
||||
* Loading ([aria-busy=true])
|
||||
*/
|
||||
|
|
2
css/pico.classless.conditional.pink.min.css
vendored
2
css/pico.classless.conditional.pink.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -2137,7 +2137,6 @@ main {
|
|||
line-height: 1rem;
|
||||
list-style-type: none;
|
||||
cursor: pointer;
|
||||
transition: color var(--pico-transition);
|
||||
}
|
||||
.pico details summary:not([role]) {
|
||||
color: var(--pico-accordion-close-summary-color);
|
||||
|
@ -2163,7 +2162,6 @@ main {
|
|||
background-size: 1rem auto;
|
||||
background-repeat: no-repeat;
|
||||
content: "";
|
||||
transition: transform var(--pico-transition);
|
||||
}
|
||||
.pico details summary:focus {
|
||||
outline: none;
|
||||
|
@ -2189,17 +2187,17 @@ main {
|
|||
.pico details[open] > summary:not([role]):not(:focus) {
|
||||
color: var(--pico-accordion-open-summary-color);
|
||||
}
|
||||
.pico details[open] > summary::after {
|
||||
transform: rotate(0);
|
||||
}
|
||||
|
||||
[dir=rtl] .pico details summary {
|
||||
text-align: right;
|
||||
}
|
||||
[dir=rtl] .pico details summary::after {
|
||||
float: left;
|
||||
transform: rotate(90deg);
|
||||
background-position: left center;
|
||||
}
|
||||
[dir=rtl] .pico details[open] > summary::after {
|
||||
transform: rotate(0);
|
||||
}
|
||||
|
||||
/**
|
||||
* Card (<article>, role="article")
|
||||
|
@ -2434,6 +2432,46 @@ main {
|
|||
border-bottom-right-radius: 5rem;
|
||||
}
|
||||
|
||||
[dir=rtl] .pico [role=search] > *:not(:first-child),
|
||||
[dir=rtl] .pico [role=search] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] .pico [role=search] select:not(:first-child),
|
||||
[dir=rtl] .pico [role=search] label:not(:first-child),
|
||||
[dir=rtl] .pico [role=group] > *:not(:first-child),
|
||||
[dir=rtl] .pico [role=group] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] .pico [role=group] select:not(:first-child),
|
||||
[dir=rtl] .pico [role=group] label:not(:first-child) {
|
||||
margin-right: 0;
|
||||
margin-left: auto;
|
||||
border-top-right-radius: 0;
|
||||
border-top-left-radius: var(--pico-border-radius);
|
||||
border-bottom-right-radius: 0;
|
||||
border-bottom-left-radius: var(--pico-border-radius);
|
||||
}
|
||||
[dir=rtl] .pico [role=search] > *:not(:last-child),
|
||||
[dir=rtl] .pico [role=search] input:not([type=checkbox], [type=radio]):not(:last-child),
|
||||
[dir=rtl] .pico [role=search] select:not(:last-child),
|
||||
[dir=rtl] .pico [role=search] label:not(:last-child),
|
||||
[dir=rtl] .pico [role=group] > *:not(:last-child),
|
||||
[dir=rtl] .pico [role=group] input:not([type=checkbox], [type=radio]):not(:last-child),
|
||||
[dir=rtl] .pico [role=group] select:not(:last-child),
|
||||
[dir=rtl] .pico [role=group] label:not(:last-child) {
|
||||
border-top-right-radius: var(--pico-border-radius);
|
||||
border-top-left-radius: 0;
|
||||
border-bottom-right-radius: var(--pico-border-radius);
|
||||
border-bottom-left-radius: 0;
|
||||
}
|
||||
[dir=rtl] button:not(:first-child),
|
||||
[dir=rtl] [type=submit]:not(:first-child),
|
||||
[dir=rtl] [type=reset]:not(:first-child),
|
||||
[dir=rtl] [type=button]:not(:first-child),
|
||||
[dir=rtl] [role=button]:not(:first-child),
|
||||
[dir=rtl] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] select:not(:first-child),
|
||||
[dir=rtl] label:not(:first-child) {
|
||||
margin-right: calc(var(--pico-border-width) * -1);
|
||||
margin-left: auto;
|
||||
}
|
||||
|
||||
/**
|
||||
* Loading ([aria-busy=true])
|
||||
*/
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -2137,7 +2137,6 @@ main {
|
|||
line-height: 1rem;
|
||||
list-style-type: none;
|
||||
cursor: pointer;
|
||||
transition: color var(--pico-transition);
|
||||
}
|
||||
.pico details summary:not([role]) {
|
||||
color: var(--pico-accordion-close-summary-color);
|
||||
|
@ -2163,7 +2162,6 @@ main {
|
|||
background-size: 1rem auto;
|
||||
background-repeat: no-repeat;
|
||||
content: "";
|
||||
transition: transform var(--pico-transition);
|
||||
}
|
||||
.pico details summary:focus {
|
||||
outline: none;
|
||||
|
@ -2189,17 +2187,17 @@ main {
|
|||
.pico details[open] > summary:not([role]):not(:focus) {
|
||||
color: var(--pico-accordion-open-summary-color);
|
||||
}
|
||||
.pico details[open] > summary::after {
|
||||
transform: rotate(0);
|
||||
}
|
||||
|
||||
[dir=rtl] .pico details summary {
|
||||
text-align: right;
|
||||
}
|
||||
[dir=rtl] .pico details summary::after {
|
||||
float: left;
|
||||
transform: rotate(90deg);
|
||||
background-position: left center;
|
||||
}
|
||||
[dir=rtl] .pico details[open] > summary::after {
|
||||
transform: rotate(0);
|
||||
}
|
||||
|
||||
/**
|
||||
* Card (<article>, role="article")
|
||||
|
@ -2434,6 +2432,46 @@ main {
|
|||
border-bottom-right-radius: 5rem;
|
||||
}
|
||||
|
||||
[dir=rtl] .pico [role=search] > *:not(:first-child),
|
||||
[dir=rtl] .pico [role=search] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] .pico [role=search] select:not(:first-child),
|
||||
[dir=rtl] .pico [role=search] label:not(:first-child),
|
||||
[dir=rtl] .pico [role=group] > *:not(:first-child),
|
||||
[dir=rtl] .pico [role=group] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] .pico [role=group] select:not(:first-child),
|
||||
[dir=rtl] .pico [role=group] label:not(:first-child) {
|
||||
margin-right: 0;
|
||||
margin-left: auto;
|
||||
border-top-right-radius: 0;
|
||||
border-top-left-radius: var(--pico-border-radius);
|
||||
border-bottom-right-radius: 0;
|
||||
border-bottom-left-radius: var(--pico-border-radius);
|
||||
}
|
||||
[dir=rtl] .pico [role=search] > *:not(:last-child),
|
||||
[dir=rtl] .pico [role=search] input:not([type=checkbox], [type=radio]):not(:last-child),
|
||||
[dir=rtl] .pico [role=search] select:not(:last-child),
|
||||
[dir=rtl] .pico [role=search] label:not(:last-child),
|
||||
[dir=rtl] .pico [role=group] > *:not(:last-child),
|
||||
[dir=rtl] .pico [role=group] input:not([type=checkbox], [type=radio]):not(:last-child),
|
||||
[dir=rtl] .pico [role=group] select:not(:last-child),
|
||||
[dir=rtl] .pico [role=group] label:not(:last-child) {
|
||||
border-top-right-radius: var(--pico-border-radius);
|
||||
border-top-left-radius: 0;
|
||||
border-bottom-right-radius: var(--pico-border-radius);
|
||||
border-bottom-left-radius: 0;
|
||||
}
|
||||
[dir=rtl] button:not(:first-child),
|
||||
[dir=rtl] [type=submit]:not(:first-child),
|
||||
[dir=rtl] [type=reset]:not(:first-child),
|
||||
[dir=rtl] [type=button]:not(:first-child),
|
||||
[dir=rtl] [role=button]:not(:first-child),
|
||||
[dir=rtl] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] select:not(:first-child),
|
||||
[dir=rtl] label:not(:first-child) {
|
||||
margin-right: calc(var(--pico-border-width) * -1);
|
||||
margin-left: auto;
|
||||
}
|
||||
|
||||
/**
|
||||
* Loading ([aria-busy=true])
|
||||
*/
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -2137,7 +2137,6 @@ main {
|
|||
line-height: 1rem;
|
||||
list-style-type: none;
|
||||
cursor: pointer;
|
||||
transition: color var(--pico-transition);
|
||||
}
|
||||
.pico details summary:not([role]) {
|
||||
color: var(--pico-accordion-close-summary-color);
|
||||
|
@ -2163,7 +2162,6 @@ main {
|
|||
background-size: 1rem auto;
|
||||
background-repeat: no-repeat;
|
||||
content: "";
|
||||
transition: transform var(--pico-transition);
|
||||
}
|
||||
.pico details summary:focus {
|
||||
outline: none;
|
||||
|
@ -2189,17 +2187,17 @@ main {
|
|||
.pico details[open] > summary:not([role]):not(:focus) {
|
||||
color: var(--pico-accordion-open-summary-color);
|
||||
}
|
||||
.pico details[open] > summary::after {
|
||||
transform: rotate(0);
|
||||
}
|
||||
|
||||
[dir=rtl] .pico details summary {
|
||||
text-align: right;
|
||||
}
|
||||
[dir=rtl] .pico details summary::after {
|
||||
float: left;
|
||||
transform: rotate(90deg);
|
||||
background-position: left center;
|
||||
}
|
||||
[dir=rtl] .pico details[open] > summary::after {
|
||||
transform: rotate(0);
|
||||
}
|
||||
|
||||
/**
|
||||
* Card (<article>, role="article")
|
||||
|
@ -2434,6 +2432,46 @@ main {
|
|||
border-bottom-right-radius: 5rem;
|
||||
}
|
||||
|
||||
[dir=rtl] .pico [role=search] > *:not(:first-child),
|
||||
[dir=rtl] .pico [role=search] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] .pico [role=search] select:not(:first-child),
|
||||
[dir=rtl] .pico [role=search] label:not(:first-child),
|
||||
[dir=rtl] .pico [role=group] > *:not(:first-child),
|
||||
[dir=rtl] .pico [role=group] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] .pico [role=group] select:not(:first-child),
|
||||
[dir=rtl] .pico [role=group] label:not(:first-child) {
|
||||
margin-right: 0;
|
||||
margin-left: auto;
|
||||
border-top-right-radius: 0;
|
||||
border-top-left-radius: var(--pico-border-radius);
|
||||
border-bottom-right-radius: 0;
|
||||
border-bottom-left-radius: var(--pico-border-radius);
|
||||
}
|
||||
[dir=rtl] .pico [role=search] > *:not(:last-child),
|
||||
[dir=rtl] .pico [role=search] input:not([type=checkbox], [type=radio]):not(:last-child),
|
||||
[dir=rtl] .pico [role=search] select:not(:last-child),
|
||||
[dir=rtl] .pico [role=search] label:not(:last-child),
|
||||
[dir=rtl] .pico [role=group] > *:not(:last-child),
|
||||
[dir=rtl] .pico [role=group] input:not([type=checkbox], [type=radio]):not(:last-child),
|
||||
[dir=rtl] .pico [role=group] select:not(:last-child),
|
||||
[dir=rtl] .pico [role=group] label:not(:last-child) {
|
||||
border-top-right-radius: var(--pico-border-radius);
|
||||
border-top-left-radius: 0;
|
||||
border-bottom-right-radius: var(--pico-border-radius);
|
||||
border-bottom-left-radius: 0;
|
||||
}
|
||||
[dir=rtl] button:not(:first-child),
|
||||
[dir=rtl] [type=submit]:not(:first-child),
|
||||
[dir=rtl] [type=reset]:not(:first-child),
|
||||
[dir=rtl] [type=button]:not(:first-child),
|
||||
[dir=rtl] [role=button]:not(:first-child),
|
||||
[dir=rtl] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] select:not(:first-child),
|
||||
[dir=rtl] label:not(:first-child) {
|
||||
margin-right: calc(var(--pico-border-width) * -1);
|
||||
margin-left: auto;
|
||||
}
|
||||
|
||||
/**
|
||||
* Loading ([aria-busy=true])
|
||||
*/
|
||||
|
|
2
css/pico.classless.conditional.red.min.css
vendored
2
css/pico.classless.conditional.red.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -2137,7 +2137,6 @@ main {
|
|||
line-height: 1rem;
|
||||
list-style-type: none;
|
||||
cursor: pointer;
|
||||
transition: color var(--pico-transition);
|
||||
}
|
||||
.pico details summary:not([role]) {
|
||||
color: var(--pico-accordion-close-summary-color);
|
||||
|
@ -2163,7 +2162,6 @@ main {
|
|||
background-size: 1rem auto;
|
||||
background-repeat: no-repeat;
|
||||
content: "";
|
||||
transition: transform var(--pico-transition);
|
||||
}
|
||||
.pico details summary:focus {
|
||||
outline: none;
|
||||
|
@ -2189,17 +2187,17 @@ main {
|
|||
.pico details[open] > summary:not([role]):not(:focus) {
|
||||
color: var(--pico-accordion-open-summary-color);
|
||||
}
|
||||
.pico details[open] > summary::after {
|
||||
transform: rotate(0);
|
||||
}
|
||||
|
||||
[dir=rtl] .pico details summary {
|
||||
text-align: right;
|
||||
}
|
||||
[dir=rtl] .pico details summary::after {
|
||||
float: left;
|
||||
transform: rotate(90deg);
|
||||
background-position: left center;
|
||||
}
|
||||
[dir=rtl] .pico details[open] > summary::after {
|
||||
transform: rotate(0);
|
||||
}
|
||||
|
||||
/**
|
||||
* Card (<article>, role="article")
|
||||
|
@ -2434,6 +2432,46 @@ main {
|
|||
border-bottom-right-radius: 5rem;
|
||||
}
|
||||
|
||||
[dir=rtl] .pico [role=search] > *:not(:first-child),
|
||||
[dir=rtl] .pico [role=search] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] .pico [role=search] select:not(:first-child),
|
||||
[dir=rtl] .pico [role=search] label:not(:first-child),
|
||||
[dir=rtl] .pico [role=group] > *:not(:first-child),
|
||||
[dir=rtl] .pico [role=group] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] .pico [role=group] select:not(:first-child),
|
||||
[dir=rtl] .pico [role=group] label:not(:first-child) {
|
||||
margin-right: 0;
|
||||
margin-left: auto;
|
||||
border-top-right-radius: 0;
|
||||
border-top-left-radius: var(--pico-border-radius);
|
||||
border-bottom-right-radius: 0;
|
||||
border-bottom-left-radius: var(--pico-border-radius);
|
||||
}
|
||||
[dir=rtl] .pico [role=search] > *:not(:last-child),
|
||||
[dir=rtl] .pico [role=search] input:not([type=checkbox], [type=radio]):not(:last-child),
|
||||
[dir=rtl] .pico [role=search] select:not(:last-child),
|
||||
[dir=rtl] .pico [role=search] label:not(:last-child),
|
||||
[dir=rtl] .pico [role=group] > *:not(:last-child),
|
||||
[dir=rtl] .pico [role=group] input:not([type=checkbox], [type=radio]):not(:last-child),
|
||||
[dir=rtl] .pico [role=group] select:not(:last-child),
|
||||
[dir=rtl] .pico [role=group] label:not(:last-child) {
|
||||
border-top-right-radius: var(--pico-border-radius);
|
||||
border-top-left-radius: 0;
|
||||
border-bottom-right-radius: var(--pico-border-radius);
|
||||
border-bottom-left-radius: 0;
|
||||
}
|
||||
[dir=rtl] button:not(:first-child),
|
||||
[dir=rtl] [type=submit]:not(:first-child),
|
||||
[dir=rtl] [type=reset]:not(:first-child),
|
||||
[dir=rtl] [type=button]:not(:first-child),
|
||||
[dir=rtl] [role=button]:not(:first-child),
|
||||
[dir=rtl] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] select:not(:first-child),
|
||||
[dir=rtl] label:not(:first-child) {
|
||||
margin-right: calc(var(--pico-border-width) * -1);
|
||||
margin-left: auto;
|
||||
}
|
||||
|
||||
/**
|
||||
* Loading ([aria-busy=true])
|
||||
*/
|
||||
|
|
2
css/pico.classless.conditional.sand.min.css
vendored
2
css/pico.classless.conditional.sand.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -2137,7 +2137,6 @@ main {
|
|||
line-height: 1rem;
|
||||
list-style-type: none;
|
||||
cursor: pointer;
|
||||
transition: color var(--pico-transition);
|
||||
}
|
||||
.pico details summary:not([role]) {
|
||||
color: var(--pico-accordion-close-summary-color);
|
||||
|
@ -2163,7 +2162,6 @@ main {
|
|||
background-size: 1rem auto;
|
||||
background-repeat: no-repeat;
|
||||
content: "";
|
||||
transition: transform var(--pico-transition);
|
||||
}
|
||||
.pico details summary:focus {
|
||||
outline: none;
|
||||
|
@ -2189,17 +2187,17 @@ main {
|
|||
.pico details[open] > summary:not([role]):not(:focus) {
|
||||
color: var(--pico-accordion-open-summary-color);
|
||||
}
|
||||
.pico details[open] > summary::after {
|
||||
transform: rotate(0);
|
||||
}
|
||||
|
||||
[dir=rtl] .pico details summary {
|
||||
text-align: right;
|
||||
}
|
||||
[dir=rtl] .pico details summary::after {
|
||||
float: left;
|
||||
transform: rotate(90deg);
|
||||
background-position: left center;
|
||||
}
|
||||
[dir=rtl] .pico details[open] > summary::after {
|
||||
transform: rotate(0);
|
||||
}
|
||||
|
||||
/**
|
||||
* Card (<article>, role="article")
|
||||
|
@ -2434,6 +2432,46 @@ main {
|
|||
border-bottom-right-radius: 5rem;
|
||||
}
|
||||
|
||||
[dir=rtl] .pico [role=search] > *:not(:first-child),
|
||||
[dir=rtl] .pico [role=search] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] .pico [role=search] select:not(:first-child),
|
||||
[dir=rtl] .pico [role=search] label:not(:first-child),
|
||||
[dir=rtl] .pico [role=group] > *:not(:first-child),
|
||||
[dir=rtl] .pico [role=group] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] .pico [role=group] select:not(:first-child),
|
||||
[dir=rtl] .pico [role=group] label:not(:first-child) {
|
||||
margin-right: 0;
|
||||
margin-left: auto;
|
||||
border-top-right-radius: 0;
|
||||
border-top-left-radius: var(--pico-border-radius);
|
||||
border-bottom-right-radius: 0;
|
||||
border-bottom-left-radius: var(--pico-border-radius);
|
||||
}
|
||||
[dir=rtl] .pico [role=search] > *:not(:last-child),
|
||||
[dir=rtl] .pico [role=search] input:not([type=checkbox], [type=radio]):not(:last-child),
|
||||
[dir=rtl] .pico [role=search] select:not(:last-child),
|
||||
[dir=rtl] .pico [role=search] label:not(:last-child),
|
||||
[dir=rtl] .pico [role=group] > *:not(:last-child),
|
||||
[dir=rtl] .pico [role=group] input:not([type=checkbox], [type=radio]):not(:last-child),
|
||||
[dir=rtl] .pico [role=group] select:not(:last-child),
|
||||
[dir=rtl] .pico [role=group] label:not(:last-child) {
|
||||
border-top-right-radius: var(--pico-border-radius);
|
||||
border-top-left-radius: 0;
|
||||
border-bottom-right-radius: var(--pico-border-radius);
|
||||
border-bottom-left-radius: 0;
|
||||
}
|
||||
[dir=rtl] button:not(:first-child),
|
||||
[dir=rtl] [type=submit]:not(:first-child),
|
||||
[dir=rtl] [type=reset]:not(:first-child),
|
||||
[dir=rtl] [type=button]:not(:first-child),
|
||||
[dir=rtl] [role=button]:not(:first-child),
|
||||
[dir=rtl] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] select:not(:first-child),
|
||||
[dir=rtl] label:not(:first-child) {
|
||||
margin-right: calc(var(--pico-border-width) * -1);
|
||||
margin-left: auto;
|
||||
}
|
||||
|
||||
/**
|
||||
* Loading ([aria-busy=true])
|
||||
*/
|
||||
|
|
2
css/pico.classless.conditional.slate.min.css
vendored
2
css/pico.classless.conditional.slate.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -2137,7 +2137,6 @@ main {
|
|||
line-height: 1rem;
|
||||
list-style-type: none;
|
||||
cursor: pointer;
|
||||
transition: color var(--pico-transition);
|
||||
}
|
||||
.pico details summary:not([role]) {
|
||||
color: var(--pico-accordion-close-summary-color);
|
||||
|
@ -2163,7 +2162,6 @@ main {
|
|||
background-size: 1rem auto;
|
||||
background-repeat: no-repeat;
|
||||
content: "";
|
||||
transition: transform var(--pico-transition);
|
||||
}
|
||||
.pico details summary:focus {
|
||||
outline: none;
|
||||
|
@ -2189,17 +2187,17 @@ main {
|
|||
.pico details[open] > summary:not([role]):not(:focus) {
|
||||
color: var(--pico-accordion-open-summary-color);
|
||||
}
|
||||
.pico details[open] > summary::after {
|
||||
transform: rotate(0);
|
||||
}
|
||||
|
||||
[dir=rtl] .pico details summary {
|
||||
text-align: right;
|
||||
}
|
||||
[dir=rtl] .pico details summary::after {
|
||||
float: left;
|
||||
transform: rotate(90deg);
|
||||
background-position: left center;
|
||||
}
|
||||
[dir=rtl] .pico details[open] > summary::after {
|
||||
transform: rotate(0);
|
||||
}
|
||||
|
||||
/**
|
||||
* Card (<article>, role="article")
|
||||
|
@ -2434,6 +2432,46 @@ main {
|
|||
border-bottom-right-radius: 5rem;
|
||||
}
|
||||
|
||||
[dir=rtl] .pico [role=search] > *:not(:first-child),
|
||||
[dir=rtl] .pico [role=search] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] .pico [role=search] select:not(:first-child),
|
||||
[dir=rtl] .pico [role=search] label:not(:first-child),
|
||||
[dir=rtl] .pico [role=group] > *:not(:first-child),
|
||||
[dir=rtl] .pico [role=group] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] .pico [role=group] select:not(:first-child),
|
||||
[dir=rtl] .pico [role=group] label:not(:first-child) {
|
||||
margin-right: 0;
|
||||
margin-left: auto;
|
||||
border-top-right-radius: 0;
|
||||
border-top-left-radius: var(--pico-border-radius);
|
||||
border-bottom-right-radius: 0;
|
||||
border-bottom-left-radius: var(--pico-border-radius);
|
||||
}
|
||||
[dir=rtl] .pico [role=search] > *:not(:last-child),
|
||||
[dir=rtl] .pico [role=search] input:not([type=checkbox], [type=radio]):not(:last-child),
|
||||
[dir=rtl] .pico [role=search] select:not(:last-child),
|
||||
[dir=rtl] .pico [role=search] label:not(:last-child),
|
||||
[dir=rtl] .pico [role=group] > *:not(:last-child),
|
||||
[dir=rtl] .pico [role=group] input:not([type=checkbox], [type=radio]):not(:last-child),
|
||||
[dir=rtl] .pico [role=group] select:not(:last-child),
|
||||
[dir=rtl] .pico [role=group] label:not(:last-child) {
|
||||
border-top-right-radius: var(--pico-border-radius);
|
||||
border-top-left-radius: 0;
|
||||
border-bottom-right-radius: var(--pico-border-radius);
|
||||
border-bottom-left-radius: 0;
|
||||
}
|
||||
[dir=rtl] button:not(:first-child),
|
||||
[dir=rtl] [type=submit]:not(:first-child),
|
||||
[dir=rtl] [type=reset]:not(:first-child),
|
||||
[dir=rtl] [type=button]:not(:first-child),
|
||||
[dir=rtl] [role=button]:not(:first-child),
|
||||
[dir=rtl] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] select:not(:first-child),
|
||||
[dir=rtl] label:not(:first-child) {
|
||||
margin-right: calc(var(--pico-border-width) * -1);
|
||||
margin-left: auto;
|
||||
}
|
||||
|
||||
/**
|
||||
* Loading ([aria-busy=true])
|
||||
*/
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -2137,7 +2137,6 @@ main {
|
|||
line-height: 1rem;
|
||||
list-style-type: none;
|
||||
cursor: pointer;
|
||||
transition: color var(--pico-transition);
|
||||
}
|
||||
.pico details summary:not([role]) {
|
||||
color: var(--pico-accordion-close-summary-color);
|
||||
|
@ -2163,7 +2162,6 @@ main {
|
|||
background-size: 1rem auto;
|
||||
background-repeat: no-repeat;
|
||||
content: "";
|
||||
transition: transform var(--pico-transition);
|
||||
}
|
||||
.pico details summary:focus {
|
||||
outline: none;
|
||||
|
@ -2189,17 +2187,17 @@ main {
|
|||
.pico details[open] > summary:not([role]):not(:focus) {
|
||||
color: var(--pico-accordion-open-summary-color);
|
||||
}
|
||||
.pico details[open] > summary::after {
|
||||
transform: rotate(0);
|
||||
}
|
||||
|
||||
[dir=rtl] .pico details summary {
|
||||
text-align: right;
|
||||
}
|
||||
[dir=rtl] .pico details summary::after {
|
||||
float: left;
|
||||
transform: rotate(90deg);
|
||||
background-position: left center;
|
||||
}
|
||||
[dir=rtl] .pico details[open] > summary::after {
|
||||
transform: rotate(0);
|
||||
}
|
||||
|
||||
/**
|
||||
* Card (<article>, role="article")
|
||||
|
@ -2434,6 +2432,46 @@ main {
|
|||
border-bottom-right-radius: 5rem;
|
||||
}
|
||||
|
||||
[dir=rtl] .pico [role=search] > *:not(:first-child),
|
||||
[dir=rtl] .pico [role=search] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] .pico [role=search] select:not(:first-child),
|
||||
[dir=rtl] .pico [role=search] label:not(:first-child),
|
||||
[dir=rtl] .pico [role=group] > *:not(:first-child),
|
||||
[dir=rtl] .pico [role=group] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] .pico [role=group] select:not(:first-child),
|
||||
[dir=rtl] .pico [role=group] label:not(:first-child) {
|
||||
margin-right: 0;
|
||||
margin-left: auto;
|
||||
border-top-right-radius: 0;
|
||||
border-top-left-radius: var(--pico-border-radius);
|
||||
border-bottom-right-radius: 0;
|
||||
border-bottom-left-radius: var(--pico-border-radius);
|
||||
}
|
||||
[dir=rtl] .pico [role=search] > *:not(:last-child),
|
||||
[dir=rtl] .pico [role=search] input:not([type=checkbox], [type=radio]):not(:last-child),
|
||||
[dir=rtl] .pico [role=search] select:not(:last-child),
|
||||
[dir=rtl] .pico [role=search] label:not(:last-child),
|
||||
[dir=rtl] .pico [role=group] > *:not(:last-child),
|
||||
[dir=rtl] .pico [role=group] input:not([type=checkbox], [type=radio]):not(:last-child),
|
||||
[dir=rtl] .pico [role=group] select:not(:last-child),
|
||||
[dir=rtl] .pico [role=group] label:not(:last-child) {
|
||||
border-top-right-radius: var(--pico-border-radius);
|
||||
border-top-left-radius: 0;
|
||||
border-bottom-right-radius: var(--pico-border-radius);
|
||||
border-bottom-left-radius: 0;
|
||||
}
|
||||
[dir=rtl] button:not(:first-child),
|
||||
[dir=rtl] [type=submit]:not(:first-child),
|
||||
[dir=rtl] [type=reset]:not(:first-child),
|
||||
[dir=rtl] [type=button]:not(:first-child),
|
||||
[dir=rtl] [role=button]:not(:first-child),
|
||||
[dir=rtl] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] select:not(:first-child),
|
||||
[dir=rtl] label:not(:first-child) {
|
||||
margin-right: calc(var(--pico-border-width) * -1);
|
||||
margin-left: auto;
|
||||
}
|
||||
|
||||
/**
|
||||
* Loading ([aria-busy=true])
|
||||
*/
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -2137,7 +2137,6 @@ main {
|
|||
line-height: 1rem;
|
||||
list-style-type: none;
|
||||
cursor: pointer;
|
||||
transition: color var(--pico-transition);
|
||||
}
|
||||
.pico details summary:not([role]) {
|
||||
color: var(--pico-accordion-close-summary-color);
|
||||
|
@ -2163,7 +2162,6 @@ main {
|
|||
background-size: 1rem auto;
|
||||
background-repeat: no-repeat;
|
||||
content: "";
|
||||
transition: transform var(--pico-transition);
|
||||
}
|
||||
.pico details summary:focus {
|
||||
outline: none;
|
||||
|
@ -2189,17 +2187,17 @@ main {
|
|||
.pico details[open] > summary:not([role]):not(:focus) {
|
||||
color: var(--pico-accordion-open-summary-color);
|
||||
}
|
||||
.pico details[open] > summary::after {
|
||||
transform: rotate(0);
|
||||
}
|
||||
|
||||
[dir=rtl] .pico details summary {
|
||||
text-align: right;
|
||||
}
|
||||
[dir=rtl] .pico details summary::after {
|
||||
float: left;
|
||||
transform: rotate(90deg);
|
||||
background-position: left center;
|
||||
}
|
||||
[dir=rtl] .pico details[open] > summary::after {
|
||||
transform: rotate(0);
|
||||
}
|
||||
|
||||
/**
|
||||
* Card (<article>, role="article")
|
||||
|
@ -2434,6 +2432,46 @@ main {
|
|||
border-bottom-right-radius: 5rem;
|
||||
}
|
||||
|
||||
[dir=rtl] .pico [role=search] > *:not(:first-child),
|
||||
[dir=rtl] .pico [role=search] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] .pico [role=search] select:not(:first-child),
|
||||
[dir=rtl] .pico [role=search] label:not(:first-child),
|
||||
[dir=rtl] .pico [role=group] > *:not(:first-child),
|
||||
[dir=rtl] .pico [role=group] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] .pico [role=group] select:not(:first-child),
|
||||
[dir=rtl] .pico [role=group] label:not(:first-child) {
|
||||
margin-right: 0;
|
||||
margin-left: auto;
|
||||
border-top-right-radius: 0;
|
||||
border-top-left-radius: var(--pico-border-radius);
|
||||
border-bottom-right-radius: 0;
|
||||
border-bottom-left-radius: var(--pico-border-radius);
|
||||
}
|
||||
[dir=rtl] .pico [role=search] > *:not(:last-child),
|
||||
[dir=rtl] .pico [role=search] input:not([type=checkbox], [type=radio]):not(:last-child),
|
||||
[dir=rtl] .pico [role=search] select:not(:last-child),
|
||||
[dir=rtl] .pico [role=search] label:not(:last-child),
|
||||
[dir=rtl] .pico [role=group] > *:not(:last-child),
|
||||
[dir=rtl] .pico [role=group] input:not([type=checkbox], [type=radio]):not(:last-child),
|
||||
[dir=rtl] .pico [role=group] select:not(:last-child),
|
||||
[dir=rtl] .pico [role=group] label:not(:last-child) {
|
||||
border-top-right-radius: var(--pico-border-radius);
|
||||
border-top-left-radius: 0;
|
||||
border-bottom-right-radius: var(--pico-border-radius);
|
||||
border-bottom-left-radius: 0;
|
||||
}
|
||||
[dir=rtl] button:not(:first-child),
|
||||
[dir=rtl] [type=submit]:not(:first-child),
|
||||
[dir=rtl] [type=reset]:not(:first-child),
|
||||
[dir=rtl] [type=button]:not(:first-child),
|
||||
[dir=rtl] [role=button]:not(:first-child),
|
||||
[dir=rtl] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] select:not(:first-child),
|
||||
[dir=rtl] label:not(:first-child) {
|
||||
margin-right: calc(var(--pico-border-width) * -1);
|
||||
margin-left: auto;
|
||||
}
|
||||
|
||||
/**
|
||||
* Loading ([aria-busy=true])
|
||||
*/
|
||||
|
|
2
css/pico.classless.conditional.zinc.min.css
vendored
2
css/pico.classless.conditional.zinc.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -2137,7 +2137,6 @@ details summary {
|
|||
line-height: 1rem;
|
||||
list-style-type: none;
|
||||
cursor: pointer;
|
||||
transition: color var(--pico-transition);
|
||||
}
|
||||
details summary:not([role]) {
|
||||
color: var(--pico-accordion-close-summary-color);
|
||||
|
@ -2163,7 +2162,6 @@ details summary::after {
|
|||
background-size: 1rem auto;
|
||||
background-repeat: no-repeat;
|
||||
content: "";
|
||||
transition: transform var(--pico-transition);
|
||||
}
|
||||
details summary:focus {
|
||||
outline: none;
|
||||
|
@ -2189,17 +2187,17 @@ details[open] > summary {
|
|||
details[open] > summary:not([role]):not(:focus) {
|
||||
color: var(--pico-accordion-open-summary-color);
|
||||
}
|
||||
details[open] > summary::after {
|
||||
transform: rotate(0);
|
||||
}
|
||||
|
||||
[dir=rtl] details summary {
|
||||
text-align: right;
|
||||
}
|
||||
[dir=rtl] details summary::after {
|
||||
float: left;
|
||||
transform: rotate(90deg);
|
||||
background-position: left center;
|
||||
}
|
||||
[dir=rtl] details[open] > summary::after {
|
||||
transform: rotate(0);
|
||||
}
|
||||
|
||||
/**
|
||||
* Card (<article>, role="article")
|
||||
|
@ -2434,6 +2432,46 @@ article > footer [role=group]:has(+ [type=hidden]),
|
|||
border-bottom-right-radius: 5rem;
|
||||
}
|
||||
|
||||
[dir=rtl] [role=search] > *:not(:first-child),
|
||||
[dir=rtl] [role=search] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] [role=search] select:not(:first-child),
|
||||
[dir=rtl] [role=search] label:not(:first-child),
|
||||
[dir=rtl] [role=group] > *:not(:first-child),
|
||||
[dir=rtl] [role=group] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] [role=group] select:not(:first-child),
|
||||
[dir=rtl] [role=group] label:not(:first-child) {
|
||||
margin-right: 0;
|
||||
margin-left: auto;
|
||||
border-top-right-radius: 0;
|
||||
border-top-left-radius: var(--pico-border-radius);
|
||||
border-bottom-right-radius: 0;
|
||||
border-bottom-left-radius: var(--pico-border-radius);
|
||||
}
|
||||
[dir=rtl] [role=search] > *:not(:last-child),
|
||||
[dir=rtl] [role=search] input:not([type=checkbox], [type=radio]):not(:last-child),
|
||||
[dir=rtl] [role=search] select:not(:last-child),
|
||||
[dir=rtl] [role=search] label:not(:last-child),
|
||||
[dir=rtl] [role=group] > *:not(:last-child),
|
||||
[dir=rtl] [role=group] input:not([type=checkbox], [type=radio]):not(:last-child),
|
||||
[dir=rtl] [role=group] select:not(:last-child),
|
||||
[dir=rtl] [role=group] label:not(:last-child) {
|
||||
border-top-right-radius: var(--pico-border-radius);
|
||||
border-top-left-radius: 0;
|
||||
border-bottom-right-radius: var(--pico-border-radius);
|
||||
border-bottom-left-radius: 0;
|
||||
}
|
||||
[dir=rtl] button:not(:first-child),
|
||||
[dir=rtl] [type=submit]:not(:first-child),
|
||||
[dir=rtl] [type=reset]:not(:first-child),
|
||||
[dir=rtl] [type=button]:not(:first-child),
|
||||
[dir=rtl] [role=button]:not(:first-child),
|
||||
[dir=rtl] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] select:not(:first-child),
|
||||
[dir=rtl] label:not(:first-child) {
|
||||
margin-right: calc(var(--pico-border-width) * -1);
|
||||
margin-left: auto;
|
||||
}
|
||||
|
||||
/**
|
||||
* Loading ([aria-busy=true])
|
||||
*/
|
||||
|
|
|
@ -2137,7 +2137,6 @@ details summary {
|
|||
line-height: 1rem;
|
||||
list-style-type: none;
|
||||
cursor: pointer;
|
||||
transition: color var(--pico-transition);
|
||||
}
|
||||
details summary:not([role]) {
|
||||
color: var(--pico-accordion-close-summary-color);
|
||||
|
@ -2163,7 +2162,6 @@ details summary::after {
|
|||
background-size: 1rem auto;
|
||||
background-repeat: no-repeat;
|
||||
content: "";
|
||||
transition: transform var(--pico-transition);
|
||||
}
|
||||
details summary:focus {
|
||||
outline: none;
|
||||
|
@ -2189,17 +2187,17 @@ details[open] > summary {
|
|||
details[open] > summary:not([role]):not(:focus) {
|
||||
color: var(--pico-accordion-open-summary-color);
|
||||
}
|
||||
details[open] > summary::after {
|
||||
transform: rotate(0);
|
||||
}
|
||||
|
||||
[dir=rtl] details summary {
|
||||
text-align: right;
|
||||
}
|
||||
[dir=rtl] details summary::after {
|
||||
float: left;
|
||||
transform: rotate(90deg);
|
||||
background-position: left center;
|
||||
}
|
||||
[dir=rtl] details[open] > summary::after {
|
||||
transform: rotate(0);
|
||||
}
|
||||
|
||||
/**
|
||||
* Card (<article>, role="article")
|
||||
|
@ -2434,6 +2432,46 @@ article > footer [role=group]:has(+ [type=hidden]),
|
|||
border-bottom-right-radius: 5rem;
|
||||
}
|
||||
|
||||
[dir=rtl] [role=search] > *:not(:first-child),
|
||||
[dir=rtl] [role=search] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] [role=search] select:not(:first-child),
|
||||
[dir=rtl] [role=search] label:not(:first-child),
|
||||
[dir=rtl] [role=group] > *:not(:first-child),
|
||||
[dir=rtl] [role=group] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] [role=group] select:not(:first-child),
|
||||
[dir=rtl] [role=group] label:not(:first-child) {
|
||||
margin-right: 0;
|
||||
margin-left: auto;
|
||||
border-top-right-radius: 0;
|
||||
border-top-left-radius: var(--pico-border-radius);
|
||||
border-bottom-right-radius: 0;
|
||||
border-bottom-left-radius: var(--pico-border-radius);
|
||||
}
|
||||
[dir=rtl] [role=search] > *:not(:last-child),
|
||||
[dir=rtl] [role=search] input:not([type=checkbox], [type=radio]):not(:last-child),
|
||||
[dir=rtl] [role=search] select:not(:last-child),
|
||||
[dir=rtl] [role=search] label:not(:last-child),
|
||||
[dir=rtl] [role=group] > *:not(:last-child),
|
||||
[dir=rtl] [role=group] input:not([type=checkbox], [type=radio]):not(:last-child),
|
||||
[dir=rtl] [role=group] select:not(:last-child),
|
||||
[dir=rtl] [role=group] label:not(:last-child) {
|
||||
border-top-right-radius: var(--pico-border-radius);
|
||||
border-top-left-radius: 0;
|
||||
border-bottom-right-radius: var(--pico-border-radius);
|
||||
border-bottom-left-radius: 0;
|
||||
}
|
||||
[dir=rtl] button:not(:first-child),
|
||||
[dir=rtl] [type=submit]:not(:first-child),
|
||||
[dir=rtl] [type=reset]:not(:first-child),
|
||||
[dir=rtl] [type=button]:not(:first-child),
|
||||
[dir=rtl] [role=button]:not(:first-child),
|
||||
[dir=rtl] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] select:not(:first-child),
|
||||
[dir=rtl] label:not(:first-child) {
|
||||
margin-right: calc(var(--pico-border-width) * -1);
|
||||
margin-left: auto;
|
||||
}
|
||||
|
||||
/**
|
||||
* Loading ([aria-busy=true])
|
||||
*/
|
||||
|
|
2
css/pico.classless.cyan.min.css
vendored
2
css/pico.classless.cyan.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -2137,7 +2137,6 @@ details summary {
|
|||
line-height: 1rem;
|
||||
list-style-type: none;
|
||||
cursor: pointer;
|
||||
transition: color var(--pico-transition);
|
||||
}
|
||||
details summary:not([role]) {
|
||||
color: var(--pico-accordion-close-summary-color);
|
||||
|
@ -2163,7 +2162,6 @@ details summary::after {
|
|||
background-size: 1rem auto;
|
||||
background-repeat: no-repeat;
|
||||
content: "";
|
||||
transition: transform var(--pico-transition);
|
||||
}
|
||||
details summary:focus {
|
||||
outline: none;
|
||||
|
@ -2189,17 +2187,17 @@ details[open] > summary {
|
|||
details[open] > summary:not([role]):not(:focus) {
|
||||
color: var(--pico-accordion-open-summary-color);
|
||||
}
|
||||
details[open] > summary::after {
|
||||
transform: rotate(0);
|
||||
}
|
||||
|
||||
[dir=rtl] details summary {
|
||||
text-align: right;
|
||||
}
|
||||
[dir=rtl] details summary::after {
|
||||
float: left;
|
||||
transform: rotate(90deg);
|
||||
background-position: left center;
|
||||
}
|
||||
[dir=rtl] details[open] > summary::after {
|
||||
transform: rotate(0);
|
||||
}
|
||||
|
||||
/**
|
||||
* Card (<article>, role="article")
|
||||
|
@ -2434,6 +2432,46 @@ article > footer [role=group]:has(+ [type=hidden]),
|
|||
border-bottom-right-radius: 5rem;
|
||||
}
|
||||
|
||||
[dir=rtl] [role=search] > *:not(:first-child),
|
||||
[dir=rtl] [role=search] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] [role=search] select:not(:first-child),
|
||||
[dir=rtl] [role=search] label:not(:first-child),
|
||||
[dir=rtl] [role=group] > *:not(:first-child),
|
||||
[dir=rtl] [role=group] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] [role=group] select:not(:first-child),
|
||||
[dir=rtl] [role=group] label:not(:first-child) {
|
||||
margin-right: 0;
|
||||
margin-left: auto;
|
||||
border-top-right-radius: 0;
|
||||
border-top-left-radius: var(--pico-border-radius);
|
||||
border-bottom-right-radius: 0;
|
||||
border-bottom-left-radius: var(--pico-border-radius);
|
||||
}
|
||||
[dir=rtl] [role=search] > *:not(:last-child),
|
||||
[dir=rtl] [role=search] input:not([type=checkbox], [type=radio]):not(:last-child),
|
||||
[dir=rtl] [role=search] select:not(:last-child),
|
||||
[dir=rtl] [role=search] label:not(:last-child),
|
||||
[dir=rtl] [role=group] > *:not(:last-child),
|
||||
[dir=rtl] [role=group] input:not([type=checkbox], [type=radio]):not(:last-child),
|
||||
[dir=rtl] [role=group] select:not(:last-child),
|
||||
[dir=rtl] [role=group] label:not(:last-child) {
|
||||
border-top-right-radius: var(--pico-border-radius);
|
||||
border-top-left-radius: 0;
|
||||
border-bottom-right-radius: var(--pico-border-radius);
|
||||
border-bottom-left-radius: 0;
|
||||
}
|
||||
[dir=rtl] button:not(:first-child),
|
||||
[dir=rtl] [type=submit]:not(:first-child),
|
||||
[dir=rtl] [type=reset]:not(:first-child),
|
||||
[dir=rtl] [type=button]:not(:first-child),
|
||||
[dir=rtl] [role=button]:not(:first-child),
|
||||
[dir=rtl] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] select:not(:first-child),
|
||||
[dir=rtl] label:not(:first-child) {
|
||||
margin-right: calc(var(--pico-border-width) * -1);
|
||||
margin-left: auto;
|
||||
}
|
||||
|
||||
/**
|
||||
* Loading ([aria-busy=true])
|
||||
*/
|
||||
|
|
2
css/pico.classless.fuchsia.min.css
vendored
2
css/pico.classless.fuchsia.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -2137,7 +2137,6 @@ details summary {
|
|||
line-height: 1rem;
|
||||
list-style-type: none;
|
||||
cursor: pointer;
|
||||
transition: color var(--pico-transition);
|
||||
}
|
||||
details summary:not([role]) {
|
||||
color: var(--pico-accordion-close-summary-color);
|
||||
|
@ -2163,7 +2162,6 @@ details summary::after {
|
|||
background-size: 1rem auto;
|
||||
background-repeat: no-repeat;
|
||||
content: "";
|
||||
transition: transform var(--pico-transition);
|
||||
}
|
||||
details summary:focus {
|
||||
outline: none;
|
||||
|
@ -2189,17 +2187,17 @@ details[open] > summary {
|
|||
details[open] > summary:not([role]):not(:focus) {
|
||||
color: var(--pico-accordion-open-summary-color);
|
||||
}
|
||||
details[open] > summary::after {
|
||||
transform: rotate(0);
|
||||
}
|
||||
|
||||
[dir=rtl] details summary {
|
||||
text-align: right;
|
||||
}
|
||||
[dir=rtl] details summary::after {
|
||||
float: left;
|
||||
transform: rotate(90deg);
|
||||
background-position: left center;
|
||||
}
|
||||
[dir=rtl] details[open] > summary::after {
|
||||
transform: rotate(0);
|
||||
}
|
||||
|
||||
/**
|
||||
* Card (<article>, role="article")
|
||||
|
@ -2434,6 +2432,46 @@ article > footer [role=group]:has(+ [type=hidden]),
|
|||
border-bottom-right-radius: 5rem;
|
||||
}
|
||||
|
||||
[dir=rtl] [role=search] > *:not(:first-child),
|
||||
[dir=rtl] [role=search] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] [role=search] select:not(:first-child),
|
||||
[dir=rtl] [role=search] label:not(:first-child),
|
||||
[dir=rtl] [role=group] > *:not(:first-child),
|
||||
[dir=rtl] [role=group] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] [role=group] select:not(:first-child),
|
||||
[dir=rtl] [role=group] label:not(:first-child) {
|
||||
margin-right: 0;
|
||||
margin-left: auto;
|
||||
border-top-right-radius: 0;
|
||||
border-top-left-radius: var(--pico-border-radius);
|
||||
border-bottom-right-radius: 0;
|
||||
border-bottom-left-radius: var(--pico-border-radius);
|
||||
}
|
||||
[dir=rtl] [role=search] > *:not(:last-child),
|
||||
[dir=rtl] [role=search] input:not([type=checkbox], [type=radio]):not(:last-child),
|
||||
[dir=rtl] [role=search] select:not(:last-child),
|
||||
[dir=rtl] [role=search] label:not(:last-child),
|
||||
[dir=rtl] [role=group] > *:not(:last-child),
|
||||
[dir=rtl] [role=group] input:not([type=checkbox], [type=radio]):not(:last-child),
|
||||
[dir=rtl] [role=group] select:not(:last-child),
|
||||
[dir=rtl] [role=group] label:not(:last-child) {
|
||||
border-top-right-radius: var(--pico-border-radius);
|
||||
border-top-left-radius: 0;
|
||||
border-bottom-right-radius: var(--pico-border-radius);
|
||||
border-bottom-left-radius: 0;
|
||||
}
|
||||
[dir=rtl] button:not(:first-child),
|
||||
[dir=rtl] [type=submit]:not(:first-child),
|
||||
[dir=rtl] [type=reset]:not(:first-child),
|
||||
[dir=rtl] [type=button]:not(:first-child),
|
||||
[dir=rtl] [role=button]:not(:first-child),
|
||||
[dir=rtl] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] select:not(:first-child),
|
||||
[dir=rtl] label:not(:first-child) {
|
||||
margin-right: calc(var(--pico-border-width) * -1);
|
||||
margin-left: auto;
|
||||
}
|
||||
|
||||
/**
|
||||
* Loading ([aria-busy=true])
|
||||
*/
|
||||
|
|
2
css/pico.classless.green.min.css
vendored
2
css/pico.classless.green.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -2137,7 +2137,6 @@ details summary {
|
|||
line-height: 1rem;
|
||||
list-style-type: none;
|
||||
cursor: pointer;
|
||||
transition: color var(--pico-transition);
|
||||
}
|
||||
details summary:not([role]) {
|
||||
color: var(--pico-accordion-close-summary-color);
|
||||
|
@ -2163,7 +2162,6 @@ details summary::after {
|
|||
background-size: 1rem auto;
|
||||
background-repeat: no-repeat;
|
||||
content: "";
|
||||
transition: transform var(--pico-transition);
|
||||
}
|
||||
details summary:focus {
|
||||
outline: none;
|
||||
|
@ -2189,17 +2187,17 @@ details[open] > summary {
|
|||
details[open] > summary:not([role]):not(:focus) {
|
||||
color: var(--pico-accordion-open-summary-color);
|
||||
}
|
||||
details[open] > summary::after {
|
||||
transform: rotate(0);
|
||||
}
|
||||
|
||||
[dir=rtl] details summary {
|
||||
text-align: right;
|
||||
}
|
||||
[dir=rtl] details summary::after {
|
||||
float: left;
|
||||
transform: rotate(90deg);
|
||||
background-position: left center;
|
||||
}
|
||||
[dir=rtl] details[open] > summary::after {
|
||||
transform: rotate(0);
|
||||
}
|
||||
|
||||
/**
|
||||
* Card (<article>, role="article")
|
||||
|
@ -2434,6 +2432,46 @@ article > footer [role=group]:has(+ [type=hidden]),
|
|||
border-bottom-right-radius: 5rem;
|
||||
}
|
||||
|
||||
[dir=rtl] [role=search] > *:not(:first-child),
|
||||
[dir=rtl] [role=search] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] [role=search] select:not(:first-child),
|
||||
[dir=rtl] [role=search] label:not(:first-child),
|
||||
[dir=rtl] [role=group] > *:not(:first-child),
|
||||
[dir=rtl] [role=group] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] [role=group] select:not(:first-child),
|
||||
[dir=rtl] [role=group] label:not(:first-child) {
|
||||
margin-right: 0;
|
||||
margin-left: auto;
|
||||
border-top-right-radius: 0;
|
||||
border-top-left-radius: var(--pico-border-radius);
|
||||
border-bottom-right-radius: 0;
|
||||
border-bottom-left-radius: var(--pico-border-radius);
|
||||
}
|
||||
[dir=rtl] [role=search] > *:not(:last-child),
|
||||
[dir=rtl] [role=search] input:not([type=checkbox], [type=radio]):not(:last-child),
|
||||
[dir=rtl] [role=search] select:not(:last-child),
|
||||
[dir=rtl] [role=search] label:not(:last-child),
|
||||
[dir=rtl] [role=group] > *:not(:last-child),
|
||||
[dir=rtl] [role=group] input:not([type=checkbox], [type=radio]):not(:last-child),
|
||||
[dir=rtl] [role=group] select:not(:last-child),
|
||||
[dir=rtl] [role=group] label:not(:last-child) {
|
||||
border-top-right-radius: var(--pico-border-radius);
|
||||
border-top-left-radius: 0;
|
||||
border-bottom-right-radius: var(--pico-border-radius);
|
||||
border-bottom-left-radius: 0;
|
||||
}
|
||||
[dir=rtl] button:not(:first-child),
|
||||
[dir=rtl] [type=submit]:not(:first-child),
|
||||
[dir=rtl] [type=reset]:not(:first-child),
|
||||
[dir=rtl] [type=button]:not(:first-child),
|
||||
[dir=rtl] [role=button]:not(:first-child),
|
||||
[dir=rtl] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] select:not(:first-child),
|
||||
[dir=rtl] label:not(:first-child) {
|
||||
margin-right: calc(var(--pico-border-width) * -1);
|
||||
margin-left: auto;
|
||||
}
|
||||
|
||||
/**
|
||||
* Loading ([aria-busy=true])
|
||||
*/
|
||||
|
|
2
css/pico.classless.grey.min.css
vendored
2
css/pico.classless.grey.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -2137,7 +2137,6 @@ details summary {
|
|||
line-height: 1rem;
|
||||
list-style-type: none;
|
||||
cursor: pointer;
|
||||
transition: color var(--pico-transition);
|
||||
}
|
||||
details summary:not([role]) {
|
||||
color: var(--pico-accordion-close-summary-color);
|
||||
|
@ -2163,7 +2162,6 @@ details summary::after {
|
|||
background-size: 1rem auto;
|
||||
background-repeat: no-repeat;
|
||||
content: "";
|
||||
transition: transform var(--pico-transition);
|
||||
}
|
||||
details summary:focus {
|
||||
outline: none;
|
||||
|
@ -2189,17 +2187,17 @@ details[open] > summary {
|
|||
details[open] > summary:not([role]):not(:focus) {
|
||||
color: var(--pico-accordion-open-summary-color);
|
||||
}
|
||||
details[open] > summary::after {
|
||||
transform: rotate(0);
|
||||
}
|
||||
|
||||
[dir=rtl] details summary {
|
||||
text-align: right;
|
||||
}
|
||||
[dir=rtl] details summary::after {
|
||||
float: left;
|
||||
transform: rotate(90deg);
|
||||
background-position: left center;
|
||||
}
|
||||
[dir=rtl] details[open] > summary::after {
|
||||
transform: rotate(0);
|
||||
}
|
||||
|
||||
/**
|
||||
* Card (<article>, role="article")
|
||||
|
@ -2434,6 +2432,46 @@ article > footer [role=group]:has(+ [type=hidden]),
|
|||
border-bottom-right-radius: 5rem;
|
||||
}
|
||||
|
||||
[dir=rtl] [role=search] > *:not(:first-child),
|
||||
[dir=rtl] [role=search] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] [role=search] select:not(:first-child),
|
||||
[dir=rtl] [role=search] label:not(:first-child),
|
||||
[dir=rtl] [role=group] > *:not(:first-child),
|
||||
[dir=rtl] [role=group] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] [role=group] select:not(:first-child),
|
||||
[dir=rtl] [role=group] label:not(:first-child) {
|
||||
margin-right: 0;
|
||||
margin-left: auto;
|
||||
border-top-right-radius: 0;
|
||||
border-top-left-radius: var(--pico-border-radius);
|
||||
border-bottom-right-radius: 0;
|
||||
border-bottom-left-radius: var(--pico-border-radius);
|
||||
}
|
||||
[dir=rtl] [role=search] > *:not(:last-child),
|
||||
[dir=rtl] [role=search] input:not([type=checkbox], [type=radio]):not(:last-child),
|
||||
[dir=rtl] [role=search] select:not(:last-child),
|
||||
[dir=rtl] [role=search] label:not(:last-child),
|
||||
[dir=rtl] [role=group] > *:not(:last-child),
|
||||
[dir=rtl] [role=group] input:not([type=checkbox], [type=radio]):not(:last-child),
|
||||
[dir=rtl] [role=group] select:not(:last-child),
|
||||
[dir=rtl] [role=group] label:not(:last-child) {
|
||||
border-top-right-radius: var(--pico-border-radius);
|
||||
border-top-left-radius: 0;
|
||||
border-bottom-right-radius: var(--pico-border-radius);
|
||||
border-bottom-left-radius: 0;
|
||||
}
|
||||
[dir=rtl] button:not(:first-child),
|
||||
[dir=rtl] [type=submit]:not(:first-child),
|
||||
[dir=rtl] [type=reset]:not(:first-child),
|
||||
[dir=rtl] [type=button]:not(:first-child),
|
||||
[dir=rtl] [role=button]:not(:first-child),
|
||||
[dir=rtl] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] select:not(:first-child),
|
||||
[dir=rtl] label:not(:first-child) {
|
||||
margin-right: calc(var(--pico-border-width) * -1);
|
||||
margin-left: auto;
|
||||
}
|
||||
|
||||
/**
|
||||
* Loading ([aria-busy=true])
|
||||
*/
|
||||
|
|
2
css/pico.classless.indigo.min.css
vendored
2
css/pico.classless.indigo.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -2137,7 +2137,6 @@ details summary {
|
|||
line-height: 1rem;
|
||||
list-style-type: none;
|
||||
cursor: pointer;
|
||||
transition: color var(--pico-transition);
|
||||
}
|
||||
details summary:not([role]) {
|
||||
color: var(--pico-accordion-close-summary-color);
|
||||
|
@ -2163,7 +2162,6 @@ details summary::after {
|
|||
background-size: 1rem auto;
|
||||
background-repeat: no-repeat;
|
||||
content: "";
|
||||
transition: transform var(--pico-transition);
|
||||
}
|
||||
details summary:focus {
|
||||
outline: none;
|
||||
|
@ -2189,17 +2187,17 @@ details[open] > summary {
|
|||
details[open] > summary:not([role]):not(:focus) {
|
||||
color: var(--pico-accordion-open-summary-color);
|
||||
}
|
||||
details[open] > summary::after {
|
||||
transform: rotate(0);
|
||||
}
|
||||
|
||||
[dir=rtl] details summary {
|
||||
text-align: right;
|
||||
}
|
||||
[dir=rtl] details summary::after {
|
||||
float: left;
|
||||
transform: rotate(90deg);
|
||||
background-position: left center;
|
||||
}
|
||||
[dir=rtl] details[open] > summary::after {
|
||||
transform: rotate(0);
|
||||
}
|
||||
|
||||
/**
|
||||
* Card (<article>, role="article")
|
||||
|
@ -2434,6 +2432,46 @@ article > footer [role=group]:has(+ [type=hidden]),
|
|||
border-bottom-right-radius: 5rem;
|
||||
}
|
||||
|
||||
[dir=rtl] [role=search] > *:not(:first-child),
|
||||
[dir=rtl] [role=search] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] [role=search] select:not(:first-child),
|
||||
[dir=rtl] [role=search] label:not(:first-child),
|
||||
[dir=rtl] [role=group] > *:not(:first-child),
|
||||
[dir=rtl] [role=group] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] [role=group] select:not(:first-child),
|
||||
[dir=rtl] [role=group] label:not(:first-child) {
|
||||
margin-right: 0;
|
||||
margin-left: auto;
|
||||
border-top-right-radius: 0;
|
||||
border-top-left-radius: var(--pico-border-radius);
|
||||
border-bottom-right-radius: 0;
|
||||
border-bottom-left-radius: var(--pico-border-radius);
|
||||
}
|
||||
[dir=rtl] [role=search] > *:not(:last-child),
|
||||
[dir=rtl] [role=search] input:not([type=checkbox], [type=radio]):not(:last-child),
|
||||
[dir=rtl] [role=search] select:not(:last-child),
|
||||
[dir=rtl] [role=search] label:not(:last-child),
|
||||
[dir=rtl] [role=group] > *:not(:last-child),
|
||||
[dir=rtl] [role=group] input:not([type=checkbox], [type=radio]):not(:last-child),
|
||||
[dir=rtl] [role=group] select:not(:last-child),
|
||||
[dir=rtl] [role=group] label:not(:last-child) {
|
||||
border-top-right-radius: var(--pico-border-radius);
|
||||
border-top-left-radius: 0;
|
||||
border-bottom-right-radius: var(--pico-border-radius);
|
||||
border-bottom-left-radius: 0;
|
||||
}
|
||||
[dir=rtl] button:not(:first-child),
|
||||
[dir=rtl] [type=submit]:not(:first-child),
|
||||
[dir=rtl] [type=reset]:not(:first-child),
|
||||
[dir=rtl] [type=button]:not(:first-child),
|
||||
[dir=rtl] [role=button]:not(:first-child),
|
||||
[dir=rtl] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] select:not(:first-child),
|
||||
[dir=rtl] label:not(:first-child) {
|
||||
margin-right: calc(var(--pico-border-width) * -1);
|
||||
margin-left: auto;
|
||||
}
|
||||
|
||||
/**
|
||||
* Loading ([aria-busy=true])
|
||||
*/
|
||||
|
|
2
css/pico.classless.jade.min.css
vendored
2
css/pico.classless.jade.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -2137,7 +2137,6 @@ details summary {
|
|||
line-height: 1rem;
|
||||
list-style-type: none;
|
||||
cursor: pointer;
|
||||
transition: color var(--pico-transition);
|
||||
}
|
||||
details summary:not([role]) {
|
||||
color: var(--pico-accordion-close-summary-color);
|
||||
|
@ -2163,7 +2162,6 @@ details summary::after {
|
|||
background-size: 1rem auto;
|
||||
background-repeat: no-repeat;
|
||||
content: "";
|
||||
transition: transform var(--pico-transition);
|
||||
}
|
||||
details summary:focus {
|
||||
outline: none;
|
||||
|
@ -2189,17 +2187,17 @@ details[open] > summary {
|
|||
details[open] > summary:not([role]):not(:focus) {
|
||||
color: var(--pico-accordion-open-summary-color);
|
||||
}
|
||||
details[open] > summary::after {
|
||||
transform: rotate(0);
|
||||
}
|
||||
|
||||
[dir=rtl] details summary {
|
||||
text-align: right;
|
||||
}
|
||||
[dir=rtl] details summary::after {
|
||||
float: left;
|
||||
transform: rotate(90deg);
|
||||
background-position: left center;
|
||||
}
|
||||
[dir=rtl] details[open] > summary::after {
|
||||
transform: rotate(0);
|
||||
}
|
||||
|
||||
/**
|
||||
* Card (<article>, role="article")
|
||||
|
@ -2434,6 +2432,46 @@ article > footer [role=group]:has(+ [type=hidden]),
|
|||
border-bottom-right-radius: 5rem;
|
||||
}
|
||||
|
||||
[dir=rtl] [role=search] > *:not(:first-child),
|
||||
[dir=rtl] [role=search] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] [role=search] select:not(:first-child),
|
||||
[dir=rtl] [role=search] label:not(:first-child),
|
||||
[dir=rtl] [role=group] > *:not(:first-child),
|
||||
[dir=rtl] [role=group] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] [role=group] select:not(:first-child),
|
||||
[dir=rtl] [role=group] label:not(:first-child) {
|
||||
margin-right: 0;
|
||||
margin-left: auto;
|
||||
border-top-right-radius: 0;
|
||||
border-top-left-radius: var(--pico-border-radius);
|
||||
border-bottom-right-radius: 0;
|
||||
border-bottom-left-radius: var(--pico-border-radius);
|
||||
}
|
||||
[dir=rtl] [role=search] > *:not(:last-child),
|
||||
[dir=rtl] [role=search] input:not([type=checkbox], [type=radio]):not(:last-child),
|
||||
[dir=rtl] [role=search] select:not(:last-child),
|
||||
[dir=rtl] [role=search] label:not(:last-child),
|
||||
[dir=rtl] [role=group] > *:not(:last-child),
|
||||
[dir=rtl] [role=group] input:not([type=checkbox], [type=radio]):not(:last-child),
|
||||
[dir=rtl] [role=group] select:not(:last-child),
|
||||
[dir=rtl] [role=group] label:not(:last-child) {
|
||||
border-top-right-radius: var(--pico-border-radius);
|
||||
border-top-left-radius: 0;
|
||||
border-bottom-right-radius: var(--pico-border-radius);
|
||||
border-bottom-left-radius: 0;
|
||||
}
|
||||
[dir=rtl] button:not(:first-child),
|
||||
[dir=rtl] [type=submit]:not(:first-child),
|
||||
[dir=rtl] [type=reset]:not(:first-child),
|
||||
[dir=rtl] [type=button]:not(:first-child),
|
||||
[dir=rtl] [role=button]:not(:first-child),
|
||||
[dir=rtl] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] select:not(:first-child),
|
||||
[dir=rtl] label:not(:first-child) {
|
||||
margin-right: calc(var(--pico-border-width) * -1);
|
||||
margin-left: auto;
|
||||
}
|
||||
|
||||
/**
|
||||
* Loading ([aria-busy=true])
|
||||
*/
|
||||
|
|
2
css/pico.classless.lime.min.css
vendored
2
css/pico.classless.lime.min.css
vendored
File diff suppressed because one or more lines are too long
2
css/pico.classless.min.css
vendored
2
css/pico.classless.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -2137,7 +2137,6 @@ details summary {
|
|||
line-height: 1rem;
|
||||
list-style-type: none;
|
||||
cursor: pointer;
|
||||
transition: color var(--pico-transition);
|
||||
}
|
||||
details summary:not([role]) {
|
||||
color: var(--pico-accordion-close-summary-color);
|
||||
|
@ -2163,7 +2162,6 @@ details summary::after {
|
|||
background-size: 1rem auto;
|
||||
background-repeat: no-repeat;
|
||||
content: "";
|
||||
transition: transform var(--pico-transition);
|
||||
}
|
||||
details summary:focus {
|
||||
outline: none;
|
||||
|
@ -2189,17 +2187,17 @@ details[open] > summary {
|
|||
details[open] > summary:not([role]):not(:focus) {
|
||||
color: var(--pico-accordion-open-summary-color);
|
||||
}
|
||||
details[open] > summary::after {
|
||||
transform: rotate(0);
|
||||
}
|
||||
|
||||
[dir=rtl] details summary {
|
||||
text-align: right;
|
||||
}
|
||||
[dir=rtl] details summary::after {
|
||||
float: left;
|
||||
transform: rotate(90deg);
|
||||
background-position: left center;
|
||||
}
|
||||
[dir=rtl] details[open] > summary::after {
|
||||
transform: rotate(0);
|
||||
}
|
||||
|
||||
/**
|
||||
* Card (<article>, role="article")
|
||||
|
@ -2434,6 +2432,46 @@ article > footer [role=group]:has(+ [type=hidden]),
|
|||
border-bottom-right-radius: 5rem;
|
||||
}
|
||||
|
||||
[dir=rtl] [role=search] > *:not(:first-child),
|
||||
[dir=rtl] [role=search] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] [role=search] select:not(:first-child),
|
||||
[dir=rtl] [role=search] label:not(:first-child),
|
||||
[dir=rtl] [role=group] > *:not(:first-child),
|
||||
[dir=rtl] [role=group] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] [role=group] select:not(:first-child),
|
||||
[dir=rtl] [role=group] label:not(:first-child) {
|
||||
margin-right: 0;
|
||||
margin-left: auto;
|
||||
border-top-right-radius: 0;
|
||||
border-top-left-radius: var(--pico-border-radius);
|
||||
border-bottom-right-radius: 0;
|
||||
border-bottom-left-radius: var(--pico-border-radius);
|
||||
}
|
||||
[dir=rtl] [role=search] > *:not(:last-child),
|
||||
[dir=rtl] [role=search] input:not([type=checkbox], [type=radio]):not(:last-child),
|
||||
[dir=rtl] [role=search] select:not(:last-child),
|
||||
[dir=rtl] [role=search] label:not(:last-child),
|
||||
[dir=rtl] [role=group] > *:not(:last-child),
|
||||
[dir=rtl] [role=group] input:not([type=checkbox], [type=radio]):not(:last-child),
|
||||
[dir=rtl] [role=group] select:not(:last-child),
|
||||
[dir=rtl] [role=group] label:not(:last-child) {
|
||||
border-top-right-radius: var(--pico-border-radius);
|
||||
border-top-left-radius: 0;
|
||||
border-bottom-right-radius: var(--pico-border-radius);
|
||||
border-bottom-left-radius: 0;
|
||||
}
|
||||
[dir=rtl] button:not(:first-child),
|
||||
[dir=rtl] [type=submit]:not(:first-child),
|
||||
[dir=rtl] [type=reset]:not(:first-child),
|
||||
[dir=rtl] [type=button]:not(:first-child),
|
||||
[dir=rtl] [role=button]:not(:first-child),
|
||||
[dir=rtl] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] select:not(:first-child),
|
||||
[dir=rtl] label:not(:first-child) {
|
||||
margin-right: calc(var(--pico-border-width) * -1);
|
||||
margin-left: auto;
|
||||
}
|
||||
|
||||
/**
|
||||
* Loading ([aria-busy=true])
|
||||
*/
|
||||
|
|
2
css/pico.classless.orange.min.css
vendored
2
css/pico.classless.orange.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -2137,7 +2137,6 @@ details summary {
|
|||
line-height: 1rem;
|
||||
list-style-type: none;
|
||||
cursor: pointer;
|
||||
transition: color var(--pico-transition);
|
||||
}
|
||||
details summary:not([role]) {
|
||||
color: var(--pico-accordion-close-summary-color);
|
||||
|
@ -2163,7 +2162,6 @@ details summary::after {
|
|||
background-size: 1rem auto;
|
||||
background-repeat: no-repeat;
|
||||
content: "";
|
||||
transition: transform var(--pico-transition);
|
||||
}
|
||||
details summary:focus {
|
||||
outline: none;
|
||||
|
@ -2189,17 +2187,17 @@ details[open] > summary {
|
|||
details[open] > summary:not([role]):not(:focus) {
|
||||
color: var(--pico-accordion-open-summary-color);
|
||||
}
|
||||
details[open] > summary::after {
|
||||
transform: rotate(0);
|
||||
}
|
||||
|
||||
[dir=rtl] details summary {
|
||||
text-align: right;
|
||||
}
|
||||
[dir=rtl] details summary::after {
|
||||
float: left;
|
||||
transform: rotate(90deg);
|
||||
background-position: left center;
|
||||
}
|
||||
[dir=rtl] details[open] > summary::after {
|
||||
transform: rotate(0);
|
||||
}
|
||||
|
||||
/**
|
||||
* Card (<article>, role="article")
|
||||
|
@ -2434,6 +2432,46 @@ article > footer [role=group]:has(+ [type=hidden]),
|
|||
border-bottom-right-radius: 5rem;
|
||||
}
|
||||
|
||||
[dir=rtl] [role=search] > *:not(:first-child),
|
||||
[dir=rtl] [role=search] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] [role=search] select:not(:first-child),
|
||||
[dir=rtl] [role=search] label:not(:first-child),
|
||||
[dir=rtl] [role=group] > *:not(:first-child),
|
||||
[dir=rtl] [role=group] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] [role=group] select:not(:first-child),
|
||||
[dir=rtl] [role=group] label:not(:first-child) {
|
||||
margin-right: 0;
|
||||
margin-left: auto;
|
||||
border-top-right-radius: 0;
|
||||
border-top-left-radius: var(--pico-border-radius);
|
||||
border-bottom-right-radius: 0;
|
||||
border-bottom-left-radius: var(--pico-border-radius);
|
||||
}
|
||||
[dir=rtl] [role=search] > *:not(:last-child),
|
||||
[dir=rtl] [role=search] input:not([type=checkbox], [type=radio]):not(:last-child),
|
||||
[dir=rtl] [role=search] select:not(:last-child),
|
||||
[dir=rtl] [role=search] label:not(:last-child),
|
||||
[dir=rtl] [role=group] > *:not(:last-child),
|
||||
[dir=rtl] [role=group] input:not([type=checkbox], [type=radio]):not(:last-child),
|
||||
[dir=rtl] [role=group] select:not(:last-child),
|
||||
[dir=rtl] [role=group] label:not(:last-child) {
|
||||
border-top-right-radius: var(--pico-border-radius);
|
||||
border-top-left-radius: 0;
|
||||
border-bottom-right-radius: var(--pico-border-radius);
|
||||
border-bottom-left-radius: 0;
|
||||
}
|
||||
[dir=rtl] button:not(:first-child),
|
||||
[dir=rtl] [type=submit]:not(:first-child),
|
||||
[dir=rtl] [type=reset]:not(:first-child),
|
||||
[dir=rtl] [type=button]:not(:first-child),
|
||||
[dir=rtl] [role=button]:not(:first-child),
|
||||
[dir=rtl] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] select:not(:first-child),
|
||||
[dir=rtl] label:not(:first-child) {
|
||||
margin-right: calc(var(--pico-border-width) * -1);
|
||||
margin-left: auto;
|
||||
}
|
||||
|
||||
/**
|
||||
* Loading ([aria-busy=true])
|
||||
*/
|
||||
|
|
2
css/pico.classless.pink.min.css
vendored
2
css/pico.classless.pink.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -2137,7 +2137,6 @@ details summary {
|
|||
line-height: 1rem;
|
||||
list-style-type: none;
|
||||
cursor: pointer;
|
||||
transition: color var(--pico-transition);
|
||||
}
|
||||
details summary:not([role]) {
|
||||
color: var(--pico-accordion-close-summary-color);
|
||||
|
@ -2163,7 +2162,6 @@ details summary::after {
|
|||
background-size: 1rem auto;
|
||||
background-repeat: no-repeat;
|
||||
content: "";
|
||||
transition: transform var(--pico-transition);
|
||||
}
|
||||
details summary:focus {
|
||||
outline: none;
|
||||
|
@ -2189,17 +2187,17 @@ details[open] > summary {
|
|||
details[open] > summary:not([role]):not(:focus) {
|
||||
color: var(--pico-accordion-open-summary-color);
|
||||
}
|
||||
details[open] > summary::after {
|
||||
transform: rotate(0);
|
||||
}
|
||||
|
||||
[dir=rtl] details summary {
|
||||
text-align: right;
|
||||
}
|
||||
[dir=rtl] details summary::after {
|
||||
float: left;
|
||||
transform: rotate(90deg);
|
||||
background-position: left center;
|
||||
}
|
||||
[dir=rtl] details[open] > summary::after {
|
||||
transform: rotate(0);
|
||||
}
|
||||
|
||||
/**
|
||||
* Card (<article>, role="article")
|
||||
|
@ -2434,6 +2432,46 @@ article > footer [role=group]:has(+ [type=hidden]),
|
|||
border-bottom-right-radius: 5rem;
|
||||
}
|
||||
|
||||
[dir=rtl] [role=search] > *:not(:first-child),
|
||||
[dir=rtl] [role=search] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] [role=search] select:not(:first-child),
|
||||
[dir=rtl] [role=search] label:not(:first-child),
|
||||
[dir=rtl] [role=group] > *:not(:first-child),
|
||||
[dir=rtl] [role=group] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] [role=group] select:not(:first-child),
|
||||
[dir=rtl] [role=group] label:not(:first-child) {
|
||||
margin-right: 0;
|
||||
margin-left: auto;
|
||||
border-top-right-radius: 0;
|
||||
border-top-left-radius: var(--pico-border-radius);
|
||||
border-bottom-right-radius: 0;
|
||||
border-bottom-left-radius: var(--pico-border-radius);
|
||||
}
|
||||
[dir=rtl] [role=search] > *:not(:last-child),
|
||||
[dir=rtl] [role=search] input:not([type=checkbox], [type=radio]):not(:last-child),
|
||||
[dir=rtl] [role=search] select:not(:last-child),
|
||||
[dir=rtl] [role=search] label:not(:last-child),
|
||||
[dir=rtl] [role=group] > *:not(:last-child),
|
||||
[dir=rtl] [role=group] input:not([type=checkbox], [type=radio]):not(:last-child),
|
||||
[dir=rtl] [role=group] select:not(:last-child),
|
||||
[dir=rtl] [role=group] label:not(:last-child) {
|
||||
border-top-right-radius: var(--pico-border-radius);
|
||||
border-top-left-radius: 0;
|
||||
border-bottom-right-radius: var(--pico-border-radius);
|
||||
border-bottom-left-radius: 0;
|
||||
}
|
||||
[dir=rtl] button:not(:first-child),
|
||||
[dir=rtl] [type=submit]:not(:first-child),
|
||||
[dir=rtl] [type=reset]:not(:first-child),
|
||||
[dir=rtl] [type=button]:not(:first-child),
|
||||
[dir=rtl] [role=button]:not(:first-child),
|
||||
[dir=rtl] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] select:not(:first-child),
|
||||
[dir=rtl] label:not(:first-child) {
|
||||
margin-right: calc(var(--pico-border-width) * -1);
|
||||
margin-left: auto;
|
||||
}
|
||||
|
||||
/**
|
||||
* Loading ([aria-busy=true])
|
||||
*/
|
||||
|
|
2
css/pico.classless.pumpkin.min.css
vendored
2
css/pico.classless.pumpkin.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -2137,7 +2137,6 @@ details summary {
|
|||
line-height: 1rem;
|
||||
list-style-type: none;
|
||||
cursor: pointer;
|
||||
transition: color var(--pico-transition);
|
||||
}
|
||||
details summary:not([role]) {
|
||||
color: var(--pico-accordion-close-summary-color);
|
||||
|
@ -2163,7 +2162,6 @@ details summary::after {
|
|||
background-size: 1rem auto;
|
||||
background-repeat: no-repeat;
|
||||
content: "";
|
||||
transition: transform var(--pico-transition);
|
||||
}
|
||||
details summary:focus {
|
||||
outline: none;
|
||||
|
@ -2189,17 +2187,17 @@ details[open] > summary {
|
|||
details[open] > summary:not([role]):not(:focus) {
|
||||
color: var(--pico-accordion-open-summary-color);
|
||||
}
|
||||
details[open] > summary::after {
|
||||
transform: rotate(0);
|
||||
}
|
||||
|
||||
[dir=rtl] details summary {
|
||||
text-align: right;
|
||||
}
|
||||
[dir=rtl] details summary::after {
|
||||
float: left;
|
||||
transform: rotate(90deg);
|
||||
background-position: left center;
|
||||
}
|
||||
[dir=rtl] details[open] > summary::after {
|
||||
transform: rotate(0);
|
||||
}
|
||||
|
||||
/**
|
||||
* Card (<article>, role="article")
|
||||
|
@ -2434,6 +2432,46 @@ article > footer [role=group]:has(+ [type=hidden]),
|
|||
border-bottom-right-radius: 5rem;
|
||||
}
|
||||
|
||||
[dir=rtl] [role=search] > *:not(:first-child),
|
||||
[dir=rtl] [role=search] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] [role=search] select:not(:first-child),
|
||||
[dir=rtl] [role=search] label:not(:first-child),
|
||||
[dir=rtl] [role=group] > *:not(:first-child),
|
||||
[dir=rtl] [role=group] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] [role=group] select:not(:first-child),
|
||||
[dir=rtl] [role=group] label:not(:first-child) {
|
||||
margin-right: 0;
|
||||
margin-left: auto;
|
||||
border-top-right-radius: 0;
|
||||
border-top-left-radius: var(--pico-border-radius);
|
||||
border-bottom-right-radius: 0;
|
||||
border-bottom-left-radius: var(--pico-border-radius);
|
||||
}
|
||||
[dir=rtl] [role=search] > *:not(:last-child),
|
||||
[dir=rtl] [role=search] input:not([type=checkbox], [type=radio]):not(:last-child),
|
||||
[dir=rtl] [role=search] select:not(:last-child),
|
||||
[dir=rtl] [role=search] label:not(:last-child),
|
||||
[dir=rtl] [role=group] > *:not(:last-child),
|
||||
[dir=rtl] [role=group] input:not([type=checkbox], [type=radio]):not(:last-child),
|
||||
[dir=rtl] [role=group] select:not(:last-child),
|
||||
[dir=rtl] [role=group] label:not(:last-child) {
|
||||
border-top-right-radius: var(--pico-border-radius);
|
||||
border-top-left-radius: 0;
|
||||
border-bottom-right-radius: var(--pico-border-radius);
|
||||
border-bottom-left-radius: 0;
|
||||
}
|
||||
[dir=rtl] button:not(:first-child),
|
||||
[dir=rtl] [type=submit]:not(:first-child),
|
||||
[dir=rtl] [type=reset]:not(:first-child),
|
||||
[dir=rtl] [type=button]:not(:first-child),
|
||||
[dir=rtl] [role=button]:not(:first-child),
|
||||
[dir=rtl] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] select:not(:first-child),
|
||||
[dir=rtl] label:not(:first-child) {
|
||||
margin-right: calc(var(--pico-border-width) * -1);
|
||||
margin-left: auto;
|
||||
}
|
||||
|
||||
/**
|
||||
* Loading ([aria-busy=true])
|
||||
*/
|
||||
|
|
2
css/pico.classless.purple.min.css
vendored
2
css/pico.classless.purple.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -2137,7 +2137,6 @@ details summary {
|
|||
line-height: 1rem;
|
||||
list-style-type: none;
|
||||
cursor: pointer;
|
||||
transition: color var(--pico-transition);
|
||||
}
|
||||
details summary:not([role]) {
|
||||
color: var(--pico-accordion-close-summary-color);
|
||||
|
@ -2163,7 +2162,6 @@ details summary::after {
|
|||
background-size: 1rem auto;
|
||||
background-repeat: no-repeat;
|
||||
content: "";
|
||||
transition: transform var(--pico-transition);
|
||||
}
|
||||
details summary:focus {
|
||||
outline: none;
|
||||
|
@ -2189,17 +2187,17 @@ details[open] > summary {
|
|||
details[open] > summary:not([role]):not(:focus) {
|
||||
color: var(--pico-accordion-open-summary-color);
|
||||
}
|
||||
details[open] > summary::after {
|
||||
transform: rotate(0);
|
||||
}
|
||||
|
||||
[dir=rtl] details summary {
|
||||
text-align: right;
|
||||
}
|
||||
[dir=rtl] details summary::after {
|
||||
float: left;
|
||||
transform: rotate(90deg);
|
||||
background-position: left center;
|
||||
}
|
||||
[dir=rtl] details[open] > summary::after {
|
||||
transform: rotate(0);
|
||||
}
|
||||
|
||||
/**
|
||||
* Card (<article>, role="article")
|
||||
|
@ -2434,6 +2432,46 @@ article > footer [role=group]:has(+ [type=hidden]),
|
|||
border-bottom-right-radius: 5rem;
|
||||
}
|
||||
|
||||
[dir=rtl] [role=search] > *:not(:first-child),
|
||||
[dir=rtl] [role=search] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] [role=search] select:not(:first-child),
|
||||
[dir=rtl] [role=search] label:not(:first-child),
|
||||
[dir=rtl] [role=group] > *:not(:first-child),
|
||||
[dir=rtl] [role=group] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] [role=group] select:not(:first-child),
|
||||
[dir=rtl] [role=group] label:not(:first-child) {
|
||||
margin-right: 0;
|
||||
margin-left: auto;
|
||||
border-top-right-radius: 0;
|
||||
border-top-left-radius: var(--pico-border-radius);
|
||||
border-bottom-right-radius: 0;
|
||||
border-bottom-left-radius: var(--pico-border-radius);
|
||||
}
|
||||
[dir=rtl] [role=search] > *:not(:last-child),
|
||||
[dir=rtl] [role=search] input:not([type=checkbox], [type=radio]):not(:last-child),
|
||||
[dir=rtl] [role=search] select:not(:last-child),
|
||||
[dir=rtl] [role=search] label:not(:last-child),
|
||||
[dir=rtl] [role=group] > *:not(:last-child),
|
||||
[dir=rtl] [role=group] input:not([type=checkbox], [type=radio]):not(:last-child),
|
||||
[dir=rtl] [role=group] select:not(:last-child),
|
||||
[dir=rtl] [role=group] label:not(:last-child) {
|
||||
border-top-right-radius: var(--pico-border-radius);
|
||||
border-top-left-radius: 0;
|
||||
border-bottom-right-radius: var(--pico-border-radius);
|
||||
border-bottom-left-radius: 0;
|
||||
}
|
||||
[dir=rtl] button:not(:first-child),
|
||||
[dir=rtl] [type=submit]:not(:first-child),
|
||||
[dir=rtl] [type=reset]:not(:first-child),
|
||||
[dir=rtl] [type=button]:not(:first-child),
|
||||
[dir=rtl] [role=button]:not(:first-child),
|
||||
[dir=rtl] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] select:not(:first-child),
|
||||
[dir=rtl] label:not(:first-child) {
|
||||
margin-right: calc(var(--pico-border-width) * -1);
|
||||
margin-left: auto;
|
||||
}
|
||||
|
||||
/**
|
||||
* Loading ([aria-busy=true])
|
||||
*/
|
||||
|
|
2
css/pico.classless.red.min.css
vendored
2
css/pico.classless.red.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -2137,7 +2137,6 @@ details summary {
|
|||
line-height: 1rem;
|
||||
list-style-type: none;
|
||||
cursor: pointer;
|
||||
transition: color var(--pico-transition);
|
||||
}
|
||||
details summary:not([role]) {
|
||||
color: var(--pico-accordion-close-summary-color);
|
||||
|
@ -2163,7 +2162,6 @@ details summary::after {
|
|||
background-size: 1rem auto;
|
||||
background-repeat: no-repeat;
|
||||
content: "";
|
||||
transition: transform var(--pico-transition);
|
||||
}
|
||||
details summary:focus {
|
||||
outline: none;
|
||||
|
@ -2189,17 +2187,17 @@ details[open] > summary {
|
|||
details[open] > summary:not([role]):not(:focus) {
|
||||
color: var(--pico-accordion-open-summary-color);
|
||||
}
|
||||
details[open] > summary::after {
|
||||
transform: rotate(0);
|
||||
}
|
||||
|
||||
[dir=rtl] details summary {
|
||||
text-align: right;
|
||||
}
|
||||
[dir=rtl] details summary::after {
|
||||
float: left;
|
||||
transform: rotate(90deg);
|
||||
background-position: left center;
|
||||
}
|
||||
[dir=rtl] details[open] > summary::after {
|
||||
transform: rotate(0);
|
||||
}
|
||||
|
||||
/**
|
||||
* Card (<article>, role="article")
|
||||
|
@ -2434,6 +2432,46 @@ article > footer [role=group]:has(+ [type=hidden]),
|
|||
border-bottom-right-radius: 5rem;
|
||||
}
|
||||
|
||||
[dir=rtl] [role=search] > *:not(:first-child),
|
||||
[dir=rtl] [role=search] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] [role=search] select:not(:first-child),
|
||||
[dir=rtl] [role=search] label:not(:first-child),
|
||||
[dir=rtl] [role=group] > *:not(:first-child),
|
||||
[dir=rtl] [role=group] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] [role=group] select:not(:first-child),
|
||||
[dir=rtl] [role=group] label:not(:first-child) {
|
||||
margin-right: 0;
|
||||
margin-left: auto;
|
||||
border-top-right-radius: 0;
|
||||
border-top-left-radius: var(--pico-border-radius);
|
||||
border-bottom-right-radius: 0;
|
||||
border-bottom-left-radius: var(--pico-border-radius);
|
||||
}
|
||||
[dir=rtl] [role=search] > *:not(:last-child),
|
||||
[dir=rtl] [role=search] input:not([type=checkbox], [type=radio]):not(:last-child),
|
||||
[dir=rtl] [role=search] select:not(:last-child),
|
||||
[dir=rtl] [role=search] label:not(:last-child),
|
||||
[dir=rtl] [role=group] > *:not(:last-child),
|
||||
[dir=rtl] [role=group] input:not([type=checkbox], [type=radio]):not(:last-child),
|
||||
[dir=rtl] [role=group] select:not(:last-child),
|
||||
[dir=rtl] [role=group] label:not(:last-child) {
|
||||
border-top-right-radius: var(--pico-border-radius);
|
||||
border-top-left-radius: 0;
|
||||
border-bottom-right-radius: var(--pico-border-radius);
|
||||
border-bottom-left-radius: 0;
|
||||
}
|
||||
[dir=rtl] button:not(:first-child),
|
||||
[dir=rtl] [type=submit]:not(:first-child),
|
||||
[dir=rtl] [type=reset]:not(:first-child),
|
||||
[dir=rtl] [type=button]:not(:first-child),
|
||||
[dir=rtl] [role=button]:not(:first-child),
|
||||
[dir=rtl] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] select:not(:first-child),
|
||||
[dir=rtl] label:not(:first-child) {
|
||||
margin-right: calc(var(--pico-border-width) * -1);
|
||||
margin-left: auto;
|
||||
}
|
||||
|
||||
/**
|
||||
* Loading ([aria-busy=true])
|
||||
*/
|
||||
|
|
2
css/pico.classless.sand.min.css
vendored
2
css/pico.classless.sand.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -2137,7 +2137,6 @@ details summary {
|
|||
line-height: 1rem;
|
||||
list-style-type: none;
|
||||
cursor: pointer;
|
||||
transition: color var(--pico-transition);
|
||||
}
|
||||
details summary:not([role]) {
|
||||
color: var(--pico-accordion-close-summary-color);
|
||||
|
@ -2163,7 +2162,6 @@ details summary::after {
|
|||
background-size: 1rem auto;
|
||||
background-repeat: no-repeat;
|
||||
content: "";
|
||||
transition: transform var(--pico-transition);
|
||||
}
|
||||
details summary:focus {
|
||||
outline: none;
|
||||
|
@ -2189,17 +2187,17 @@ details[open] > summary {
|
|||
details[open] > summary:not([role]):not(:focus) {
|
||||
color: var(--pico-accordion-open-summary-color);
|
||||
}
|
||||
details[open] > summary::after {
|
||||
transform: rotate(0);
|
||||
}
|
||||
|
||||
[dir=rtl] details summary {
|
||||
text-align: right;
|
||||
}
|
||||
[dir=rtl] details summary::after {
|
||||
float: left;
|
||||
transform: rotate(90deg);
|
||||
background-position: left center;
|
||||
}
|
||||
[dir=rtl] details[open] > summary::after {
|
||||
transform: rotate(0);
|
||||
}
|
||||
|
||||
/**
|
||||
* Card (<article>, role="article")
|
||||
|
@ -2434,6 +2432,46 @@ article > footer [role=group]:has(+ [type=hidden]),
|
|||
border-bottom-right-radius: 5rem;
|
||||
}
|
||||
|
||||
[dir=rtl] [role=search] > *:not(:first-child),
|
||||
[dir=rtl] [role=search] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] [role=search] select:not(:first-child),
|
||||
[dir=rtl] [role=search] label:not(:first-child),
|
||||
[dir=rtl] [role=group] > *:not(:first-child),
|
||||
[dir=rtl] [role=group] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] [role=group] select:not(:first-child),
|
||||
[dir=rtl] [role=group] label:not(:first-child) {
|
||||
margin-right: 0;
|
||||
margin-left: auto;
|
||||
border-top-right-radius: 0;
|
||||
border-top-left-radius: var(--pico-border-radius);
|
||||
border-bottom-right-radius: 0;
|
||||
border-bottom-left-radius: var(--pico-border-radius);
|
||||
}
|
||||
[dir=rtl] [role=search] > *:not(:last-child),
|
||||
[dir=rtl] [role=search] input:not([type=checkbox], [type=radio]):not(:last-child),
|
||||
[dir=rtl] [role=search] select:not(:last-child),
|
||||
[dir=rtl] [role=search] label:not(:last-child),
|
||||
[dir=rtl] [role=group] > *:not(:last-child),
|
||||
[dir=rtl] [role=group] input:not([type=checkbox], [type=radio]):not(:last-child),
|
||||
[dir=rtl] [role=group] select:not(:last-child),
|
||||
[dir=rtl] [role=group] label:not(:last-child) {
|
||||
border-top-right-radius: var(--pico-border-radius);
|
||||
border-top-left-radius: 0;
|
||||
border-bottom-right-radius: var(--pico-border-radius);
|
||||
border-bottom-left-radius: 0;
|
||||
}
|
||||
[dir=rtl] button:not(:first-child),
|
||||
[dir=rtl] [type=submit]:not(:first-child),
|
||||
[dir=rtl] [type=reset]:not(:first-child),
|
||||
[dir=rtl] [type=button]:not(:first-child),
|
||||
[dir=rtl] [role=button]:not(:first-child),
|
||||
[dir=rtl] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] select:not(:first-child),
|
||||
[dir=rtl] label:not(:first-child) {
|
||||
margin-right: calc(var(--pico-border-width) * -1);
|
||||
margin-left: auto;
|
||||
}
|
||||
|
||||
/**
|
||||
* Loading ([aria-busy=true])
|
||||
*/
|
||||
|
|
2
css/pico.classless.slate.min.css
vendored
2
css/pico.classless.slate.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -2137,7 +2137,6 @@ details summary {
|
|||
line-height: 1rem;
|
||||
list-style-type: none;
|
||||
cursor: pointer;
|
||||
transition: color var(--pico-transition);
|
||||
}
|
||||
details summary:not([role]) {
|
||||
color: var(--pico-accordion-close-summary-color);
|
||||
|
@ -2163,7 +2162,6 @@ details summary::after {
|
|||
background-size: 1rem auto;
|
||||
background-repeat: no-repeat;
|
||||
content: "";
|
||||
transition: transform var(--pico-transition);
|
||||
}
|
||||
details summary:focus {
|
||||
outline: none;
|
||||
|
@ -2189,17 +2187,17 @@ details[open] > summary {
|
|||
details[open] > summary:not([role]):not(:focus) {
|
||||
color: var(--pico-accordion-open-summary-color);
|
||||
}
|
||||
details[open] > summary::after {
|
||||
transform: rotate(0);
|
||||
}
|
||||
|
||||
[dir=rtl] details summary {
|
||||
text-align: right;
|
||||
}
|
||||
[dir=rtl] details summary::after {
|
||||
float: left;
|
||||
transform: rotate(90deg);
|
||||
background-position: left center;
|
||||
}
|
||||
[dir=rtl] details[open] > summary::after {
|
||||
transform: rotate(0);
|
||||
}
|
||||
|
||||
/**
|
||||
* Card (<article>, role="article")
|
||||
|
@ -2434,6 +2432,46 @@ article > footer [role=group]:has(+ [type=hidden]),
|
|||
border-bottom-right-radius: 5rem;
|
||||
}
|
||||
|
||||
[dir=rtl] [role=search] > *:not(:first-child),
|
||||
[dir=rtl] [role=search] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] [role=search] select:not(:first-child),
|
||||
[dir=rtl] [role=search] label:not(:first-child),
|
||||
[dir=rtl] [role=group] > *:not(:first-child),
|
||||
[dir=rtl] [role=group] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] [role=group] select:not(:first-child),
|
||||
[dir=rtl] [role=group] label:not(:first-child) {
|
||||
margin-right: 0;
|
||||
margin-left: auto;
|
||||
border-top-right-radius: 0;
|
||||
border-top-left-radius: var(--pico-border-radius);
|
||||
border-bottom-right-radius: 0;
|
||||
border-bottom-left-radius: var(--pico-border-radius);
|
||||
}
|
||||
[dir=rtl] [role=search] > *:not(:last-child),
|
||||
[dir=rtl] [role=search] input:not([type=checkbox], [type=radio]):not(:last-child),
|
||||
[dir=rtl] [role=search] select:not(:last-child),
|
||||
[dir=rtl] [role=search] label:not(:last-child),
|
||||
[dir=rtl] [role=group] > *:not(:last-child),
|
||||
[dir=rtl] [role=group] input:not([type=checkbox], [type=radio]):not(:last-child),
|
||||
[dir=rtl] [role=group] select:not(:last-child),
|
||||
[dir=rtl] [role=group] label:not(:last-child) {
|
||||
border-top-right-radius: var(--pico-border-radius);
|
||||
border-top-left-radius: 0;
|
||||
border-bottom-right-radius: var(--pico-border-radius);
|
||||
border-bottom-left-radius: 0;
|
||||
}
|
||||
[dir=rtl] button:not(:first-child),
|
||||
[dir=rtl] [type=submit]:not(:first-child),
|
||||
[dir=rtl] [type=reset]:not(:first-child),
|
||||
[dir=rtl] [type=button]:not(:first-child),
|
||||
[dir=rtl] [role=button]:not(:first-child),
|
||||
[dir=rtl] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] select:not(:first-child),
|
||||
[dir=rtl] label:not(:first-child) {
|
||||
margin-right: calc(var(--pico-border-width) * -1);
|
||||
margin-left: auto;
|
||||
}
|
||||
|
||||
/**
|
||||
* Loading ([aria-busy=true])
|
||||
*/
|
||||
|
|
2
css/pico.classless.violet.min.css
vendored
2
css/pico.classless.violet.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -2137,7 +2137,6 @@ details summary {
|
|||
line-height: 1rem;
|
||||
list-style-type: none;
|
||||
cursor: pointer;
|
||||
transition: color var(--pico-transition);
|
||||
}
|
||||
details summary:not([role]) {
|
||||
color: var(--pico-accordion-close-summary-color);
|
||||
|
@ -2163,7 +2162,6 @@ details summary::after {
|
|||
background-size: 1rem auto;
|
||||
background-repeat: no-repeat;
|
||||
content: "";
|
||||
transition: transform var(--pico-transition);
|
||||
}
|
||||
details summary:focus {
|
||||
outline: none;
|
||||
|
@ -2189,17 +2187,17 @@ details[open] > summary {
|
|||
details[open] > summary:not([role]):not(:focus) {
|
||||
color: var(--pico-accordion-open-summary-color);
|
||||
}
|
||||
details[open] > summary::after {
|
||||
transform: rotate(0);
|
||||
}
|
||||
|
||||
[dir=rtl] details summary {
|
||||
text-align: right;
|
||||
}
|
||||
[dir=rtl] details summary::after {
|
||||
float: left;
|
||||
transform: rotate(90deg);
|
||||
background-position: left center;
|
||||
}
|
||||
[dir=rtl] details[open] > summary::after {
|
||||
transform: rotate(0);
|
||||
}
|
||||
|
||||
/**
|
||||
* Card (<article>, role="article")
|
||||
|
@ -2434,6 +2432,46 @@ article > footer [role=group]:has(+ [type=hidden]),
|
|||
border-bottom-right-radius: 5rem;
|
||||
}
|
||||
|
||||
[dir=rtl] [role=search] > *:not(:first-child),
|
||||
[dir=rtl] [role=search] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] [role=search] select:not(:first-child),
|
||||
[dir=rtl] [role=search] label:not(:first-child),
|
||||
[dir=rtl] [role=group] > *:not(:first-child),
|
||||
[dir=rtl] [role=group] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] [role=group] select:not(:first-child),
|
||||
[dir=rtl] [role=group] label:not(:first-child) {
|
||||
margin-right: 0;
|
||||
margin-left: auto;
|
||||
border-top-right-radius: 0;
|
||||
border-top-left-radius: var(--pico-border-radius);
|
||||
border-bottom-right-radius: 0;
|
||||
border-bottom-left-radius: var(--pico-border-radius);
|
||||
}
|
||||
[dir=rtl] [role=search] > *:not(:last-child),
|
||||
[dir=rtl] [role=search] input:not([type=checkbox], [type=radio]):not(:last-child),
|
||||
[dir=rtl] [role=search] select:not(:last-child),
|
||||
[dir=rtl] [role=search] label:not(:last-child),
|
||||
[dir=rtl] [role=group] > *:not(:last-child),
|
||||
[dir=rtl] [role=group] input:not([type=checkbox], [type=radio]):not(:last-child),
|
||||
[dir=rtl] [role=group] select:not(:last-child),
|
||||
[dir=rtl] [role=group] label:not(:last-child) {
|
||||
border-top-right-radius: var(--pico-border-radius);
|
||||
border-top-left-radius: 0;
|
||||
border-bottom-right-radius: var(--pico-border-radius);
|
||||
border-bottom-left-radius: 0;
|
||||
}
|
||||
[dir=rtl] button:not(:first-child),
|
||||
[dir=rtl] [type=submit]:not(:first-child),
|
||||
[dir=rtl] [type=reset]:not(:first-child),
|
||||
[dir=rtl] [type=button]:not(:first-child),
|
||||
[dir=rtl] [role=button]:not(:first-child),
|
||||
[dir=rtl] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] select:not(:first-child),
|
||||
[dir=rtl] label:not(:first-child) {
|
||||
margin-right: calc(var(--pico-border-width) * -1);
|
||||
margin-left: auto;
|
||||
}
|
||||
|
||||
/**
|
||||
* Loading ([aria-busy=true])
|
||||
*/
|
||||
|
|
2
css/pico.classless.yellow.min.css
vendored
2
css/pico.classless.yellow.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -2137,7 +2137,6 @@ details summary {
|
|||
line-height: 1rem;
|
||||
list-style-type: none;
|
||||
cursor: pointer;
|
||||
transition: color var(--pico-transition);
|
||||
}
|
||||
details summary:not([role]) {
|
||||
color: var(--pico-accordion-close-summary-color);
|
||||
|
@ -2163,7 +2162,6 @@ details summary::after {
|
|||
background-size: 1rem auto;
|
||||
background-repeat: no-repeat;
|
||||
content: "";
|
||||
transition: transform var(--pico-transition);
|
||||
}
|
||||
details summary:focus {
|
||||
outline: none;
|
||||
|
@ -2189,17 +2187,17 @@ details[open] > summary {
|
|||
details[open] > summary:not([role]):not(:focus) {
|
||||
color: var(--pico-accordion-open-summary-color);
|
||||
}
|
||||
details[open] > summary::after {
|
||||
transform: rotate(0);
|
||||
}
|
||||
|
||||
[dir=rtl] details summary {
|
||||
text-align: right;
|
||||
}
|
||||
[dir=rtl] details summary::after {
|
||||
float: left;
|
||||
transform: rotate(90deg);
|
||||
background-position: left center;
|
||||
}
|
||||
[dir=rtl] details[open] > summary::after {
|
||||
transform: rotate(0);
|
||||
}
|
||||
|
||||
/**
|
||||
* Card (<article>, role="article")
|
||||
|
@ -2434,6 +2432,46 @@ article > footer [role=group]:has(+ [type=hidden]),
|
|||
border-bottom-right-radius: 5rem;
|
||||
}
|
||||
|
||||
[dir=rtl] [role=search] > *:not(:first-child),
|
||||
[dir=rtl] [role=search] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] [role=search] select:not(:first-child),
|
||||
[dir=rtl] [role=search] label:not(:first-child),
|
||||
[dir=rtl] [role=group] > *:not(:first-child),
|
||||
[dir=rtl] [role=group] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] [role=group] select:not(:first-child),
|
||||
[dir=rtl] [role=group] label:not(:first-child) {
|
||||
margin-right: 0;
|
||||
margin-left: auto;
|
||||
border-top-right-radius: 0;
|
||||
border-top-left-radius: var(--pico-border-radius);
|
||||
border-bottom-right-radius: 0;
|
||||
border-bottom-left-radius: var(--pico-border-radius);
|
||||
}
|
||||
[dir=rtl] [role=search] > *:not(:last-child),
|
||||
[dir=rtl] [role=search] input:not([type=checkbox], [type=radio]):not(:last-child),
|
||||
[dir=rtl] [role=search] select:not(:last-child),
|
||||
[dir=rtl] [role=search] label:not(:last-child),
|
||||
[dir=rtl] [role=group] > *:not(:last-child),
|
||||
[dir=rtl] [role=group] input:not([type=checkbox], [type=radio]):not(:last-child),
|
||||
[dir=rtl] [role=group] select:not(:last-child),
|
||||
[dir=rtl] [role=group] label:not(:last-child) {
|
||||
border-top-right-radius: var(--pico-border-radius);
|
||||
border-top-left-radius: 0;
|
||||
border-bottom-right-radius: var(--pico-border-radius);
|
||||
border-bottom-left-radius: 0;
|
||||
}
|
||||
[dir=rtl] button:not(:first-child),
|
||||
[dir=rtl] [type=submit]:not(:first-child),
|
||||
[dir=rtl] [type=reset]:not(:first-child),
|
||||
[dir=rtl] [type=button]:not(:first-child),
|
||||
[dir=rtl] [role=button]:not(:first-child),
|
||||
[dir=rtl] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] select:not(:first-child),
|
||||
[dir=rtl] label:not(:first-child) {
|
||||
margin-right: calc(var(--pico-border-width) * -1);
|
||||
margin-left: auto;
|
||||
}
|
||||
|
||||
/**
|
||||
* Loading ([aria-busy=true])
|
||||
*/
|
||||
|
|
2
css/pico.classless.zinc.min.css
vendored
2
css/pico.classless.zinc.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -2818,7 +2818,6 @@ main {
|
|||
line-height: 1rem;
|
||||
list-style-type: none;
|
||||
cursor: pointer;
|
||||
transition: color var(--pico-transition);
|
||||
}
|
||||
.pico details summary:not([role]) {
|
||||
color: var(--pico-accordion-close-summary-color);
|
||||
|
@ -2844,7 +2843,6 @@ main {
|
|||
background-size: 1rem auto;
|
||||
background-repeat: no-repeat;
|
||||
content: "";
|
||||
transition: transform var(--pico-transition);
|
||||
}
|
||||
.pico details summary:focus {
|
||||
outline: none;
|
||||
|
@ -2870,17 +2868,17 @@ main {
|
|||
.pico details[open] > summary:not([role]):not(:focus) {
|
||||
color: var(--pico-accordion-open-summary-color);
|
||||
}
|
||||
.pico details[open] > summary::after {
|
||||
transform: rotate(0);
|
||||
}
|
||||
|
||||
[dir=rtl] .pico details summary {
|
||||
text-align: right;
|
||||
}
|
||||
[dir=rtl] .pico details summary::after {
|
||||
float: left;
|
||||
transform: rotate(90deg);
|
||||
background-position: left center;
|
||||
}
|
||||
[dir=rtl] .pico details[open] > summary::after {
|
||||
transform: rotate(0);
|
||||
}
|
||||
|
||||
/**
|
||||
* Card (<article>, role="article")
|
||||
|
@ -3275,6 +3273,46 @@ main {
|
|||
border-bottom-right-radius: 5rem;
|
||||
}
|
||||
|
||||
[dir=rtl] .pico [role=search] > *:not(:first-child),
|
||||
[dir=rtl] .pico [role=search] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] .pico [role=search] select:not(:first-child),
|
||||
[dir=rtl] .pico [role=search] label:not(:first-child),
|
||||
[dir=rtl] .pico [role=group] > *:not(:first-child),
|
||||
[dir=rtl] .pico [role=group] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] .pico [role=group] select:not(:first-child),
|
||||
[dir=rtl] .pico [role=group] label:not(:first-child) {
|
||||
margin-right: 0;
|
||||
margin-left: auto;
|
||||
border-top-right-radius: 0;
|
||||
border-top-left-radius: var(--pico-border-radius);
|
||||
border-bottom-right-radius: 0;
|
||||
border-bottom-left-radius: var(--pico-border-radius);
|
||||
}
|
||||
[dir=rtl] .pico [role=search] > *:not(:last-child),
|
||||
[dir=rtl] .pico [role=search] input:not([type=checkbox], [type=radio]):not(:last-child),
|
||||
[dir=rtl] .pico [role=search] select:not(:last-child),
|
||||
[dir=rtl] .pico [role=search] label:not(:last-child),
|
||||
[dir=rtl] .pico [role=group] > *:not(:last-child),
|
||||
[dir=rtl] .pico [role=group] input:not([type=checkbox], [type=radio]):not(:last-child),
|
||||
[dir=rtl] .pico [role=group] select:not(:last-child),
|
||||
[dir=rtl] .pico [role=group] label:not(:last-child) {
|
||||
border-top-right-radius: var(--pico-border-radius);
|
||||
border-top-left-radius: 0;
|
||||
border-bottom-right-radius: var(--pico-border-radius);
|
||||
border-bottom-left-radius: 0;
|
||||
}
|
||||
[dir=rtl] button:not(:first-child),
|
||||
[dir=rtl] [type=submit]:not(:first-child),
|
||||
[dir=rtl] [type=reset]:not(:first-child),
|
||||
[dir=rtl] [type=button]:not(:first-child),
|
||||
[dir=rtl] [role=button]:not(:first-child),
|
||||
[dir=rtl] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] select:not(:first-child),
|
||||
[dir=rtl] label:not(:first-child) {
|
||||
margin-right: calc(var(--pico-border-width) * -1);
|
||||
margin-left: auto;
|
||||
}
|
||||
|
||||
/**
|
||||
* Loading ([aria-busy=true])
|
||||
*/
|
||||
|
|
2
css/pico.conditional.amber.min.css
vendored
2
css/pico.conditional.amber.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -2818,7 +2818,6 @@ main {
|
|||
line-height: 1rem;
|
||||
list-style-type: none;
|
||||
cursor: pointer;
|
||||
transition: color var(--pico-transition);
|
||||
}
|
||||
.pico details summary:not([role]) {
|
||||
color: var(--pico-accordion-close-summary-color);
|
||||
|
@ -2844,7 +2843,6 @@ main {
|
|||
background-size: 1rem auto;
|
||||
background-repeat: no-repeat;
|
||||
content: "";
|
||||
transition: transform var(--pico-transition);
|
||||
}
|
||||
.pico details summary:focus {
|
||||
outline: none;
|
||||
|
@ -2870,17 +2868,17 @@ main {
|
|||
.pico details[open] > summary:not([role]):not(:focus) {
|
||||
color: var(--pico-accordion-open-summary-color);
|
||||
}
|
||||
.pico details[open] > summary::after {
|
||||
transform: rotate(0);
|
||||
}
|
||||
|
||||
[dir=rtl] .pico details summary {
|
||||
text-align: right;
|
||||
}
|
||||
[dir=rtl] .pico details summary::after {
|
||||
float: left;
|
||||
transform: rotate(90deg);
|
||||
background-position: left center;
|
||||
}
|
||||
[dir=rtl] .pico details[open] > summary::after {
|
||||
transform: rotate(0);
|
||||
}
|
||||
|
||||
/**
|
||||
* Card (<article>, role="article")
|
||||
|
@ -3275,6 +3273,46 @@ main {
|
|||
border-bottom-right-radius: 5rem;
|
||||
}
|
||||
|
||||
[dir=rtl] .pico [role=search] > *:not(:first-child),
|
||||
[dir=rtl] .pico [role=search] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] .pico [role=search] select:not(:first-child),
|
||||
[dir=rtl] .pico [role=search] label:not(:first-child),
|
||||
[dir=rtl] .pico [role=group] > *:not(:first-child),
|
||||
[dir=rtl] .pico [role=group] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] .pico [role=group] select:not(:first-child),
|
||||
[dir=rtl] .pico [role=group] label:not(:first-child) {
|
||||
margin-right: 0;
|
||||
margin-left: auto;
|
||||
border-top-right-radius: 0;
|
||||
border-top-left-radius: var(--pico-border-radius);
|
||||
border-bottom-right-radius: 0;
|
||||
border-bottom-left-radius: var(--pico-border-radius);
|
||||
}
|
||||
[dir=rtl] .pico [role=search] > *:not(:last-child),
|
||||
[dir=rtl] .pico [role=search] input:not([type=checkbox], [type=radio]):not(:last-child),
|
||||
[dir=rtl] .pico [role=search] select:not(:last-child),
|
||||
[dir=rtl] .pico [role=search] label:not(:last-child),
|
||||
[dir=rtl] .pico [role=group] > *:not(:last-child),
|
||||
[dir=rtl] .pico [role=group] input:not([type=checkbox], [type=radio]):not(:last-child),
|
||||
[dir=rtl] .pico [role=group] select:not(:last-child),
|
||||
[dir=rtl] .pico [role=group] label:not(:last-child) {
|
||||
border-top-right-radius: var(--pico-border-radius);
|
||||
border-top-left-radius: 0;
|
||||
border-bottom-right-radius: var(--pico-border-radius);
|
||||
border-bottom-left-radius: 0;
|
||||
}
|
||||
[dir=rtl] button:not(:first-child),
|
||||
[dir=rtl] [type=submit]:not(:first-child),
|
||||
[dir=rtl] [type=reset]:not(:first-child),
|
||||
[dir=rtl] [type=button]:not(:first-child),
|
||||
[dir=rtl] [role=button]:not(:first-child),
|
||||
[dir=rtl] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] select:not(:first-child),
|
||||
[dir=rtl] label:not(:first-child) {
|
||||
margin-right: calc(var(--pico-border-width) * -1);
|
||||
margin-left: auto;
|
||||
}
|
||||
|
||||
/**
|
||||
* Loading ([aria-busy=true])
|
||||
*/
|
||||
|
|
2
css/pico.conditional.blue.min.css
vendored
2
css/pico.conditional.blue.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -2818,7 +2818,6 @@ main {
|
|||
line-height: 1rem;
|
||||
list-style-type: none;
|
||||
cursor: pointer;
|
||||
transition: color var(--pico-transition);
|
||||
}
|
||||
.pico details summary:not([role]) {
|
||||
color: var(--pico-accordion-close-summary-color);
|
||||
|
@ -2844,7 +2843,6 @@ main {
|
|||
background-size: 1rem auto;
|
||||
background-repeat: no-repeat;
|
||||
content: "";
|
||||
transition: transform var(--pico-transition);
|
||||
}
|
||||
.pico details summary:focus {
|
||||
outline: none;
|
||||
|
@ -2870,17 +2868,17 @@ main {
|
|||
.pico details[open] > summary:not([role]):not(:focus) {
|
||||
color: var(--pico-accordion-open-summary-color);
|
||||
}
|
||||
.pico details[open] > summary::after {
|
||||
transform: rotate(0);
|
||||
}
|
||||
|
||||
[dir=rtl] .pico details summary {
|
||||
text-align: right;
|
||||
}
|
||||
[dir=rtl] .pico details summary::after {
|
||||
float: left;
|
||||
transform: rotate(90deg);
|
||||
background-position: left center;
|
||||
}
|
||||
[dir=rtl] .pico details[open] > summary::after {
|
||||
transform: rotate(0);
|
||||
}
|
||||
|
||||
/**
|
||||
* Card (<article>, role="article")
|
||||
|
@ -3275,6 +3273,46 @@ main {
|
|||
border-bottom-right-radius: 5rem;
|
||||
}
|
||||
|
||||
[dir=rtl] .pico [role=search] > *:not(:first-child),
|
||||
[dir=rtl] .pico [role=search] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] .pico [role=search] select:not(:first-child),
|
||||
[dir=rtl] .pico [role=search] label:not(:first-child),
|
||||
[dir=rtl] .pico [role=group] > *:not(:first-child),
|
||||
[dir=rtl] .pico [role=group] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] .pico [role=group] select:not(:first-child),
|
||||
[dir=rtl] .pico [role=group] label:not(:first-child) {
|
||||
margin-right: 0;
|
||||
margin-left: auto;
|
||||
border-top-right-radius: 0;
|
||||
border-top-left-radius: var(--pico-border-radius);
|
||||
border-bottom-right-radius: 0;
|
||||
border-bottom-left-radius: var(--pico-border-radius);
|
||||
}
|
||||
[dir=rtl] .pico [role=search] > *:not(:last-child),
|
||||
[dir=rtl] .pico [role=search] input:not([type=checkbox], [type=radio]):not(:last-child),
|
||||
[dir=rtl] .pico [role=search] select:not(:last-child),
|
||||
[dir=rtl] .pico [role=search] label:not(:last-child),
|
||||
[dir=rtl] .pico [role=group] > *:not(:last-child),
|
||||
[dir=rtl] .pico [role=group] input:not([type=checkbox], [type=radio]):not(:last-child),
|
||||
[dir=rtl] .pico [role=group] select:not(:last-child),
|
||||
[dir=rtl] .pico [role=group] label:not(:last-child) {
|
||||
border-top-right-radius: var(--pico-border-radius);
|
||||
border-top-left-radius: 0;
|
||||
border-bottom-right-radius: var(--pico-border-radius);
|
||||
border-bottom-left-radius: 0;
|
||||
}
|
||||
[dir=rtl] button:not(:first-child),
|
||||
[dir=rtl] [type=submit]:not(:first-child),
|
||||
[dir=rtl] [type=reset]:not(:first-child),
|
||||
[dir=rtl] [type=button]:not(:first-child),
|
||||
[dir=rtl] [role=button]:not(:first-child),
|
||||
[dir=rtl] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] select:not(:first-child),
|
||||
[dir=rtl] label:not(:first-child) {
|
||||
margin-right: calc(var(--pico-border-width) * -1);
|
||||
margin-left: auto;
|
||||
}
|
||||
|
||||
/**
|
||||
* Loading ([aria-busy=true])
|
||||
*/
|
||||
|
|
|
@ -2818,7 +2818,6 @@ main {
|
|||
line-height: 1rem;
|
||||
list-style-type: none;
|
||||
cursor: pointer;
|
||||
transition: color var(--pico-transition);
|
||||
}
|
||||
.pico details summary:not([role]) {
|
||||
color: var(--pico-accordion-close-summary-color);
|
||||
|
@ -2844,7 +2843,6 @@ main {
|
|||
background-size: 1rem auto;
|
||||
background-repeat: no-repeat;
|
||||
content: "";
|
||||
transition: transform var(--pico-transition);
|
||||
}
|
||||
.pico details summary:focus {
|
||||
outline: none;
|
||||
|
@ -2870,17 +2868,17 @@ main {
|
|||
.pico details[open] > summary:not([role]):not(:focus) {
|
||||
color: var(--pico-accordion-open-summary-color);
|
||||
}
|
||||
.pico details[open] > summary::after {
|
||||
transform: rotate(0);
|
||||
}
|
||||
|
||||
[dir=rtl] .pico details summary {
|
||||
text-align: right;
|
||||
}
|
||||
[dir=rtl] .pico details summary::after {
|
||||
float: left;
|
||||
transform: rotate(90deg);
|
||||
background-position: left center;
|
||||
}
|
||||
[dir=rtl] .pico details[open] > summary::after {
|
||||
transform: rotate(0);
|
||||
}
|
||||
|
||||
/**
|
||||
* Card (<article>, role="article")
|
||||
|
@ -3275,6 +3273,46 @@ main {
|
|||
border-bottom-right-radius: 5rem;
|
||||
}
|
||||
|
||||
[dir=rtl] .pico [role=search] > *:not(:first-child),
|
||||
[dir=rtl] .pico [role=search] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] .pico [role=search] select:not(:first-child),
|
||||
[dir=rtl] .pico [role=search] label:not(:first-child),
|
||||
[dir=rtl] .pico [role=group] > *:not(:first-child),
|
||||
[dir=rtl] .pico [role=group] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] .pico [role=group] select:not(:first-child),
|
||||
[dir=rtl] .pico [role=group] label:not(:first-child) {
|
||||
margin-right: 0;
|
||||
margin-left: auto;
|
||||
border-top-right-radius: 0;
|
||||
border-top-left-radius: var(--pico-border-radius);
|
||||
border-bottom-right-radius: 0;
|
||||
border-bottom-left-radius: var(--pico-border-radius);
|
||||
}
|
||||
[dir=rtl] .pico [role=search] > *:not(:last-child),
|
||||
[dir=rtl] .pico [role=search] input:not([type=checkbox], [type=radio]):not(:last-child),
|
||||
[dir=rtl] .pico [role=search] select:not(:last-child),
|
||||
[dir=rtl] .pico [role=search] label:not(:last-child),
|
||||
[dir=rtl] .pico [role=group] > *:not(:last-child),
|
||||
[dir=rtl] .pico [role=group] input:not([type=checkbox], [type=radio]):not(:last-child),
|
||||
[dir=rtl] .pico [role=group] select:not(:last-child),
|
||||
[dir=rtl] .pico [role=group] label:not(:last-child) {
|
||||
border-top-right-radius: var(--pico-border-radius);
|
||||
border-top-left-radius: 0;
|
||||
border-bottom-right-radius: var(--pico-border-radius);
|
||||
border-bottom-left-radius: 0;
|
||||
}
|
||||
[dir=rtl] button:not(:first-child),
|
||||
[dir=rtl] [type=submit]:not(:first-child),
|
||||
[dir=rtl] [type=reset]:not(:first-child),
|
||||
[dir=rtl] [type=button]:not(:first-child),
|
||||
[dir=rtl] [role=button]:not(:first-child),
|
||||
[dir=rtl] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] select:not(:first-child),
|
||||
[dir=rtl] label:not(:first-child) {
|
||||
margin-right: calc(var(--pico-border-width) * -1);
|
||||
margin-left: auto;
|
||||
}
|
||||
|
||||
/**
|
||||
* Loading ([aria-busy=true])
|
||||
*/
|
||||
|
|
2
css/pico.conditional.cyan.min.css
vendored
2
css/pico.conditional.cyan.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -2818,7 +2818,6 @@ main {
|
|||
line-height: 1rem;
|
||||
list-style-type: none;
|
||||
cursor: pointer;
|
||||
transition: color var(--pico-transition);
|
||||
}
|
||||
.pico details summary:not([role]) {
|
||||
color: var(--pico-accordion-close-summary-color);
|
||||
|
@ -2844,7 +2843,6 @@ main {
|
|||
background-size: 1rem auto;
|
||||
background-repeat: no-repeat;
|
||||
content: "";
|
||||
transition: transform var(--pico-transition);
|
||||
}
|
||||
.pico details summary:focus {
|
||||
outline: none;
|
||||
|
@ -2870,17 +2868,17 @@ main {
|
|||
.pico details[open] > summary:not([role]):not(:focus) {
|
||||
color: var(--pico-accordion-open-summary-color);
|
||||
}
|
||||
.pico details[open] > summary::after {
|
||||
transform: rotate(0);
|
||||
}
|
||||
|
||||
[dir=rtl] .pico details summary {
|
||||
text-align: right;
|
||||
}
|
||||
[dir=rtl] .pico details summary::after {
|
||||
float: left;
|
||||
transform: rotate(90deg);
|
||||
background-position: left center;
|
||||
}
|
||||
[dir=rtl] .pico details[open] > summary::after {
|
||||
transform: rotate(0);
|
||||
}
|
||||
|
||||
/**
|
||||
* Card (<article>, role="article")
|
||||
|
@ -3275,6 +3273,46 @@ main {
|
|||
border-bottom-right-radius: 5rem;
|
||||
}
|
||||
|
||||
[dir=rtl] .pico [role=search] > *:not(:first-child),
|
||||
[dir=rtl] .pico [role=search] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] .pico [role=search] select:not(:first-child),
|
||||
[dir=rtl] .pico [role=search] label:not(:first-child),
|
||||
[dir=rtl] .pico [role=group] > *:not(:first-child),
|
||||
[dir=rtl] .pico [role=group] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] .pico [role=group] select:not(:first-child),
|
||||
[dir=rtl] .pico [role=group] label:not(:first-child) {
|
||||
margin-right: 0;
|
||||
margin-left: auto;
|
||||
border-top-right-radius: 0;
|
||||
border-top-left-radius: var(--pico-border-radius);
|
||||
border-bottom-right-radius: 0;
|
||||
border-bottom-left-radius: var(--pico-border-radius);
|
||||
}
|
||||
[dir=rtl] .pico [role=search] > *:not(:last-child),
|
||||
[dir=rtl] .pico [role=search] input:not([type=checkbox], [type=radio]):not(:last-child),
|
||||
[dir=rtl] .pico [role=search] select:not(:last-child),
|
||||
[dir=rtl] .pico [role=search] label:not(:last-child),
|
||||
[dir=rtl] .pico [role=group] > *:not(:last-child),
|
||||
[dir=rtl] .pico [role=group] input:not([type=checkbox], [type=radio]):not(:last-child),
|
||||
[dir=rtl] .pico [role=group] select:not(:last-child),
|
||||
[dir=rtl] .pico [role=group] label:not(:last-child) {
|
||||
border-top-right-radius: var(--pico-border-radius);
|
||||
border-top-left-radius: 0;
|
||||
border-bottom-right-radius: var(--pico-border-radius);
|
||||
border-bottom-left-radius: 0;
|
||||
}
|
||||
[dir=rtl] button:not(:first-child),
|
||||
[dir=rtl] [type=submit]:not(:first-child),
|
||||
[dir=rtl] [type=reset]:not(:first-child),
|
||||
[dir=rtl] [type=button]:not(:first-child),
|
||||
[dir=rtl] [role=button]:not(:first-child),
|
||||
[dir=rtl] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] select:not(:first-child),
|
||||
[dir=rtl] label:not(:first-child) {
|
||||
margin-right: calc(var(--pico-border-width) * -1);
|
||||
margin-left: auto;
|
||||
}
|
||||
|
||||
/**
|
||||
* Loading ([aria-busy=true])
|
||||
*/
|
||||
|
|
2
css/pico.conditional.fuchsia.min.css
vendored
2
css/pico.conditional.fuchsia.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -2818,7 +2818,6 @@ main {
|
|||
line-height: 1rem;
|
||||
list-style-type: none;
|
||||
cursor: pointer;
|
||||
transition: color var(--pico-transition);
|
||||
}
|
||||
.pico details summary:not([role]) {
|
||||
color: var(--pico-accordion-close-summary-color);
|
||||
|
@ -2844,7 +2843,6 @@ main {
|
|||
background-size: 1rem auto;
|
||||
background-repeat: no-repeat;
|
||||
content: "";
|
||||
transition: transform var(--pico-transition);
|
||||
}
|
||||
.pico details summary:focus {
|
||||
outline: none;
|
||||
|
@ -2870,17 +2868,17 @@ main {
|
|||
.pico details[open] > summary:not([role]):not(:focus) {
|
||||
color: var(--pico-accordion-open-summary-color);
|
||||
}
|
||||
.pico details[open] > summary::after {
|
||||
transform: rotate(0);
|
||||
}
|
||||
|
||||
[dir=rtl] .pico details summary {
|
||||
text-align: right;
|
||||
}
|
||||
[dir=rtl] .pico details summary::after {
|
||||
float: left;
|
||||
transform: rotate(90deg);
|
||||
background-position: left center;
|
||||
}
|
||||
[dir=rtl] .pico details[open] > summary::after {
|
||||
transform: rotate(0);
|
||||
}
|
||||
|
||||
/**
|
||||
* Card (<article>, role="article")
|
||||
|
@ -3275,6 +3273,46 @@ main {
|
|||
border-bottom-right-radius: 5rem;
|
||||
}
|
||||
|
||||
[dir=rtl] .pico [role=search] > *:not(:first-child),
|
||||
[dir=rtl] .pico [role=search] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] .pico [role=search] select:not(:first-child),
|
||||
[dir=rtl] .pico [role=search] label:not(:first-child),
|
||||
[dir=rtl] .pico [role=group] > *:not(:first-child),
|
||||
[dir=rtl] .pico [role=group] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] .pico [role=group] select:not(:first-child),
|
||||
[dir=rtl] .pico [role=group] label:not(:first-child) {
|
||||
margin-right: 0;
|
||||
margin-left: auto;
|
||||
border-top-right-radius: 0;
|
||||
border-top-left-radius: var(--pico-border-radius);
|
||||
border-bottom-right-radius: 0;
|
||||
border-bottom-left-radius: var(--pico-border-radius);
|
||||
}
|
||||
[dir=rtl] .pico [role=search] > *:not(:last-child),
|
||||
[dir=rtl] .pico [role=search] input:not([type=checkbox], [type=radio]):not(:last-child),
|
||||
[dir=rtl] .pico [role=search] select:not(:last-child),
|
||||
[dir=rtl] .pico [role=search] label:not(:last-child),
|
||||
[dir=rtl] .pico [role=group] > *:not(:last-child),
|
||||
[dir=rtl] .pico [role=group] input:not([type=checkbox], [type=radio]):not(:last-child),
|
||||
[dir=rtl] .pico [role=group] select:not(:last-child),
|
||||
[dir=rtl] .pico [role=group] label:not(:last-child) {
|
||||
border-top-right-radius: var(--pico-border-radius);
|
||||
border-top-left-radius: 0;
|
||||
border-bottom-right-radius: var(--pico-border-radius);
|
||||
border-bottom-left-radius: 0;
|
||||
}
|
||||
[dir=rtl] button:not(:first-child),
|
||||
[dir=rtl] [type=submit]:not(:first-child),
|
||||
[dir=rtl] [type=reset]:not(:first-child),
|
||||
[dir=rtl] [type=button]:not(:first-child),
|
||||
[dir=rtl] [role=button]:not(:first-child),
|
||||
[dir=rtl] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] select:not(:first-child),
|
||||
[dir=rtl] label:not(:first-child) {
|
||||
margin-right: calc(var(--pico-border-width) * -1);
|
||||
margin-left: auto;
|
||||
}
|
||||
|
||||
/**
|
||||
* Loading ([aria-busy=true])
|
||||
*/
|
||||
|
|
2
css/pico.conditional.green.min.css
vendored
2
css/pico.conditional.green.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -2818,7 +2818,6 @@ main {
|
|||
line-height: 1rem;
|
||||
list-style-type: none;
|
||||
cursor: pointer;
|
||||
transition: color var(--pico-transition);
|
||||
}
|
||||
.pico details summary:not([role]) {
|
||||
color: var(--pico-accordion-close-summary-color);
|
||||
|
@ -2844,7 +2843,6 @@ main {
|
|||
background-size: 1rem auto;
|
||||
background-repeat: no-repeat;
|
||||
content: "";
|
||||
transition: transform var(--pico-transition);
|
||||
}
|
||||
.pico details summary:focus {
|
||||
outline: none;
|
||||
|
@ -2870,17 +2868,17 @@ main {
|
|||
.pico details[open] > summary:not([role]):not(:focus) {
|
||||
color: var(--pico-accordion-open-summary-color);
|
||||
}
|
||||
.pico details[open] > summary::after {
|
||||
transform: rotate(0);
|
||||
}
|
||||
|
||||
[dir=rtl] .pico details summary {
|
||||
text-align: right;
|
||||
}
|
||||
[dir=rtl] .pico details summary::after {
|
||||
float: left;
|
||||
transform: rotate(90deg);
|
||||
background-position: left center;
|
||||
}
|
||||
[dir=rtl] .pico details[open] > summary::after {
|
||||
transform: rotate(0);
|
||||
}
|
||||
|
||||
/**
|
||||
* Card (<article>, role="article")
|
||||
|
@ -3275,6 +3273,46 @@ main {
|
|||
border-bottom-right-radius: 5rem;
|
||||
}
|
||||
|
||||
[dir=rtl] .pico [role=search] > *:not(:first-child),
|
||||
[dir=rtl] .pico [role=search] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] .pico [role=search] select:not(:first-child),
|
||||
[dir=rtl] .pico [role=search] label:not(:first-child),
|
||||
[dir=rtl] .pico [role=group] > *:not(:first-child),
|
||||
[dir=rtl] .pico [role=group] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] .pico [role=group] select:not(:first-child),
|
||||
[dir=rtl] .pico [role=group] label:not(:first-child) {
|
||||
margin-right: 0;
|
||||
margin-left: auto;
|
||||
border-top-right-radius: 0;
|
||||
border-top-left-radius: var(--pico-border-radius);
|
||||
border-bottom-right-radius: 0;
|
||||
border-bottom-left-radius: var(--pico-border-radius);
|
||||
}
|
||||
[dir=rtl] .pico [role=search] > *:not(:last-child),
|
||||
[dir=rtl] .pico [role=search] input:not([type=checkbox], [type=radio]):not(:last-child),
|
||||
[dir=rtl] .pico [role=search] select:not(:last-child),
|
||||
[dir=rtl] .pico [role=search] label:not(:last-child),
|
||||
[dir=rtl] .pico [role=group] > *:not(:last-child),
|
||||
[dir=rtl] .pico [role=group] input:not([type=checkbox], [type=radio]):not(:last-child),
|
||||
[dir=rtl] .pico [role=group] select:not(:last-child),
|
||||
[dir=rtl] .pico [role=group] label:not(:last-child) {
|
||||
border-top-right-radius: var(--pico-border-radius);
|
||||
border-top-left-radius: 0;
|
||||
border-bottom-right-radius: var(--pico-border-radius);
|
||||
border-bottom-left-radius: 0;
|
||||
}
|
||||
[dir=rtl] button:not(:first-child),
|
||||
[dir=rtl] [type=submit]:not(:first-child),
|
||||
[dir=rtl] [type=reset]:not(:first-child),
|
||||
[dir=rtl] [type=button]:not(:first-child),
|
||||
[dir=rtl] [role=button]:not(:first-child),
|
||||
[dir=rtl] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] select:not(:first-child),
|
||||
[dir=rtl] label:not(:first-child) {
|
||||
margin-right: calc(var(--pico-border-width) * -1);
|
||||
margin-left: auto;
|
||||
}
|
||||
|
||||
/**
|
||||
* Loading ([aria-busy=true])
|
||||
*/
|
||||
|
|
2
css/pico.conditional.grey.min.css
vendored
2
css/pico.conditional.grey.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -2818,7 +2818,6 @@ main {
|
|||
line-height: 1rem;
|
||||
list-style-type: none;
|
||||
cursor: pointer;
|
||||
transition: color var(--pico-transition);
|
||||
}
|
||||
.pico details summary:not([role]) {
|
||||
color: var(--pico-accordion-close-summary-color);
|
||||
|
@ -2844,7 +2843,6 @@ main {
|
|||
background-size: 1rem auto;
|
||||
background-repeat: no-repeat;
|
||||
content: "";
|
||||
transition: transform var(--pico-transition);
|
||||
}
|
||||
.pico details summary:focus {
|
||||
outline: none;
|
||||
|
@ -2870,17 +2868,17 @@ main {
|
|||
.pico details[open] > summary:not([role]):not(:focus) {
|
||||
color: var(--pico-accordion-open-summary-color);
|
||||
}
|
||||
.pico details[open] > summary::after {
|
||||
transform: rotate(0);
|
||||
}
|
||||
|
||||
[dir=rtl] .pico details summary {
|
||||
text-align: right;
|
||||
}
|
||||
[dir=rtl] .pico details summary::after {
|
||||
float: left;
|
||||
transform: rotate(90deg);
|
||||
background-position: left center;
|
||||
}
|
||||
[dir=rtl] .pico details[open] > summary::after {
|
||||
transform: rotate(0);
|
||||
}
|
||||
|
||||
/**
|
||||
* Card (<article>, role="article")
|
||||
|
@ -3275,6 +3273,46 @@ main {
|
|||
border-bottom-right-radius: 5rem;
|
||||
}
|
||||
|
||||
[dir=rtl] .pico [role=search] > *:not(:first-child),
|
||||
[dir=rtl] .pico [role=search] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] .pico [role=search] select:not(:first-child),
|
||||
[dir=rtl] .pico [role=search] label:not(:first-child),
|
||||
[dir=rtl] .pico [role=group] > *:not(:first-child),
|
||||
[dir=rtl] .pico [role=group] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] .pico [role=group] select:not(:first-child),
|
||||
[dir=rtl] .pico [role=group] label:not(:first-child) {
|
||||
margin-right: 0;
|
||||
margin-left: auto;
|
||||
border-top-right-radius: 0;
|
||||
border-top-left-radius: var(--pico-border-radius);
|
||||
border-bottom-right-radius: 0;
|
||||
border-bottom-left-radius: var(--pico-border-radius);
|
||||
}
|
||||
[dir=rtl] .pico [role=search] > *:not(:last-child),
|
||||
[dir=rtl] .pico [role=search] input:not([type=checkbox], [type=radio]):not(:last-child),
|
||||
[dir=rtl] .pico [role=search] select:not(:last-child),
|
||||
[dir=rtl] .pico [role=search] label:not(:last-child),
|
||||
[dir=rtl] .pico [role=group] > *:not(:last-child),
|
||||
[dir=rtl] .pico [role=group] input:not([type=checkbox], [type=radio]):not(:last-child),
|
||||
[dir=rtl] .pico [role=group] select:not(:last-child),
|
||||
[dir=rtl] .pico [role=group] label:not(:last-child) {
|
||||
border-top-right-radius: var(--pico-border-radius);
|
||||
border-top-left-radius: 0;
|
||||
border-bottom-right-radius: var(--pico-border-radius);
|
||||
border-bottom-left-radius: 0;
|
||||
}
|
||||
[dir=rtl] button:not(:first-child),
|
||||
[dir=rtl] [type=submit]:not(:first-child),
|
||||
[dir=rtl] [type=reset]:not(:first-child),
|
||||
[dir=rtl] [type=button]:not(:first-child),
|
||||
[dir=rtl] [role=button]:not(:first-child),
|
||||
[dir=rtl] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] select:not(:first-child),
|
||||
[dir=rtl] label:not(:first-child) {
|
||||
margin-right: calc(var(--pico-border-width) * -1);
|
||||
margin-left: auto;
|
||||
}
|
||||
|
||||
/**
|
||||
* Loading ([aria-busy=true])
|
||||
*/
|
||||
|
|
2
css/pico.conditional.indigo.min.css
vendored
2
css/pico.conditional.indigo.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -2818,7 +2818,6 @@ main {
|
|||
line-height: 1rem;
|
||||
list-style-type: none;
|
||||
cursor: pointer;
|
||||
transition: color var(--pico-transition);
|
||||
}
|
||||
.pico details summary:not([role]) {
|
||||
color: var(--pico-accordion-close-summary-color);
|
||||
|
@ -2844,7 +2843,6 @@ main {
|
|||
background-size: 1rem auto;
|
||||
background-repeat: no-repeat;
|
||||
content: "";
|
||||
transition: transform var(--pico-transition);
|
||||
}
|
||||
.pico details summary:focus {
|
||||
outline: none;
|
||||
|
@ -2870,17 +2868,17 @@ main {
|
|||
.pico details[open] > summary:not([role]):not(:focus) {
|
||||
color: var(--pico-accordion-open-summary-color);
|
||||
}
|
||||
.pico details[open] > summary::after {
|
||||
transform: rotate(0);
|
||||
}
|
||||
|
||||
[dir=rtl] .pico details summary {
|
||||
text-align: right;
|
||||
}
|
||||
[dir=rtl] .pico details summary::after {
|
||||
float: left;
|
||||
transform: rotate(90deg);
|
||||
background-position: left center;
|
||||
}
|
||||
[dir=rtl] .pico details[open] > summary::after {
|
||||
transform: rotate(0);
|
||||
}
|
||||
|
||||
/**
|
||||
* Card (<article>, role="article")
|
||||
|
@ -3275,6 +3273,46 @@ main {
|
|||
border-bottom-right-radius: 5rem;
|
||||
}
|
||||
|
||||
[dir=rtl] .pico [role=search] > *:not(:first-child),
|
||||
[dir=rtl] .pico [role=search] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] .pico [role=search] select:not(:first-child),
|
||||
[dir=rtl] .pico [role=search] label:not(:first-child),
|
||||
[dir=rtl] .pico [role=group] > *:not(:first-child),
|
||||
[dir=rtl] .pico [role=group] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] .pico [role=group] select:not(:first-child),
|
||||
[dir=rtl] .pico [role=group] label:not(:first-child) {
|
||||
margin-right: 0;
|
||||
margin-left: auto;
|
||||
border-top-right-radius: 0;
|
||||
border-top-left-radius: var(--pico-border-radius);
|
||||
border-bottom-right-radius: 0;
|
||||
border-bottom-left-radius: var(--pico-border-radius);
|
||||
}
|
||||
[dir=rtl] .pico [role=search] > *:not(:last-child),
|
||||
[dir=rtl] .pico [role=search] input:not([type=checkbox], [type=radio]):not(:last-child),
|
||||
[dir=rtl] .pico [role=search] select:not(:last-child),
|
||||
[dir=rtl] .pico [role=search] label:not(:last-child),
|
||||
[dir=rtl] .pico [role=group] > *:not(:last-child),
|
||||
[dir=rtl] .pico [role=group] input:not([type=checkbox], [type=radio]):not(:last-child),
|
||||
[dir=rtl] .pico [role=group] select:not(:last-child),
|
||||
[dir=rtl] .pico [role=group] label:not(:last-child) {
|
||||
border-top-right-radius: var(--pico-border-radius);
|
||||
border-top-left-radius: 0;
|
||||
border-bottom-right-radius: var(--pico-border-radius);
|
||||
border-bottom-left-radius: 0;
|
||||
}
|
||||
[dir=rtl] button:not(:first-child),
|
||||
[dir=rtl] [type=submit]:not(:first-child),
|
||||
[dir=rtl] [type=reset]:not(:first-child),
|
||||
[dir=rtl] [type=button]:not(:first-child),
|
||||
[dir=rtl] [role=button]:not(:first-child),
|
||||
[dir=rtl] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] select:not(:first-child),
|
||||
[dir=rtl] label:not(:first-child) {
|
||||
margin-right: calc(var(--pico-border-width) * -1);
|
||||
margin-left: auto;
|
||||
}
|
||||
|
||||
/**
|
||||
* Loading ([aria-busy=true])
|
||||
*/
|
||||
|
|
2
css/pico.conditional.jade.min.css
vendored
2
css/pico.conditional.jade.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -2818,7 +2818,6 @@ main {
|
|||
line-height: 1rem;
|
||||
list-style-type: none;
|
||||
cursor: pointer;
|
||||
transition: color var(--pico-transition);
|
||||
}
|
||||
.pico details summary:not([role]) {
|
||||
color: var(--pico-accordion-close-summary-color);
|
||||
|
@ -2844,7 +2843,6 @@ main {
|
|||
background-size: 1rem auto;
|
||||
background-repeat: no-repeat;
|
||||
content: "";
|
||||
transition: transform var(--pico-transition);
|
||||
}
|
||||
.pico details summary:focus {
|
||||
outline: none;
|
||||
|
@ -2870,17 +2868,17 @@ main {
|
|||
.pico details[open] > summary:not([role]):not(:focus) {
|
||||
color: var(--pico-accordion-open-summary-color);
|
||||
}
|
||||
.pico details[open] > summary::after {
|
||||
transform: rotate(0);
|
||||
}
|
||||
|
||||
[dir=rtl] .pico details summary {
|
||||
text-align: right;
|
||||
}
|
||||
[dir=rtl] .pico details summary::after {
|
||||
float: left;
|
||||
transform: rotate(90deg);
|
||||
background-position: left center;
|
||||
}
|
||||
[dir=rtl] .pico details[open] > summary::after {
|
||||
transform: rotate(0);
|
||||
}
|
||||
|
||||
/**
|
||||
* Card (<article>, role="article")
|
||||
|
@ -3275,6 +3273,46 @@ main {
|
|||
border-bottom-right-radius: 5rem;
|
||||
}
|
||||
|
||||
[dir=rtl] .pico [role=search] > *:not(:first-child),
|
||||
[dir=rtl] .pico [role=search] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] .pico [role=search] select:not(:first-child),
|
||||
[dir=rtl] .pico [role=search] label:not(:first-child),
|
||||
[dir=rtl] .pico [role=group] > *:not(:first-child),
|
||||
[dir=rtl] .pico [role=group] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] .pico [role=group] select:not(:first-child),
|
||||
[dir=rtl] .pico [role=group] label:not(:first-child) {
|
||||
margin-right: 0;
|
||||
margin-left: auto;
|
||||
border-top-right-radius: 0;
|
||||
border-top-left-radius: var(--pico-border-radius);
|
||||
border-bottom-right-radius: 0;
|
||||
border-bottom-left-radius: var(--pico-border-radius);
|
||||
}
|
||||
[dir=rtl] .pico [role=search] > *:not(:last-child),
|
||||
[dir=rtl] .pico [role=search] input:not([type=checkbox], [type=radio]):not(:last-child),
|
||||
[dir=rtl] .pico [role=search] select:not(:last-child),
|
||||
[dir=rtl] .pico [role=search] label:not(:last-child),
|
||||
[dir=rtl] .pico [role=group] > *:not(:last-child),
|
||||
[dir=rtl] .pico [role=group] input:not([type=checkbox], [type=radio]):not(:last-child),
|
||||
[dir=rtl] .pico [role=group] select:not(:last-child),
|
||||
[dir=rtl] .pico [role=group] label:not(:last-child) {
|
||||
border-top-right-radius: var(--pico-border-radius);
|
||||
border-top-left-radius: 0;
|
||||
border-bottom-right-radius: var(--pico-border-radius);
|
||||
border-bottom-left-radius: 0;
|
||||
}
|
||||
[dir=rtl] button:not(:first-child),
|
||||
[dir=rtl] [type=submit]:not(:first-child),
|
||||
[dir=rtl] [type=reset]:not(:first-child),
|
||||
[dir=rtl] [type=button]:not(:first-child),
|
||||
[dir=rtl] [role=button]:not(:first-child),
|
||||
[dir=rtl] input:not([type=checkbox], [type=radio]):not(:first-child),
|
||||
[dir=rtl] select:not(:first-child),
|
||||
[dir=rtl] label:not(:first-child) {
|
||||
margin-right: calc(var(--pico-border-width) * -1);
|
||||
margin-left: auto;
|
||||
}
|
||||
|
||||
/**
|
||||
* Loading ([aria-busy=true])
|
||||
*/
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue