mirror of
https://github.com/picocss/pico.git
synced 2025-04-20 08:45:06 -04:00
Merge pull request #448 from Atmos4/main
Allow `button` as modal closing icon.
This commit is contained in:
commit
021144da04
237 changed files with 715 additions and 473 deletions
|
@ -2352,7 +2352,7 @@ dialog article {
|
||||||
dialog article > header > * {
|
dialog article > header > * {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
dialog article > header .close, dialog article > header a[rel=prev] {
|
dialog article > header .close, dialog article > header :is(a, button)[rel=prev] {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
margin-left: var(--pico-spacing);
|
margin-left: var(--pico-spacing);
|
||||||
float: right;
|
float: right;
|
||||||
|
@ -2368,21 +2368,23 @@ dialog article > footer button:not(:first-of-type),
|
||||||
dialog article > footer [role=button]:not(:first-of-type) {
|
dialog article > footer [role=button]:not(:first-of-type) {
|
||||||
margin-left: calc(var(--pico-spacing) * 0.5);
|
margin-left: calc(var(--pico-spacing) * 0.5);
|
||||||
}
|
}
|
||||||
dialog article .close, dialog article a[rel=prev] {
|
dialog article .close, dialog article :is(a, button)[rel=prev] {
|
||||||
display: block;
|
display: block;
|
||||||
width: 1rem;
|
width: 1rem;
|
||||||
height: 1rem;
|
height: 1rem;
|
||||||
margin-top: calc(var(--pico-spacing) * -1);
|
margin-top: calc(var(--pico-spacing) * -1);
|
||||||
margin-bottom: var(--pico-spacing);
|
margin-bottom: var(--pico-spacing);
|
||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
|
border: none;
|
||||||
background-image: var(--pico-icon-close);
|
background-image: var(--pico-icon-close);
|
||||||
background-position: center;
|
background-position: center;
|
||||||
background-size: auto 1rem;
|
background-size: auto 1rem;
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
|
background-color: transparent;
|
||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
transition: opacity var(--pico-transition);
|
transition: opacity var(--pico-transition);
|
||||||
}
|
}
|
||||||
dialog article .close:is([aria-current]:not([aria-current=false]), :hover, :active, :focus), dialog article a[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
|
dialog article .close:is([aria-current]:not([aria-current=false]), :hover, :active, :focus), dialog article :is(a, button)[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
}
|
}
|
||||||
dialog:not([open]), dialog[open=false] {
|
dialog:not([open]), dialog[open=false] {
|
||||||
|
|
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
|
@ -2352,7 +2352,7 @@ dialog article {
|
||||||
dialog article > header > * {
|
dialog article > header > * {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
dialog article > header .close, dialog article > header a[rel=prev] {
|
dialog article > header .close, dialog article > header :is(a, button)[rel=prev] {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
margin-left: var(--pico-spacing);
|
margin-left: var(--pico-spacing);
|
||||||
float: right;
|
float: right;
|
||||||
|
@ -2368,21 +2368,23 @@ dialog article > footer button:not(:first-of-type),
|
||||||
dialog article > footer [role=button]:not(:first-of-type) {
|
dialog article > footer [role=button]:not(:first-of-type) {
|
||||||
margin-left: calc(var(--pico-spacing) * 0.5);
|
margin-left: calc(var(--pico-spacing) * 0.5);
|
||||||
}
|
}
|
||||||
dialog article .close, dialog article a[rel=prev] {
|
dialog article .close, dialog article :is(a, button)[rel=prev] {
|
||||||
display: block;
|
display: block;
|
||||||
width: 1rem;
|
width: 1rem;
|
||||||
height: 1rem;
|
height: 1rem;
|
||||||
margin-top: calc(var(--pico-spacing) * -1);
|
margin-top: calc(var(--pico-spacing) * -1);
|
||||||
margin-bottom: var(--pico-spacing);
|
margin-bottom: var(--pico-spacing);
|
||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
|
border: none;
|
||||||
background-image: var(--pico-icon-close);
|
background-image: var(--pico-icon-close);
|
||||||
background-position: center;
|
background-position: center;
|
||||||
background-size: auto 1rem;
|
background-size: auto 1rem;
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
|
background-color: transparent;
|
||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
transition: opacity var(--pico-transition);
|
transition: opacity var(--pico-transition);
|
||||||
}
|
}
|
||||||
dialog article .close:is([aria-current]:not([aria-current=false]), :hover, :active, :focus), dialog article a[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
|
dialog article .close:is([aria-current]:not([aria-current=false]), :hover, :active, :focus), dialog article :is(a, button)[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
}
|
}
|
||||||
dialog:not([open]), dialog[open=false] {
|
dialog:not([open]), dialog[open=false] {
|
||||||
|
|
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
|
@ -2026,7 +2026,7 @@ dialog article {
|
||||||
dialog article > header > * {
|
dialog article > header > * {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
dialog article > header a[rel=prev] {
|
dialog article > header :is(a, button)[rel=prev] {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
margin-left: var(--pico-spacing);
|
margin-left: var(--pico-spacing);
|
||||||
float: right;
|
float: right;
|
||||||
|
@ -2042,21 +2042,23 @@ dialog article > footer button:not(:first-of-type),
|
||||||
dialog article > footer [role=button]:not(:first-of-type) {
|
dialog article > footer [role=button]:not(:first-of-type) {
|
||||||
margin-left: calc(var(--pico-spacing) * 0.5);
|
margin-left: calc(var(--pico-spacing) * 0.5);
|
||||||
}
|
}
|
||||||
dialog article a[rel=prev] {
|
dialog article :is(a, button)[rel=prev] {
|
||||||
display: block;
|
display: block;
|
||||||
width: 1rem;
|
width: 1rem;
|
||||||
height: 1rem;
|
height: 1rem;
|
||||||
margin-top: calc(var(--pico-spacing) * -1);
|
margin-top: calc(var(--pico-spacing) * -1);
|
||||||
margin-bottom: var(--pico-spacing);
|
margin-bottom: var(--pico-spacing);
|
||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
|
border: none;
|
||||||
background-image: var(--pico-icon-close);
|
background-image: var(--pico-icon-close);
|
||||||
background-position: center;
|
background-position: center;
|
||||||
background-size: auto 1rem;
|
background-size: auto 1rem;
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
|
background-color: transparent;
|
||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
transition: opacity var(--pico-transition);
|
transition: opacity var(--pico-transition);
|
||||||
}
|
}
|
||||||
dialog article a[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
|
dialog article :is(a, button)[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
}
|
}
|
||||||
dialog:not([open]), dialog[open=false] {
|
dialog:not([open]), dialog[open=false] {
|
||||||
|
|
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
|
@ -2026,7 +2026,7 @@ dialog article {
|
||||||
dialog article > header > * {
|
dialog article > header > * {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
dialog article > header a[rel=prev] {
|
dialog article > header :is(a, button)[rel=prev] {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
margin-left: var(--pico-spacing);
|
margin-left: var(--pico-spacing);
|
||||||
float: right;
|
float: right;
|
||||||
|
@ -2042,21 +2042,23 @@ dialog article > footer button:not(:first-of-type),
|
||||||
dialog article > footer [role=button]:not(:first-of-type) {
|
dialog article > footer [role=button]:not(:first-of-type) {
|
||||||
margin-left: calc(var(--pico-spacing) * 0.5);
|
margin-left: calc(var(--pico-spacing) * 0.5);
|
||||||
}
|
}
|
||||||
dialog article a[rel=prev] {
|
dialog article :is(a, button)[rel=prev] {
|
||||||
display: block;
|
display: block;
|
||||||
width: 1rem;
|
width: 1rem;
|
||||||
height: 1rem;
|
height: 1rem;
|
||||||
margin-top: calc(var(--pico-spacing) * -1);
|
margin-top: calc(var(--pico-spacing) * -1);
|
||||||
margin-bottom: var(--pico-spacing);
|
margin-bottom: var(--pico-spacing);
|
||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
|
border: none;
|
||||||
background-image: var(--pico-icon-close);
|
background-image: var(--pico-icon-close);
|
||||||
background-position: center;
|
background-position: center;
|
||||||
background-size: auto 1rem;
|
background-size: auto 1rem;
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
|
background-color: transparent;
|
||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
transition: opacity var(--pico-transition);
|
transition: opacity var(--pico-transition);
|
||||||
}
|
}
|
||||||
dialog article a[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
|
dialog article :is(a, button)[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
}
|
}
|
||||||
dialog:not([open]), dialog[open=false] {
|
dialog:not([open]), dialog[open=false] {
|
||||||
|
|
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
|
@ -2026,7 +2026,7 @@ main {
|
||||||
.pico dialog article > header > * {
|
.pico dialog article > header > * {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
.pico dialog article > header a[rel=prev] {
|
.pico dialog article > header :is(a, button)[rel=prev] {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
margin-left: var(--pico-spacing);
|
margin-left: var(--pico-spacing);
|
||||||
float: right;
|
float: right;
|
||||||
|
@ -2042,21 +2042,23 @@ main {
|
||||||
.pico dialog article > footer [role=button]:not(:first-of-type) {
|
.pico dialog article > footer [role=button]:not(:first-of-type) {
|
||||||
margin-left: calc(var(--pico-spacing) * 0.5);
|
margin-left: calc(var(--pico-spacing) * 0.5);
|
||||||
}
|
}
|
||||||
.pico dialog article a[rel=prev] {
|
.pico dialog article :is(a, button)[rel=prev] {
|
||||||
display: block;
|
display: block;
|
||||||
width: 1rem;
|
width: 1rem;
|
||||||
height: 1rem;
|
height: 1rem;
|
||||||
margin-top: calc(var(--pico-spacing) * -1);
|
margin-top: calc(var(--pico-spacing) * -1);
|
||||||
margin-bottom: var(--pico-spacing);
|
margin-bottom: var(--pico-spacing);
|
||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
|
border: none;
|
||||||
background-image: var(--pico-icon-close);
|
background-image: var(--pico-icon-close);
|
||||||
background-position: center;
|
background-position: center;
|
||||||
background-size: auto 1rem;
|
background-size: auto 1rem;
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
|
background-color: transparent;
|
||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
transition: opacity var(--pico-transition);
|
transition: opacity var(--pico-transition);
|
||||||
}
|
}
|
||||||
.pico dialog article a[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
|
.pico dialog article :is(a, button)[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
}
|
}
|
||||||
.pico dialog:not([open]), .pico dialog[open=false] {
|
.pico dialog:not([open]), .pico dialog[open=false] {
|
||||||
|
|
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
|
@ -2026,7 +2026,7 @@ main {
|
||||||
.pico dialog article > header > * {
|
.pico dialog article > header > * {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
.pico dialog article > header a[rel=prev] {
|
.pico dialog article > header :is(a, button)[rel=prev] {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
margin-left: var(--pico-spacing);
|
margin-left: var(--pico-spacing);
|
||||||
float: right;
|
float: right;
|
||||||
|
@ -2042,21 +2042,23 @@ main {
|
||||||
.pico dialog article > footer [role=button]:not(:first-of-type) {
|
.pico dialog article > footer [role=button]:not(:first-of-type) {
|
||||||
margin-left: calc(var(--pico-spacing) * 0.5);
|
margin-left: calc(var(--pico-spacing) * 0.5);
|
||||||
}
|
}
|
||||||
.pico dialog article a[rel=prev] {
|
.pico dialog article :is(a, button)[rel=prev] {
|
||||||
display: block;
|
display: block;
|
||||||
width: 1rem;
|
width: 1rem;
|
||||||
height: 1rem;
|
height: 1rem;
|
||||||
margin-top: calc(var(--pico-spacing) * -1);
|
margin-top: calc(var(--pico-spacing) * -1);
|
||||||
margin-bottom: var(--pico-spacing);
|
margin-bottom: var(--pico-spacing);
|
||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
|
border: none;
|
||||||
background-image: var(--pico-icon-close);
|
background-image: var(--pico-icon-close);
|
||||||
background-position: center;
|
background-position: center;
|
||||||
background-size: auto 1rem;
|
background-size: auto 1rem;
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
|
background-color: transparent;
|
||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
transition: opacity var(--pico-transition);
|
transition: opacity var(--pico-transition);
|
||||||
}
|
}
|
||||||
.pico dialog article a[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
|
.pico dialog article :is(a, button)[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
}
|
}
|
||||||
.pico dialog:not([open]), .pico dialog[open=false] {
|
.pico dialog:not([open]), .pico dialog[open=false] {
|
||||||
|
|
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
|
@ -2026,7 +2026,7 @@ main {
|
||||||
.pico dialog article > header > * {
|
.pico dialog article > header > * {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
.pico dialog article > header a[rel=prev] {
|
.pico dialog article > header :is(a, button)[rel=prev] {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
margin-left: var(--pico-spacing);
|
margin-left: var(--pico-spacing);
|
||||||
float: right;
|
float: right;
|
||||||
|
@ -2042,21 +2042,23 @@ main {
|
||||||
.pico dialog article > footer [role=button]:not(:first-of-type) {
|
.pico dialog article > footer [role=button]:not(:first-of-type) {
|
||||||
margin-left: calc(var(--pico-spacing) * 0.5);
|
margin-left: calc(var(--pico-spacing) * 0.5);
|
||||||
}
|
}
|
||||||
.pico dialog article a[rel=prev] {
|
.pico dialog article :is(a, button)[rel=prev] {
|
||||||
display: block;
|
display: block;
|
||||||
width: 1rem;
|
width: 1rem;
|
||||||
height: 1rem;
|
height: 1rem;
|
||||||
margin-top: calc(var(--pico-spacing) * -1);
|
margin-top: calc(var(--pico-spacing) * -1);
|
||||||
margin-bottom: var(--pico-spacing);
|
margin-bottom: var(--pico-spacing);
|
||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
|
border: none;
|
||||||
background-image: var(--pico-icon-close);
|
background-image: var(--pico-icon-close);
|
||||||
background-position: center;
|
background-position: center;
|
||||||
background-size: auto 1rem;
|
background-size: auto 1rem;
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
|
background-color: transparent;
|
||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
transition: opacity var(--pico-transition);
|
transition: opacity var(--pico-transition);
|
||||||
}
|
}
|
||||||
.pico dialog article a[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
|
.pico dialog article :is(a, button)[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
}
|
}
|
||||||
.pico dialog:not([open]), .pico dialog[open=false] {
|
.pico dialog:not([open]), .pico dialog[open=false] {
|
||||||
|
|
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
|
@ -2026,7 +2026,7 @@ main {
|
||||||
.pico dialog article > header > * {
|
.pico dialog article > header > * {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
.pico dialog article > header a[rel=prev] {
|
.pico dialog article > header :is(a, button)[rel=prev] {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
margin-left: var(--pico-spacing);
|
margin-left: var(--pico-spacing);
|
||||||
float: right;
|
float: right;
|
||||||
|
@ -2042,21 +2042,23 @@ main {
|
||||||
.pico dialog article > footer [role=button]:not(:first-of-type) {
|
.pico dialog article > footer [role=button]:not(:first-of-type) {
|
||||||
margin-left: calc(var(--pico-spacing) * 0.5);
|
margin-left: calc(var(--pico-spacing) * 0.5);
|
||||||
}
|
}
|
||||||
.pico dialog article a[rel=prev] {
|
.pico dialog article :is(a, button)[rel=prev] {
|
||||||
display: block;
|
display: block;
|
||||||
width: 1rem;
|
width: 1rem;
|
||||||
height: 1rem;
|
height: 1rem;
|
||||||
margin-top: calc(var(--pico-spacing) * -1);
|
margin-top: calc(var(--pico-spacing) * -1);
|
||||||
margin-bottom: var(--pico-spacing);
|
margin-bottom: var(--pico-spacing);
|
||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
|
border: none;
|
||||||
background-image: var(--pico-icon-close);
|
background-image: var(--pico-icon-close);
|
||||||
background-position: center;
|
background-position: center;
|
||||||
background-size: auto 1rem;
|
background-size: auto 1rem;
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
|
background-color: transparent;
|
||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
transition: opacity var(--pico-transition);
|
transition: opacity var(--pico-transition);
|
||||||
}
|
}
|
||||||
.pico dialog article a[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
|
.pico dialog article :is(a, button)[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
}
|
}
|
||||||
.pico dialog:not([open]), .pico dialog[open=false] {
|
.pico dialog:not([open]), .pico dialog[open=false] {
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -2026,7 +2026,7 @@ main {
|
||||||
.pico dialog article > header > * {
|
.pico dialog article > header > * {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
.pico dialog article > header a[rel=prev] {
|
.pico dialog article > header :is(a, button)[rel=prev] {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
margin-left: var(--pico-spacing);
|
margin-left: var(--pico-spacing);
|
||||||
float: right;
|
float: right;
|
||||||
|
@ -2042,21 +2042,23 @@ main {
|
||||||
.pico dialog article > footer [role=button]:not(:first-of-type) {
|
.pico dialog article > footer [role=button]:not(:first-of-type) {
|
||||||
margin-left: calc(var(--pico-spacing) * 0.5);
|
margin-left: calc(var(--pico-spacing) * 0.5);
|
||||||
}
|
}
|
||||||
.pico dialog article a[rel=prev] {
|
.pico dialog article :is(a, button)[rel=prev] {
|
||||||
display: block;
|
display: block;
|
||||||
width: 1rem;
|
width: 1rem;
|
||||||
height: 1rem;
|
height: 1rem;
|
||||||
margin-top: calc(var(--pico-spacing) * -1);
|
margin-top: calc(var(--pico-spacing) * -1);
|
||||||
margin-bottom: var(--pico-spacing);
|
margin-bottom: var(--pico-spacing);
|
||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
|
border: none;
|
||||||
background-image: var(--pico-icon-close);
|
background-image: var(--pico-icon-close);
|
||||||
background-position: center;
|
background-position: center;
|
||||||
background-size: auto 1rem;
|
background-size: auto 1rem;
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
|
background-color: transparent;
|
||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
transition: opacity var(--pico-transition);
|
transition: opacity var(--pico-transition);
|
||||||
}
|
}
|
||||||
.pico dialog article a[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
|
.pico dialog article :is(a, button)[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
}
|
}
|
||||||
.pico dialog:not([open]), .pico dialog[open=false] {
|
.pico dialog:not([open]), .pico dialog[open=false] {
|
||||||
|
|
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
|
@ -2026,7 +2026,7 @@ main {
|
||||||
.pico dialog article > header > * {
|
.pico dialog article > header > * {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
.pico dialog article > header a[rel=prev] {
|
.pico dialog article > header :is(a, button)[rel=prev] {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
margin-left: var(--pico-spacing);
|
margin-left: var(--pico-spacing);
|
||||||
float: right;
|
float: right;
|
||||||
|
@ -2042,21 +2042,23 @@ main {
|
||||||
.pico dialog article > footer [role=button]:not(:first-of-type) {
|
.pico dialog article > footer [role=button]:not(:first-of-type) {
|
||||||
margin-left: calc(var(--pico-spacing) * 0.5);
|
margin-left: calc(var(--pico-spacing) * 0.5);
|
||||||
}
|
}
|
||||||
.pico dialog article a[rel=prev] {
|
.pico dialog article :is(a, button)[rel=prev] {
|
||||||
display: block;
|
display: block;
|
||||||
width: 1rem;
|
width: 1rem;
|
||||||
height: 1rem;
|
height: 1rem;
|
||||||
margin-top: calc(var(--pico-spacing) * -1);
|
margin-top: calc(var(--pico-spacing) * -1);
|
||||||
margin-bottom: var(--pico-spacing);
|
margin-bottom: var(--pico-spacing);
|
||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
|
border: none;
|
||||||
background-image: var(--pico-icon-close);
|
background-image: var(--pico-icon-close);
|
||||||
background-position: center;
|
background-position: center;
|
||||||
background-size: auto 1rem;
|
background-size: auto 1rem;
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
|
background-color: transparent;
|
||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
transition: opacity var(--pico-transition);
|
transition: opacity var(--pico-transition);
|
||||||
}
|
}
|
||||||
.pico dialog article a[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
|
.pico dialog article :is(a, button)[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
}
|
}
|
||||||
.pico dialog:not([open]), .pico dialog[open=false] {
|
.pico dialog:not([open]), .pico dialog[open=false] {
|
||||||
|
|
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
|
@ -2026,7 +2026,7 @@ main {
|
||||||
.pico dialog article > header > * {
|
.pico dialog article > header > * {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
.pico dialog article > header a[rel=prev] {
|
.pico dialog article > header :is(a, button)[rel=prev] {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
margin-left: var(--pico-spacing);
|
margin-left: var(--pico-spacing);
|
||||||
float: right;
|
float: right;
|
||||||
|
@ -2042,21 +2042,23 @@ main {
|
||||||
.pico dialog article > footer [role=button]:not(:first-of-type) {
|
.pico dialog article > footer [role=button]:not(:first-of-type) {
|
||||||
margin-left: calc(var(--pico-spacing) * 0.5);
|
margin-left: calc(var(--pico-spacing) * 0.5);
|
||||||
}
|
}
|
||||||
.pico dialog article a[rel=prev] {
|
.pico dialog article :is(a, button)[rel=prev] {
|
||||||
display: block;
|
display: block;
|
||||||
width: 1rem;
|
width: 1rem;
|
||||||
height: 1rem;
|
height: 1rem;
|
||||||
margin-top: calc(var(--pico-spacing) * -1);
|
margin-top: calc(var(--pico-spacing) * -1);
|
||||||
margin-bottom: var(--pico-spacing);
|
margin-bottom: var(--pico-spacing);
|
||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
|
border: none;
|
||||||
background-image: var(--pico-icon-close);
|
background-image: var(--pico-icon-close);
|
||||||
background-position: center;
|
background-position: center;
|
||||||
background-size: auto 1rem;
|
background-size: auto 1rem;
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
|
background-color: transparent;
|
||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
transition: opacity var(--pico-transition);
|
transition: opacity var(--pico-transition);
|
||||||
}
|
}
|
||||||
.pico dialog article a[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
|
.pico dialog article :is(a, button)[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
}
|
}
|
||||||
.pico dialog:not([open]), .pico dialog[open=false] {
|
.pico dialog:not([open]), .pico dialog[open=false] {
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -2026,7 +2026,7 @@ main {
|
||||||
.pico dialog article > header > * {
|
.pico dialog article > header > * {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
.pico dialog article > header a[rel=prev] {
|
.pico dialog article > header :is(a, button)[rel=prev] {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
margin-left: var(--pico-spacing);
|
margin-left: var(--pico-spacing);
|
||||||
float: right;
|
float: right;
|
||||||
|
@ -2042,21 +2042,23 @@ main {
|
||||||
.pico dialog article > footer [role=button]:not(:first-of-type) {
|
.pico dialog article > footer [role=button]:not(:first-of-type) {
|
||||||
margin-left: calc(var(--pico-spacing) * 0.5);
|
margin-left: calc(var(--pico-spacing) * 0.5);
|
||||||
}
|
}
|
||||||
.pico dialog article a[rel=prev] {
|
.pico dialog article :is(a, button)[rel=prev] {
|
||||||
display: block;
|
display: block;
|
||||||
width: 1rem;
|
width: 1rem;
|
||||||
height: 1rem;
|
height: 1rem;
|
||||||
margin-top: calc(var(--pico-spacing) * -1);
|
margin-top: calc(var(--pico-spacing) * -1);
|
||||||
margin-bottom: var(--pico-spacing);
|
margin-bottom: var(--pico-spacing);
|
||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
|
border: none;
|
||||||
background-image: var(--pico-icon-close);
|
background-image: var(--pico-icon-close);
|
||||||
background-position: center;
|
background-position: center;
|
||||||
background-size: auto 1rem;
|
background-size: auto 1rem;
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
|
background-color: transparent;
|
||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
transition: opacity var(--pico-transition);
|
transition: opacity var(--pico-transition);
|
||||||
}
|
}
|
||||||
.pico dialog article a[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
|
.pico dialog article :is(a, button)[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
}
|
}
|
||||||
.pico dialog:not([open]), .pico dialog[open=false] {
|
.pico dialog:not([open]), .pico dialog[open=false] {
|
||||||
|
|
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
|
@ -2026,7 +2026,7 @@ main {
|
||||||
.pico dialog article > header > * {
|
.pico dialog article > header > * {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
.pico dialog article > header a[rel=prev] {
|
.pico dialog article > header :is(a, button)[rel=prev] {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
margin-left: var(--pico-spacing);
|
margin-left: var(--pico-spacing);
|
||||||
float: right;
|
float: right;
|
||||||
|
@ -2042,21 +2042,23 @@ main {
|
||||||
.pico dialog article > footer [role=button]:not(:first-of-type) {
|
.pico dialog article > footer [role=button]:not(:first-of-type) {
|
||||||
margin-left: calc(var(--pico-spacing) * 0.5);
|
margin-left: calc(var(--pico-spacing) * 0.5);
|
||||||
}
|
}
|
||||||
.pico dialog article a[rel=prev] {
|
.pico dialog article :is(a, button)[rel=prev] {
|
||||||
display: block;
|
display: block;
|
||||||
width: 1rem;
|
width: 1rem;
|
||||||
height: 1rem;
|
height: 1rem;
|
||||||
margin-top: calc(var(--pico-spacing) * -1);
|
margin-top: calc(var(--pico-spacing) * -1);
|
||||||
margin-bottom: var(--pico-spacing);
|
margin-bottom: var(--pico-spacing);
|
||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
|
border: none;
|
||||||
background-image: var(--pico-icon-close);
|
background-image: var(--pico-icon-close);
|
||||||
background-position: center;
|
background-position: center;
|
||||||
background-size: auto 1rem;
|
background-size: auto 1rem;
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
|
background-color: transparent;
|
||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
transition: opacity var(--pico-transition);
|
transition: opacity var(--pico-transition);
|
||||||
}
|
}
|
||||||
.pico dialog article a[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
|
.pico dialog article :is(a, button)[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
}
|
}
|
||||||
.pico dialog:not([open]), .pico dialog[open=false] {
|
.pico dialog:not([open]), .pico dialog[open=false] {
|
||||||
|
|
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
|
@ -2026,7 +2026,7 @@ main {
|
||||||
.pico dialog article > header > * {
|
.pico dialog article > header > * {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
.pico dialog article > header a[rel=prev] {
|
.pico dialog article > header :is(a, button)[rel=prev] {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
margin-left: var(--pico-spacing);
|
margin-left: var(--pico-spacing);
|
||||||
float: right;
|
float: right;
|
||||||
|
@ -2042,21 +2042,23 @@ main {
|
||||||
.pico dialog article > footer [role=button]:not(:first-of-type) {
|
.pico dialog article > footer [role=button]:not(:first-of-type) {
|
||||||
margin-left: calc(var(--pico-spacing) * 0.5);
|
margin-left: calc(var(--pico-spacing) * 0.5);
|
||||||
}
|
}
|
||||||
.pico dialog article a[rel=prev] {
|
.pico dialog article :is(a, button)[rel=prev] {
|
||||||
display: block;
|
display: block;
|
||||||
width: 1rem;
|
width: 1rem;
|
||||||
height: 1rem;
|
height: 1rem;
|
||||||
margin-top: calc(var(--pico-spacing) * -1);
|
margin-top: calc(var(--pico-spacing) * -1);
|
||||||
margin-bottom: var(--pico-spacing);
|
margin-bottom: var(--pico-spacing);
|
||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
|
border: none;
|
||||||
background-image: var(--pico-icon-close);
|
background-image: var(--pico-icon-close);
|
||||||
background-position: center;
|
background-position: center;
|
||||||
background-size: auto 1rem;
|
background-size: auto 1rem;
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
|
background-color: transparent;
|
||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
transition: opacity var(--pico-transition);
|
transition: opacity var(--pico-transition);
|
||||||
}
|
}
|
||||||
.pico dialog article a[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
|
.pico dialog article :is(a, button)[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
}
|
}
|
||||||
.pico dialog:not([open]), .pico dialog[open=false] {
|
.pico dialog:not([open]), .pico dialog[open=false] {
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -2026,7 +2026,7 @@ main {
|
||||||
.pico dialog article > header > * {
|
.pico dialog article > header > * {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
.pico dialog article > header a[rel=prev] {
|
.pico dialog article > header :is(a, button)[rel=prev] {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
margin-left: var(--pico-spacing);
|
margin-left: var(--pico-spacing);
|
||||||
float: right;
|
float: right;
|
||||||
|
@ -2042,21 +2042,23 @@ main {
|
||||||
.pico dialog article > footer [role=button]:not(:first-of-type) {
|
.pico dialog article > footer [role=button]:not(:first-of-type) {
|
||||||
margin-left: calc(var(--pico-spacing) * 0.5);
|
margin-left: calc(var(--pico-spacing) * 0.5);
|
||||||
}
|
}
|
||||||
.pico dialog article a[rel=prev] {
|
.pico dialog article :is(a, button)[rel=prev] {
|
||||||
display: block;
|
display: block;
|
||||||
width: 1rem;
|
width: 1rem;
|
||||||
height: 1rem;
|
height: 1rem;
|
||||||
margin-top: calc(var(--pico-spacing) * -1);
|
margin-top: calc(var(--pico-spacing) * -1);
|
||||||
margin-bottom: var(--pico-spacing);
|
margin-bottom: var(--pico-spacing);
|
||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
|
border: none;
|
||||||
background-image: var(--pico-icon-close);
|
background-image: var(--pico-icon-close);
|
||||||
background-position: center;
|
background-position: center;
|
||||||
background-size: auto 1rem;
|
background-size: auto 1rem;
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
|
background-color: transparent;
|
||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
transition: opacity var(--pico-transition);
|
transition: opacity var(--pico-transition);
|
||||||
}
|
}
|
||||||
.pico dialog article a[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
|
.pico dialog article :is(a, button)[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
}
|
}
|
||||||
.pico dialog:not([open]), .pico dialog[open=false] {
|
.pico dialog:not([open]), .pico dialog[open=false] {
|
||||||
|
|
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
|
@ -2026,7 +2026,7 @@ main {
|
||||||
.pico dialog article > header > * {
|
.pico dialog article > header > * {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
.pico dialog article > header a[rel=prev] {
|
.pico dialog article > header :is(a, button)[rel=prev] {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
margin-left: var(--pico-spacing);
|
margin-left: var(--pico-spacing);
|
||||||
float: right;
|
float: right;
|
||||||
|
@ -2042,21 +2042,23 @@ main {
|
||||||
.pico dialog article > footer [role=button]:not(:first-of-type) {
|
.pico dialog article > footer [role=button]:not(:first-of-type) {
|
||||||
margin-left: calc(var(--pico-spacing) * 0.5);
|
margin-left: calc(var(--pico-spacing) * 0.5);
|
||||||
}
|
}
|
||||||
.pico dialog article a[rel=prev] {
|
.pico dialog article :is(a, button)[rel=prev] {
|
||||||
display: block;
|
display: block;
|
||||||
width: 1rem;
|
width: 1rem;
|
||||||
height: 1rem;
|
height: 1rem;
|
||||||
margin-top: calc(var(--pico-spacing) * -1);
|
margin-top: calc(var(--pico-spacing) * -1);
|
||||||
margin-bottom: var(--pico-spacing);
|
margin-bottom: var(--pico-spacing);
|
||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
|
border: none;
|
||||||
background-image: var(--pico-icon-close);
|
background-image: var(--pico-icon-close);
|
||||||
background-position: center;
|
background-position: center;
|
||||||
background-size: auto 1rem;
|
background-size: auto 1rem;
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
|
background-color: transparent;
|
||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
transition: opacity var(--pico-transition);
|
transition: opacity var(--pico-transition);
|
||||||
}
|
}
|
||||||
.pico dialog article a[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
|
.pico dialog article :is(a, button)[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
}
|
}
|
||||||
.pico dialog:not([open]), .pico dialog[open=false] {
|
.pico dialog:not([open]), .pico dialog[open=false] {
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -2026,7 +2026,7 @@ main {
|
||||||
.pico dialog article > header > * {
|
.pico dialog article > header > * {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
.pico dialog article > header a[rel=prev] {
|
.pico dialog article > header :is(a, button)[rel=prev] {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
margin-left: var(--pico-spacing);
|
margin-left: var(--pico-spacing);
|
||||||
float: right;
|
float: right;
|
||||||
|
@ -2042,21 +2042,23 @@ main {
|
||||||
.pico dialog article > footer [role=button]:not(:first-of-type) {
|
.pico dialog article > footer [role=button]:not(:first-of-type) {
|
||||||
margin-left: calc(var(--pico-spacing) * 0.5);
|
margin-left: calc(var(--pico-spacing) * 0.5);
|
||||||
}
|
}
|
||||||
.pico dialog article a[rel=prev] {
|
.pico dialog article :is(a, button)[rel=prev] {
|
||||||
display: block;
|
display: block;
|
||||||
width: 1rem;
|
width: 1rem;
|
||||||
height: 1rem;
|
height: 1rem;
|
||||||
margin-top: calc(var(--pico-spacing) * -1);
|
margin-top: calc(var(--pico-spacing) * -1);
|
||||||
margin-bottom: var(--pico-spacing);
|
margin-bottom: var(--pico-spacing);
|
||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
|
border: none;
|
||||||
background-image: var(--pico-icon-close);
|
background-image: var(--pico-icon-close);
|
||||||
background-position: center;
|
background-position: center;
|
||||||
background-size: auto 1rem;
|
background-size: auto 1rem;
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
|
background-color: transparent;
|
||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
transition: opacity var(--pico-transition);
|
transition: opacity var(--pico-transition);
|
||||||
}
|
}
|
||||||
.pico dialog article a[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
|
.pico dialog article :is(a, button)[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
}
|
}
|
||||||
.pico dialog:not([open]), .pico dialog[open=false] {
|
.pico dialog:not([open]), .pico dialog[open=false] {
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -2026,7 +2026,7 @@ main {
|
||||||
.pico dialog article > header > * {
|
.pico dialog article > header > * {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
.pico dialog article > header a[rel=prev] {
|
.pico dialog article > header :is(a, button)[rel=prev] {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
margin-left: var(--pico-spacing);
|
margin-left: var(--pico-spacing);
|
||||||
float: right;
|
float: right;
|
||||||
|
@ -2042,21 +2042,23 @@ main {
|
||||||
.pico dialog article > footer [role=button]:not(:first-of-type) {
|
.pico dialog article > footer [role=button]:not(:first-of-type) {
|
||||||
margin-left: calc(var(--pico-spacing) * 0.5);
|
margin-left: calc(var(--pico-spacing) * 0.5);
|
||||||
}
|
}
|
||||||
.pico dialog article a[rel=prev] {
|
.pico dialog article :is(a, button)[rel=prev] {
|
||||||
display: block;
|
display: block;
|
||||||
width: 1rem;
|
width: 1rem;
|
||||||
height: 1rem;
|
height: 1rem;
|
||||||
margin-top: calc(var(--pico-spacing) * -1);
|
margin-top: calc(var(--pico-spacing) * -1);
|
||||||
margin-bottom: var(--pico-spacing);
|
margin-bottom: var(--pico-spacing);
|
||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
|
border: none;
|
||||||
background-image: var(--pico-icon-close);
|
background-image: var(--pico-icon-close);
|
||||||
background-position: center;
|
background-position: center;
|
||||||
background-size: auto 1rem;
|
background-size: auto 1rem;
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
|
background-color: transparent;
|
||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
transition: opacity var(--pico-transition);
|
transition: opacity var(--pico-transition);
|
||||||
}
|
}
|
||||||
.pico dialog article a[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
|
.pico dialog article :is(a, button)[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
}
|
}
|
||||||
.pico dialog:not([open]), .pico dialog[open=false] {
|
.pico dialog:not([open]), .pico dialog[open=false] {
|
||||||
|
|
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
|
@ -2026,7 +2026,7 @@ main {
|
||||||
.pico dialog article > header > * {
|
.pico dialog article > header > * {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
.pico dialog article > header a[rel=prev] {
|
.pico dialog article > header :is(a, button)[rel=prev] {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
margin-left: var(--pico-spacing);
|
margin-left: var(--pico-spacing);
|
||||||
float: right;
|
float: right;
|
||||||
|
@ -2042,21 +2042,23 @@ main {
|
||||||
.pico dialog article > footer [role=button]:not(:first-of-type) {
|
.pico dialog article > footer [role=button]:not(:first-of-type) {
|
||||||
margin-left: calc(var(--pico-spacing) * 0.5);
|
margin-left: calc(var(--pico-spacing) * 0.5);
|
||||||
}
|
}
|
||||||
.pico dialog article a[rel=prev] {
|
.pico dialog article :is(a, button)[rel=prev] {
|
||||||
display: block;
|
display: block;
|
||||||
width: 1rem;
|
width: 1rem;
|
||||||
height: 1rem;
|
height: 1rem;
|
||||||
margin-top: calc(var(--pico-spacing) * -1);
|
margin-top: calc(var(--pico-spacing) * -1);
|
||||||
margin-bottom: var(--pico-spacing);
|
margin-bottom: var(--pico-spacing);
|
||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
|
border: none;
|
||||||
background-image: var(--pico-icon-close);
|
background-image: var(--pico-icon-close);
|
||||||
background-position: center;
|
background-position: center;
|
||||||
background-size: auto 1rem;
|
background-size: auto 1rem;
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
|
background-color: transparent;
|
||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
transition: opacity var(--pico-transition);
|
transition: opacity var(--pico-transition);
|
||||||
}
|
}
|
||||||
.pico dialog article a[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
|
.pico dialog article :is(a, button)[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
}
|
}
|
||||||
.pico dialog:not([open]), .pico dialog[open=false] {
|
.pico dialog:not([open]), .pico dialog[open=false] {
|
||||||
|
|
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
|
@ -2026,7 +2026,7 @@ main {
|
||||||
.pico dialog article > header > * {
|
.pico dialog article > header > * {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
.pico dialog article > header a[rel=prev] {
|
.pico dialog article > header :is(a, button)[rel=prev] {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
margin-left: var(--pico-spacing);
|
margin-left: var(--pico-spacing);
|
||||||
float: right;
|
float: right;
|
||||||
|
@ -2042,21 +2042,23 @@ main {
|
||||||
.pico dialog article > footer [role=button]:not(:first-of-type) {
|
.pico dialog article > footer [role=button]:not(:first-of-type) {
|
||||||
margin-left: calc(var(--pico-spacing) * 0.5);
|
margin-left: calc(var(--pico-spacing) * 0.5);
|
||||||
}
|
}
|
||||||
.pico dialog article a[rel=prev] {
|
.pico dialog article :is(a, button)[rel=prev] {
|
||||||
display: block;
|
display: block;
|
||||||
width: 1rem;
|
width: 1rem;
|
||||||
height: 1rem;
|
height: 1rem;
|
||||||
margin-top: calc(var(--pico-spacing) * -1);
|
margin-top: calc(var(--pico-spacing) * -1);
|
||||||
margin-bottom: var(--pico-spacing);
|
margin-bottom: var(--pico-spacing);
|
||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
|
border: none;
|
||||||
background-image: var(--pico-icon-close);
|
background-image: var(--pico-icon-close);
|
||||||
background-position: center;
|
background-position: center;
|
||||||
background-size: auto 1rem;
|
background-size: auto 1rem;
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
|
background-color: transparent;
|
||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
transition: opacity var(--pico-transition);
|
transition: opacity var(--pico-transition);
|
||||||
}
|
}
|
||||||
.pico dialog article a[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
|
.pico dialog article :is(a, button)[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
}
|
}
|
||||||
.pico dialog:not([open]), .pico dialog[open=false] {
|
.pico dialog:not([open]), .pico dialog[open=false] {
|
||||||
|
|
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
|
@ -2026,7 +2026,7 @@ main {
|
||||||
.pico dialog article > header > * {
|
.pico dialog article > header > * {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
.pico dialog article > header a[rel=prev] {
|
.pico dialog article > header :is(a, button)[rel=prev] {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
margin-left: var(--pico-spacing);
|
margin-left: var(--pico-spacing);
|
||||||
float: right;
|
float: right;
|
||||||
|
@ -2042,21 +2042,23 @@ main {
|
||||||
.pico dialog article > footer [role=button]:not(:first-of-type) {
|
.pico dialog article > footer [role=button]:not(:first-of-type) {
|
||||||
margin-left: calc(var(--pico-spacing) * 0.5);
|
margin-left: calc(var(--pico-spacing) * 0.5);
|
||||||
}
|
}
|
||||||
.pico dialog article a[rel=prev] {
|
.pico dialog article :is(a, button)[rel=prev] {
|
||||||
display: block;
|
display: block;
|
||||||
width: 1rem;
|
width: 1rem;
|
||||||
height: 1rem;
|
height: 1rem;
|
||||||
margin-top: calc(var(--pico-spacing) * -1);
|
margin-top: calc(var(--pico-spacing) * -1);
|
||||||
margin-bottom: var(--pico-spacing);
|
margin-bottom: var(--pico-spacing);
|
||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
|
border: none;
|
||||||
background-image: var(--pico-icon-close);
|
background-image: var(--pico-icon-close);
|
||||||
background-position: center;
|
background-position: center;
|
||||||
background-size: auto 1rem;
|
background-size: auto 1rem;
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
|
background-color: transparent;
|
||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
transition: opacity var(--pico-transition);
|
transition: opacity var(--pico-transition);
|
||||||
}
|
}
|
||||||
.pico dialog article a[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
|
.pico dialog article :is(a, button)[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
}
|
}
|
||||||
.pico dialog:not([open]), .pico dialog[open=false] {
|
.pico dialog:not([open]), .pico dialog[open=false] {
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -2026,7 +2026,7 @@ main {
|
||||||
.pico dialog article > header > * {
|
.pico dialog article > header > * {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
.pico dialog article > header a[rel=prev] {
|
.pico dialog article > header :is(a, button)[rel=prev] {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
margin-left: var(--pico-spacing);
|
margin-left: var(--pico-spacing);
|
||||||
float: right;
|
float: right;
|
||||||
|
@ -2042,21 +2042,23 @@ main {
|
||||||
.pico dialog article > footer [role=button]:not(:first-of-type) {
|
.pico dialog article > footer [role=button]:not(:first-of-type) {
|
||||||
margin-left: calc(var(--pico-spacing) * 0.5);
|
margin-left: calc(var(--pico-spacing) * 0.5);
|
||||||
}
|
}
|
||||||
.pico dialog article a[rel=prev] {
|
.pico dialog article :is(a, button)[rel=prev] {
|
||||||
display: block;
|
display: block;
|
||||||
width: 1rem;
|
width: 1rem;
|
||||||
height: 1rem;
|
height: 1rem;
|
||||||
margin-top: calc(var(--pico-spacing) * -1);
|
margin-top: calc(var(--pico-spacing) * -1);
|
||||||
margin-bottom: var(--pico-spacing);
|
margin-bottom: var(--pico-spacing);
|
||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
|
border: none;
|
||||||
background-image: var(--pico-icon-close);
|
background-image: var(--pico-icon-close);
|
||||||
background-position: center;
|
background-position: center;
|
||||||
background-size: auto 1rem;
|
background-size: auto 1rem;
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
|
background-color: transparent;
|
||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
transition: opacity var(--pico-transition);
|
transition: opacity var(--pico-transition);
|
||||||
}
|
}
|
||||||
.pico dialog article a[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
|
.pico dialog article :is(a, button)[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
}
|
}
|
||||||
.pico dialog:not([open]), .pico dialog[open=false] {
|
.pico dialog:not([open]), .pico dialog[open=false] {
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -2026,7 +2026,7 @@ main {
|
||||||
.pico dialog article > header > * {
|
.pico dialog article > header > * {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
.pico dialog article > header a[rel=prev] {
|
.pico dialog article > header :is(a, button)[rel=prev] {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
margin-left: var(--pico-spacing);
|
margin-left: var(--pico-spacing);
|
||||||
float: right;
|
float: right;
|
||||||
|
@ -2042,21 +2042,23 @@ main {
|
||||||
.pico dialog article > footer [role=button]:not(:first-of-type) {
|
.pico dialog article > footer [role=button]:not(:first-of-type) {
|
||||||
margin-left: calc(var(--pico-spacing) * 0.5);
|
margin-left: calc(var(--pico-spacing) * 0.5);
|
||||||
}
|
}
|
||||||
.pico dialog article a[rel=prev] {
|
.pico dialog article :is(a, button)[rel=prev] {
|
||||||
display: block;
|
display: block;
|
||||||
width: 1rem;
|
width: 1rem;
|
||||||
height: 1rem;
|
height: 1rem;
|
||||||
margin-top: calc(var(--pico-spacing) * -1);
|
margin-top: calc(var(--pico-spacing) * -1);
|
||||||
margin-bottom: var(--pico-spacing);
|
margin-bottom: var(--pico-spacing);
|
||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
|
border: none;
|
||||||
background-image: var(--pico-icon-close);
|
background-image: var(--pico-icon-close);
|
||||||
background-position: center;
|
background-position: center;
|
||||||
background-size: auto 1rem;
|
background-size: auto 1rem;
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
|
background-color: transparent;
|
||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
transition: opacity var(--pico-transition);
|
transition: opacity var(--pico-transition);
|
||||||
}
|
}
|
||||||
.pico dialog article a[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
|
.pico dialog article :is(a, button)[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
}
|
}
|
||||||
.pico dialog:not([open]), .pico dialog[open=false] {
|
.pico dialog:not([open]), .pico dialog[open=false] {
|
||||||
|
|
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
|
@ -2026,7 +2026,7 @@ dialog article {
|
||||||
dialog article > header > * {
|
dialog article > header > * {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
dialog article > header a[rel=prev] {
|
dialog article > header :is(a, button)[rel=prev] {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
margin-left: var(--pico-spacing);
|
margin-left: var(--pico-spacing);
|
||||||
float: right;
|
float: right;
|
||||||
|
@ -2042,21 +2042,23 @@ dialog article > footer button:not(:first-of-type),
|
||||||
dialog article > footer [role=button]:not(:first-of-type) {
|
dialog article > footer [role=button]:not(:first-of-type) {
|
||||||
margin-left: calc(var(--pico-spacing) * 0.5);
|
margin-left: calc(var(--pico-spacing) * 0.5);
|
||||||
}
|
}
|
||||||
dialog article a[rel=prev] {
|
dialog article :is(a, button)[rel=prev] {
|
||||||
display: block;
|
display: block;
|
||||||
width: 1rem;
|
width: 1rem;
|
||||||
height: 1rem;
|
height: 1rem;
|
||||||
margin-top: calc(var(--pico-spacing) * -1);
|
margin-top: calc(var(--pico-spacing) * -1);
|
||||||
margin-bottom: var(--pico-spacing);
|
margin-bottom: var(--pico-spacing);
|
||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
|
border: none;
|
||||||
background-image: var(--pico-icon-close);
|
background-image: var(--pico-icon-close);
|
||||||
background-position: center;
|
background-position: center;
|
||||||
background-size: auto 1rem;
|
background-size: auto 1rem;
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
|
background-color: transparent;
|
||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
transition: opacity var(--pico-transition);
|
transition: opacity var(--pico-transition);
|
||||||
}
|
}
|
||||||
dialog article a[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
|
dialog article :is(a, button)[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
}
|
}
|
||||||
dialog:not([open]), dialog[open=false] {
|
dialog:not([open]), dialog[open=false] {
|
||||||
|
|
|
@ -2026,7 +2026,7 @@ dialog article {
|
||||||
dialog article > header > * {
|
dialog article > header > * {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
dialog article > header a[rel=prev] {
|
dialog article > header :is(a, button)[rel=prev] {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
margin-left: var(--pico-spacing);
|
margin-left: var(--pico-spacing);
|
||||||
float: right;
|
float: right;
|
||||||
|
@ -2042,21 +2042,23 @@ dialog article > footer button:not(:first-of-type),
|
||||||
dialog article > footer [role=button]:not(:first-of-type) {
|
dialog article > footer [role=button]:not(:first-of-type) {
|
||||||
margin-left: calc(var(--pico-spacing) * 0.5);
|
margin-left: calc(var(--pico-spacing) * 0.5);
|
||||||
}
|
}
|
||||||
dialog article a[rel=prev] {
|
dialog article :is(a, button)[rel=prev] {
|
||||||
display: block;
|
display: block;
|
||||||
width: 1rem;
|
width: 1rem;
|
||||||
height: 1rem;
|
height: 1rem;
|
||||||
margin-top: calc(var(--pico-spacing) * -1);
|
margin-top: calc(var(--pico-spacing) * -1);
|
||||||
margin-bottom: var(--pico-spacing);
|
margin-bottom: var(--pico-spacing);
|
||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
|
border: none;
|
||||||
background-image: var(--pico-icon-close);
|
background-image: var(--pico-icon-close);
|
||||||
background-position: center;
|
background-position: center;
|
||||||
background-size: auto 1rem;
|
background-size: auto 1rem;
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
|
background-color: transparent;
|
||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
transition: opacity var(--pico-transition);
|
transition: opacity var(--pico-transition);
|
||||||
}
|
}
|
||||||
dialog article a[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
|
dialog article :is(a, button)[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
}
|
}
|
||||||
dialog:not([open]), dialog[open=false] {
|
dialog:not([open]), dialog[open=false] {
|
||||||
|
|
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
|
@ -2026,7 +2026,7 @@ dialog article {
|
||||||
dialog article > header > * {
|
dialog article > header > * {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
dialog article > header a[rel=prev] {
|
dialog article > header :is(a, button)[rel=prev] {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
margin-left: var(--pico-spacing);
|
margin-left: var(--pico-spacing);
|
||||||
float: right;
|
float: right;
|
||||||
|
@ -2042,21 +2042,23 @@ dialog article > footer button:not(:first-of-type),
|
||||||
dialog article > footer [role=button]:not(:first-of-type) {
|
dialog article > footer [role=button]:not(:first-of-type) {
|
||||||
margin-left: calc(var(--pico-spacing) * 0.5);
|
margin-left: calc(var(--pico-spacing) * 0.5);
|
||||||
}
|
}
|
||||||
dialog article a[rel=prev] {
|
dialog article :is(a, button)[rel=prev] {
|
||||||
display: block;
|
display: block;
|
||||||
width: 1rem;
|
width: 1rem;
|
||||||
height: 1rem;
|
height: 1rem;
|
||||||
margin-top: calc(var(--pico-spacing) * -1);
|
margin-top: calc(var(--pico-spacing) * -1);
|
||||||
margin-bottom: var(--pico-spacing);
|
margin-bottom: var(--pico-spacing);
|
||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
|
border: none;
|
||||||
background-image: var(--pico-icon-close);
|
background-image: var(--pico-icon-close);
|
||||||
background-position: center;
|
background-position: center;
|
||||||
background-size: auto 1rem;
|
background-size: auto 1rem;
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
|
background-color: transparent;
|
||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
transition: opacity var(--pico-transition);
|
transition: opacity var(--pico-transition);
|
||||||
}
|
}
|
||||||
dialog article a[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
|
dialog article :is(a, button)[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
}
|
}
|
||||||
dialog:not([open]), dialog[open=false] {
|
dialog:not([open]), dialog[open=false] {
|
||||||
|
|
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
|
@ -2026,7 +2026,7 @@ dialog article {
|
||||||
dialog article > header > * {
|
dialog article > header > * {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
dialog article > header a[rel=prev] {
|
dialog article > header :is(a, button)[rel=prev] {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
margin-left: var(--pico-spacing);
|
margin-left: var(--pico-spacing);
|
||||||
float: right;
|
float: right;
|
||||||
|
@ -2042,21 +2042,23 @@ dialog article > footer button:not(:first-of-type),
|
||||||
dialog article > footer [role=button]:not(:first-of-type) {
|
dialog article > footer [role=button]:not(:first-of-type) {
|
||||||
margin-left: calc(var(--pico-spacing) * 0.5);
|
margin-left: calc(var(--pico-spacing) * 0.5);
|
||||||
}
|
}
|
||||||
dialog article a[rel=prev] {
|
dialog article :is(a, button)[rel=prev] {
|
||||||
display: block;
|
display: block;
|
||||||
width: 1rem;
|
width: 1rem;
|
||||||
height: 1rem;
|
height: 1rem;
|
||||||
margin-top: calc(var(--pico-spacing) * -1);
|
margin-top: calc(var(--pico-spacing) * -1);
|
||||||
margin-bottom: var(--pico-spacing);
|
margin-bottom: var(--pico-spacing);
|
||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
|
border: none;
|
||||||
background-image: var(--pico-icon-close);
|
background-image: var(--pico-icon-close);
|
||||||
background-position: center;
|
background-position: center;
|
||||||
background-size: auto 1rem;
|
background-size: auto 1rem;
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
|
background-color: transparent;
|
||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
transition: opacity var(--pico-transition);
|
transition: opacity var(--pico-transition);
|
||||||
}
|
}
|
||||||
dialog article a[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
|
dialog article :is(a, button)[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
}
|
}
|
||||||
dialog:not([open]), dialog[open=false] {
|
dialog:not([open]), dialog[open=false] {
|
||||||
|
|
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
|
@ -2026,7 +2026,7 @@ dialog article {
|
||||||
dialog article > header > * {
|
dialog article > header > * {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
dialog article > header a[rel=prev] {
|
dialog article > header :is(a, button)[rel=prev] {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
margin-left: var(--pico-spacing);
|
margin-left: var(--pico-spacing);
|
||||||
float: right;
|
float: right;
|
||||||
|
@ -2042,21 +2042,23 @@ dialog article > footer button:not(:first-of-type),
|
||||||
dialog article > footer [role=button]:not(:first-of-type) {
|
dialog article > footer [role=button]:not(:first-of-type) {
|
||||||
margin-left: calc(var(--pico-spacing) * 0.5);
|
margin-left: calc(var(--pico-spacing) * 0.5);
|
||||||
}
|
}
|
||||||
dialog article a[rel=prev] {
|
dialog article :is(a, button)[rel=prev] {
|
||||||
display: block;
|
display: block;
|
||||||
width: 1rem;
|
width: 1rem;
|
||||||
height: 1rem;
|
height: 1rem;
|
||||||
margin-top: calc(var(--pico-spacing) * -1);
|
margin-top: calc(var(--pico-spacing) * -1);
|
||||||
margin-bottom: var(--pico-spacing);
|
margin-bottom: var(--pico-spacing);
|
||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
|
border: none;
|
||||||
background-image: var(--pico-icon-close);
|
background-image: var(--pico-icon-close);
|
||||||
background-position: center;
|
background-position: center;
|
||||||
background-size: auto 1rem;
|
background-size: auto 1rem;
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
|
background-color: transparent;
|
||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
transition: opacity var(--pico-transition);
|
transition: opacity var(--pico-transition);
|
||||||
}
|
}
|
||||||
dialog article a[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
|
dialog article :is(a, button)[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
}
|
}
|
||||||
dialog:not([open]), dialog[open=false] {
|
dialog:not([open]), dialog[open=false] {
|
||||||
|
|
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
|
@ -2026,7 +2026,7 @@ dialog article {
|
||||||
dialog article > header > * {
|
dialog article > header > * {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
dialog article > header a[rel=prev] {
|
dialog article > header :is(a, button)[rel=prev] {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
margin-left: var(--pico-spacing);
|
margin-left: var(--pico-spacing);
|
||||||
float: right;
|
float: right;
|
||||||
|
@ -2042,21 +2042,23 @@ dialog article > footer button:not(:first-of-type),
|
||||||
dialog article > footer [role=button]:not(:first-of-type) {
|
dialog article > footer [role=button]:not(:first-of-type) {
|
||||||
margin-left: calc(var(--pico-spacing) * 0.5);
|
margin-left: calc(var(--pico-spacing) * 0.5);
|
||||||
}
|
}
|
||||||
dialog article a[rel=prev] {
|
dialog article :is(a, button)[rel=prev] {
|
||||||
display: block;
|
display: block;
|
||||||
width: 1rem;
|
width: 1rem;
|
||||||
height: 1rem;
|
height: 1rem;
|
||||||
margin-top: calc(var(--pico-spacing) * -1);
|
margin-top: calc(var(--pico-spacing) * -1);
|
||||||
margin-bottom: var(--pico-spacing);
|
margin-bottom: var(--pico-spacing);
|
||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
|
border: none;
|
||||||
background-image: var(--pico-icon-close);
|
background-image: var(--pico-icon-close);
|
||||||
background-position: center;
|
background-position: center;
|
||||||
background-size: auto 1rem;
|
background-size: auto 1rem;
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
|
background-color: transparent;
|
||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
transition: opacity var(--pico-transition);
|
transition: opacity var(--pico-transition);
|
||||||
}
|
}
|
||||||
dialog article a[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
|
dialog article :is(a, button)[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
}
|
}
|
||||||
dialog:not([open]), dialog[open=false] {
|
dialog:not([open]), dialog[open=false] {
|
||||||
|
|
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
|
@ -2026,7 +2026,7 @@ dialog article {
|
||||||
dialog article > header > * {
|
dialog article > header > * {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
dialog article > header a[rel=prev] {
|
dialog article > header :is(a, button)[rel=prev] {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
margin-left: var(--pico-spacing);
|
margin-left: var(--pico-spacing);
|
||||||
float: right;
|
float: right;
|
||||||
|
@ -2042,21 +2042,23 @@ dialog article > footer button:not(:first-of-type),
|
||||||
dialog article > footer [role=button]:not(:first-of-type) {
|
dialog article > footer [role=button]:not(:first-of-type) {
|
||||||
margin-left: calc(var(--pico-spacing) * 0.5);
|
margin-left: calc(var(--pico-spacing) * 0.5);
|
||||||
}
|
}
|
||||||
dialog article a[rel=prev] {
|
dialog article :is(a, button)[rel=prev] {
|
||||||
display: block;
|
display: block;
|
||||||
width: 1rem;
|
width: 1rem;
|
||||||
height: 1rem;
|
height: 1rem;
|
||||||
margin-top: calc(var(--pico-spacing) * -1);
|
margin-top: calc(var(--pico-spacing) * -1);
|
||||||
margin-bottom: var(--pico-spacing);
|
margin-bottom: var(--pico-spacing);
|
||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
|
border: none;
|
||||||
background-image: var(--pico-icon-close);
|
background-image: var(--pico-icon-close);
|
||||||
background-position: center;
|
background-position: center;
|
||||||
background-size: auto 1rem;
|
background-size: auto 1rem;
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
|
background-color: transparent;
|
||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
transition: opacity var(--pico-transition);
|
transition: opacity var(--pico-transition);
|
||||||
}
|
}
|
||||||
dialog article a[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
|
dialog article :is(a, button)[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
}
|
}
|
||||||
dialog:not([open]), dialog[open=false] {
|
dialog:not([open]), dialog[open=false] {
|
||||||
|
|
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
|
@ -2026,7 +2026,7 @@ dialog article {
|
||||||
dialog article > header > * {
|
dialog article > header > * {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
dialog article > header a[rel=prev] {
|
dialog article > header :is(a, button)[rel=prev] {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
margin-left: var(--pico-spacing);
|
margin-left: var(--pico-spacing);
|
||||||
float: right;
|
float: right;
|
||||||
|
@ -2042,21 +2042,23 @@ dialog article > footer button:not(:first-of-type),
|
||||||
dialog article > footer [role=button]:not(:first-of-type) {
|
dialog article > footer [role=button]:not(:first-of-type) {
|
||||||
margin-left: calc(var(--pico-spacing) * 0.5);
|
margin-left: calc(var(--pico-spacing) * 0.5);
|
||||||
}
|
}
|
||||||
dialog article a[rel=prev] {
|
dialog article :is(a, button)[rel=prev] {
|
||||||
display: block;
|
display: block;
|
||||||
width: 1rem;
|
width: 1rem;
|
||||||
height: 1rem;
|
height: 1rem;
|
||||||
margin-top: calc(var(--pico-spacing) * -1);
|
margin-top: calc(var(--pico-spacing) * -1);
|
||||||
margin-bottom: var(--pico-spacing);
|
margin-bottom: var(--pico-spacing);
|
||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
|
border: none;
|
||||||
background-image: var(--pico-icon-close);
|
background-image: var(--pico-icon-close);
|
||||||
background-position: center;
|
background-position: center;
|
||||||
background-size: auto 1rem;
|
background-size: auto 1rem;
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
|
background-color: transparent;
|
||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
transition: opacity var(--pico-transition);
|
transition: opacity var(--pico-transition);
|
||||||
}
|
}
|
||||||
dialog article a[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
|
dialog article :is(a, button)[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
}
|
}
|
||||||
dialog:not([open]), dialog[open=false] {
|
dialog:not([open]), dialog[open=false] {
|
||||||
|
|
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
|
@ -2026,7 +2026,7 @@ dialog article {
|
||||||
dialog article > header > * {
|
dialog article > header > * {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
dialog article > header a[rel=prev] {
|
dialog article > header :is(a, button)[rel=prev] {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
margin-left: var(--pico-spacing);
|
margin-left: var(--pico-spacing);
|
||||||
float: right;
|
float: right;
|
||||||
|
@ -2042,21 +2042,23 @@ dialog article > footer button:not(:first-of-type),
|
||||||
dialog article > footer [role=button]:not(:first-of-type) {
|
dialog article > footer [role=button]:not(:first-of-type) {
|
||||||
margin-left: calc(var(--pico-spacing) * 0.5);
|
margin-left: calc(var(--pico-spacing) * 0.5);
|
||||||
}
|
}
|
||||||
dialog article a[rel=prev] {
|
dialog article :is(a, button)[rel=prev] {
|
||||||
display: block;
|
display: block;
|
||||||
width: 1rem;
|
width: 1rem;
|
||||||
height: 1rem;
|
height: 1rem;
|
||||||
margin-top: calc(var(--pico-spacing) * -1);
|
margin-top: calc(var(--pico-spacing) * -1);
|
||||||
margin-bottom: var(--pico-spacing);
|
margin-bottom: var(--pico-spacing);
|
||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
|
border: none;
|
||||||
background-image: var(--pico-icon-close);
|
background-image: var(--pico-icon-close);
|
||||||
background-position: center;
|
background-position: center;
|
||||||
background-size: auto 1rem;
|
background-size: auto 1rem;
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
|
background-color: transparent;
|
||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
transition: opacity var(--pico-transition);
|
transition: opacity var(--pico-transition);
|
||||||
}
|
}
|
||||||
dialog article a[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
|
dialog article :is(a, button)[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
}
|
}
|
||||||
dialog:not([open]), dialog[open=false] {
|
dialog:not([open]), dialog[open=false] {
|
||||||
|
|
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
|
@ -2026,7 +2026,7 @@ dialog article {
|
||||||
dialog article > header > * {
|
dialog article > header > * {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
dialog article > header a[rel=prev] {
|
dialog article > header :is(a, button)[rel=prev] {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
margin-left: var(--pico-spacing);
|
margin-left: var(--pico-spacing);
|
||||||
float: right;
|
float: right;
|
||||||
|
@ -2042,21 +2042,23 @@ dialog article > footer button:not(:first-of-type),
|
||||||
dialog article > footer [role=button]:not(:first-of-type) {
|
dialog article > footer [role=button]:not(:first-of-type) {
|
||||||
margin-left: calc(var(--pico-spacing) * 0.5);
|
margin-left: calc(var(--pico-spacing) * 0.5);
|
||||||
}
|
}
|
||||||
dialog article a[rel=prev] {
|
dialog article :is(a, button)[rel=prev] {
|
||||||
display: block;
|
display: block;
|
||||||
width: 1rem;
|
width: 1rem;
|
||||||
height: 1rem;
|
height: 1rem;
|
||||||
margin-top: calc(var(--pico-spacing) * -1);
|
margin-top: calc(var(--pico-spacing) * -1);
|
||||||
margin-bottom: var(--pico-spacing);
|
margin-bottom: var(--pico-spacing);
|
||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
|
border: none;
|
||||||
background-image: var(--pico-icon-close);
|
background-image: var(--pico-icon-close);
|
||||||
background-position: center;
|
background-position: center;
|
||||||
background-size: auto 1rem;
|
background-size: auto 1rem;
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
|
background-color: transparent;
|
||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
transition: opacity var(--pico-transition);
|
transition: opacity var(--pico-transition);
|
||||||
}
|
}
|
||||||
dialog article a[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
|
dialog article :is(a, button)[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
}
|
}
|
||||||
dialog:not([open]), dialog[open=false] {
|
dialog:not([open]), dialog[open=false] {
|
||||||
|
|
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
|
@ -2026,7 +2026,7 @@ dialog article {
|
||||||
dialog article > header > * {
|
dialog article > header > * {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
dialog article > header a[rel=prev] {
|
dialog article > header :is(a, button)[rel=prev] {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
margin-left: var(--pico-spacing);
|
margin-left: var(--pico-spacing);
|
||||||
float: right;
|
float: right;
|
||||||
|
@ -2042,21 +2042,23 @@ dialog article > footer button:not(:first-of-type),
|
||||||
dialog article > footer [role=button]:not(:first-of-type) {
|
dialog article > footer [role=button]:not(:first-of-type) {
|
||||||
margin-left: calc(var(--pico-spacing) * 0.5);
|
margin-left: calc(var(--pico-spacing) * 0.5);
|
||||||
}
|
}
|
||||||
dialog article a[rel=prev] {
|
dialog article :is(a, button)[rel=prev] {
|
||||||
display: block;
|
display: block;
|
||||||
width: 1rem;
|
width: 1rem;
|
||||||
height: 1rem;
|
height: 1rem;
|
||||||
margin-top: calc(var(--pico-spacing) * -1);
|
margin-top: calc(var(--pico-spacing) * -1);
|
||||||
margin-bottom: var(--pico-spacing);
|
margin-bottom: var(--pico-spacing);
|
||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
|
border: none;
|
||||||
background-image: var(--pico-icon-close);
|
background-image: var(--pico-icon-close);
|
||||||
background-position: center;
|
background-position: center;
|
||||||
background-size: auto 1rem;
|
background-size: auto 1rem;
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
|
background-color: transparent;
|
||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
transition: opacity var(--pico-transition);
|
transition: opacity var(--pico-transition);
|
||||||
}
|
}
|
||||||
dialog article a[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
|
dialog article :is(a, button)[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
}
|
}
|
||||||
dialog:not([open]), dialog[open=false] {
|
dialog:not([open]), dialog[open=false] {
|
||||||
|
|
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
|
@ -2026,7 +2026,7 @@ dialog article {
|
||||||
dialog article > header > * {
|
dialog article > header > * {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
dialog article > header a[rel=prev] {
|
dialog article > header :is(a, button)[rel=prev] {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
margin-left: var(--pico-spacing);
|
margin-left: var(--pico-spacing);
|
||||||
float: right;
|
float: right;
|
||||||
|
@ -2042,21 +2042,23 @@ dialog article > footer button:not(:first-of-type),
|
||||||
dialog article > footer [role=button]:not(:first-of-type) {
|
dialog article > footer [role=button]:not(:first-of-type) {
|
||||||
margin-left: calc(var(--pico-spacing) * 0.5);
|
margin-left: calc(var(--pico-spacing) * 0.5);
|
||||||
}
|
}
|
||||||
dialog article a[rel=prev] {
|
dialog article :is(a, button)[rel=prev] {
|
||||||
display: block;
|
display: block;
|
||||||
width: 1rem;
|
width: 1rem;
|
||||||
height: 1rem;
|
height: 1rem;
|
||||||
margin-top: calc(var(--pico-spacing) * -1);
|
margin-top: calc(var(--pico-spacing) * -1);
|
||||||
margin-bottom: var(--pico-spacing);
|
margin-bottom: var(--pico-spacing);
|
||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
|
border: none;
|
||||||
background-image: var(--pico-icon-close);
|
background-image: var(--pico-icon-close);
|
||||||
background-position: center;
|
background-position: center;
|
||||||
background-size: auto 1rem;
|
background-size: auto 1rem;
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
|
background-color: transparent;
|
||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
transition: opacity var(--pico-transition);
|
transition: opacity var(--pico-transition);
|
||||||
}
|
}
|
||||||
dialog article a[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
|
dialog article :is(a, button)[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
}
|
}
|
||||||
dialog:not([open]), dialog[open=false] {
|
dialog:not([open]), dialog[open=false] {
|
||||||
|
|
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
|
@ -2026,7 +2026,7 @@ dialog article {
|
||||||
dialog article > header > * {
|
dialog article > header > * {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
dialog article > header a[rel=prev] {
|
dialog article > header :is(a, button)[rel=prev] {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
margin-left: var(--pico-spacing);
|
margin-left: var(--pico-spacing);
|
||||||
float: right;
|
float: right;
|
||||||
|
@ -2042,21 +2042,23 @@ dialog article > footer button:not(:first-of-type),
|
||||||
dialog article > footer [role=button]:not(:first-of-type) {
|
dialog article > footer [role=button]:not(:first-of-type) {
|
||||||
margin-left: calc(var(--pico-spacing) * 0.5);
|
margin-left: calc(var(--pico-spacing) * 0.5);
|
||||||
}
|
}
|
||||||
dialog article a[rel=prev] {
|
dialog article :is(a, button)[rel=prev] {
|
||||||
display: block;
|
display: block;
|
||||||
width: 1rem;
|
width: 1rem;
|
||||||
height: 1rem;
|
height: 1rem;
|
||||||
margin-top: calc(var(--pico-spacing) * -1);
|
margin-top: calc(var(--pico-spacing) * -1);
|
||||||
margin-bottom: var(--pico-spacing);
|
margin-bottom: var(--pico-spacing);
|
||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
|
border: none;
|
||||||
background-image: var(--pico-icon-close);
|
background-image: var(--pico-icon-close);
|
||||||
background-position: center;
|
background-position: center;
|
||||||
background-size: auto 1rem;
|
background-size: auto 1rem;
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
|
background-color: transparent;
|
||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
transition: opacity var(--pico-transition);
|
transition: opacity var(--pico-transition);
|
||||||
}
|
}
|
||||||
dialog article a[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
|
dialog article :is(a, button)[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
}
|
}
|
||||||
dialog:not([open]), dialog[open=false] {
|
dialog:not([open]), dialog[open=false] {
|
||||||
|
|
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
|
@ -2026,7 +2026,7 @@ dialog article {
|
||||||
dialog article > header > * {
|
dialog article > header > * {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
dialog article > header a[rel=prev] {
|
dialog article > header :is(a, button)[rel=prev] {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
margin-left: var(--pico-spacing);
|
margin-left: var(--pico-spacing);
|
||||||
float: right;
|
float: right;
|
||||||
|
@ -2042,21 +2042,23 @@ dialog article > footer button:not(:first-of-type),
|
||||||
dialog article > footer [role=button]:not(:first-of-type) {
|
dialog article > footer [role=button]:not(:first-of-type) {
|
||||||
margin-left: calc(var(--pico-spacing) * 0.5);
|
margin-left: calc(var(--pico-spacing) * 0.5);
|
||||||
}
|
}
|
||||||
dialog article a[rel=prev] {
|
dialog article :is(a, button)[rel=prev] {
|
||||||
display: block;
|
display: block;
|
||||||
width: 1rem;
|
width: 1rem;
|
||||||
height: 1rem;
|
height: 1rem;
|
||||||
margin-top: calc(var(--pico-spacing) * -1);
|
margin-top: calc(var(--pico-spacing) * -1);
|
||||||
margin-bottom: var(--pico-spacing);
|
margin-bottom: var(--pico-spacing);
|
||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
|
border: none;
|
||||||
background-image: var(--pico-icon-close);
|
background-image: var(--pico-icon-close);
|
||||||
background-position: center;
|
background-position: center;
|
||||||
background-size: auto 1rem;
|
background-size: auto 1rem;
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
|
background-color: transparent;
|
||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
transition: opacity var(--pico-transition);
|
transition: opacity var(--pico-transition);
|
||||||
}
|
}
|
||||||
dialog article a[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
|
dialog article :is(a, button)[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
}
|
}
|
||||||
dialog:not([open]), dialog[open=false] {
|
dialog:not([open]), dialog[open=false] {
|
||||||
|
|
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
|
@ -2026,7 +2026,7 @@ dialog article {
|
||||||
dialog article > header > * {
|
dialog article > header > * {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
dialog article > header a[rel=prev] {
|
dialog article > header :is(a, button)[rel=prev] {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
margin-left: var(--pico-spacing);
|
margin-left: var(--pico-spacing);
|
||||||
float: right;
|
float: right;
|
||||||
|
@ -2042,21 +2042,23 @@ dialog article > footer button:not(:first-of-type),
|
||||||
dialog article > footer [role=button]:not(:first-of-type) {
|
dialog article > footer [role=button]:not(:first-of-type) {
|
||||||
margin-left: calc(var(--pico-spacing) * 0.5);
|
margin-left: calc(var(--pico-spacing) * 0.5);
|
||||||
}
|
}
|
||||||
dialog article a[rel=prev] {
|
dialog article :is(a, button)[rel=prev] {
|
||||||
display: block;
|
display: block;
|
||||||
width: 1rem;
|
width: 1rem;
|
||||||
height: 1rem;
|
height: 1rem;
|
||||||
margin-top: calc(var(--pico-spacing) * -1);
|
margin-top: calc(var(--pico-spacing) * -1);
|
||||||
margin-bottom: var(--pico-spacing);
|
margin-bottom: var(--pico-spacing);
|
||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
|
border: none;
|
||||||
background-image: var(--pico-icon-close);
|
background-image: var(--pico-icon-close);
|
||||||
background-position: center;
|
background-position: center;
|
||||||
background-size: auto 1rem;
|
background-size: auto 1rem;
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
|
background-color: transparent;
|
||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
transition: opacity var(--pico-transition);
|
transition: opacity var(--pico-transition);
|
||||||
}
|
}
|
||||||
dialog article a[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
|
dialog article :is(a, button)[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
}
|
}
|
||||||
dialog:not([open]), dialog[open=false] {
|
dialog:not([open]), dialog[open=false] {
|
||||||
|
|
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
|
@ -2026,7 +2026,7 @@ dialog article {
|
||||||
dialog article > header > * {
|
dialog article > header > * {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
dialog article > header a[rel=prev] {
|
dialog article > header :is(a, button)[rel=prev] {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
margin-left: var(--pico-spacing);
|
margin-left: var(--pico-spacing);
|
||||||
float: right;
|
float: right;
|
||||||
|
@ -2042,21 +2042,23 @@ dialog article > footer button:not(:first-of-type),
|
||||||
dialog article > footer [role=button]:not(:first-of-type) {
|
dialog article > footer [role=button]:not(:first-of-type) {
|
||||||
margin-left: calc(var(--pico-spacing) * 0.5);
|
margin-left: calc(var(--pico-spacing) * 0.5);
|
||||||
}
|
}
|
||||||
dialog article a[rel=prev] {
|
dialog article :is(a, button)[rel=prev] {
|
||||||
display: block;
|
display: block;
|
||||||
width: 1rem;
|
width: 1rem;
|
||||||
height: 1rem;
|
height: 1rem;
|
||||||
margin-top: calc(var(--pico-spacing) * -1);
|
margin-top: calc(var(--pico-spacing) * -1);
|
||||||
margin-bottom: var(--pico-spacing);
|
margin-bottom: var(--pico-spacing);
|
||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
|
border: none;
|
||||||
background-image: var(--pico-icon-close);
|
background-image: var(--pico-icon-close);
|
||||||
background-position: center;
|
background-position: center;
|
||||||
background-size: auto 1rem;
|
background-size: auto 1rem;
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
|
background-color: transparent;
|
||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
transition: opacity var(--pico-transition);
|
transition: opacity var(--pico-transition);
|
||||||
}
|
}
|
||||||
dialog article a[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
|
dialog article :is(a, button)[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
}
|
}
|
||||||
dialog:not([open]), dialog[open=false] {
|
dialog:not([open]), dialog[open=false] {
|
||||||
|
|
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
|
@ -2026,7 +2026,7 @@ dialog article {
|
||||||
dialog article > header > * {
|
dialog article > header > * {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
dialog article > header a[rel=prev] {
|
dialog article > header :is(a, button)[rel=prev] {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
margin-left: var(--pico-spacing);
|
margin-left: var(--pico-spacing);
|
||||||
float: right;
|
float: right;
|
||||||
|
@ -2042,21 +2042,23 @@ dialog article > footer button:not(:first-of-type),
|
||||||
dialog article > footer [role=button]:not(:first-of-type) {
|
dialog article > footer [role=button]:not(:first-of-type) {
|
||||||
margin-left: calc(var(--pico-spacing) * 0.5);
|
margin-left: calc(var(--pico-spacing) * 0.5);
|
||||||
}
|
}
|
||||||
dialog article a[rel=prev] {
|
dialog article :is(a, button)[rel=prev] {
|
||||||
display: block;
|
display: block;
|
||||||
width: 1rem;
|
width: 1rem;
|
||||||
height: 1rem;
|
height: 1rem;
|
||||||
margin-top: calc(var(--pico-spacing) * -1);
|
margin-top: calc(var(--pico-spacing) * -1);
|
||||||
margin-bottom: var(--pico-spacing);
|
margin-bottom: var(--pico-spacing);
|
||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
|
border: none;
|
||||||
background-image: var(--pico-icon-close);
|
background-image: var(--pico-icon-close);
|
||||||
background-position: center;
|
background-position: center;
|
||||||
background-size: auto 1rem;
|
background-size: auto 1rem;
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
|
background-color: transparent;
|
||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
transition: opacity var(--pico-transition);
|
transition: opacity var(--pico-transition);
|
||||||
}
|
}
|
||||||
dialog article a[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
|
dialog article :is(a, button)[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
}
|
}
|
||||||
dialog:not([open]), dialog[open=false] {
|
dialog:not([open]), dialog[open=false] {
|
||||||
|
|
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
|
@ -2026,7 +2026,7 @@ dialog article {
|
||||||
dialog article > header > * {
|
dialog article > header > * {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
dialog article > header a[rel=prev] {
|
dialog article > header :is(a, button)[rel=prev] {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
margin-left: var(--pico-spacing);
|
margin-left: var(--pico-spacing);
|
||||||
float: right;
|
float: right;
|
||||||
|
@ -2042,21 +2042,23 @@ dialog article > footer button:not(:first-of-type),
|
||||||
dialog article > footer [role=button]:not(:first-of-type) {
|
dialog article > footer [role=button]:not(:first-of-type) {
|
||||||
margin-left: calc(var(--pico-spacing) * 0.5);
|
margin-left: calc(var(--pico-spacing) * 0.5);
|
||||||
}
|
}
|
||||||
dialog article a[rel=prev] {
|
dialog article :is(a, button)[rel=prev] {
|
||||||
display: block;
|
display: block;
|
||||||
width: 1rem;
|
width: 1rem;
|
||||||
height: 1rem;
|
height: 1rem;
|
||||||
margin-top: calc(var(--pico-spacing) * -1);
|
margin-top: calc(var(--pico-spacing) * -1);
|
||||||
margin-bottom: var(--pico-spacing);
|
margin-bottom: var(--pico-spacing);
|
||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
|
border: none;
|
||||||
background-image: var(--pico-icon-close);
|
background-image: var(--pico-icon-close);
|
||||||
background-position: center;
|
background-position: center;
|
||||||
background-size: auto 1rem;
|
background-size: auto 1rem;
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
|
background-color: transparent;
|
||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
transition: opacity var(--pico-transition);
|
transition: opacity var(--pico-transition);
|
||||||
}
|
}
|
||||||
dialog article a[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
|
dialog article :is(a, button)[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
}
|
}
|
||||||
dialog:not([open]), dialog[open=false] {
|
dialog:not([open]), dialog[open=false] {
|
||||||
|
|
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
|
@ -2352,7 +2352,7 @@ main {
|
||||||
.pico dialog article > header > * {
|
.pico dialog article > header > * {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
.pico dialog article > header .close, .pico dialog article > header a[rel=prev] {
|
.pico dialog article > header .close, .pico dialog article > header :is(a, button)[rel=prev] {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
margin-left: var(--pico-spacing);
|
margin-left: var(--pico-spacing);
|
||||||
float: right;
|
float: right;
|
||||||
|
@ -2368,21 +2368,23 @@ main {
|
||||||
.pico dialog article > footer [role=button]:not(:first-of-type) {
|
.pico dialog article > footer [role=button]:not(:first-of-type) {
|
||||||
margin-left: calc(var(--pico-spacing) * 0.5);
|
margin-left: calc(var(--pico-spacing) * 0.5);
|
||||||
}
|
}
|
||||||
.pico dialog article .close, .pico dialog article a[rel=prev] {
|
.pico dialog article .close, .pico dialog article :is(a, button)[rel=prev] {
|
||||||
display: block;
|
display: block;
|
||||||
width: 1rem;
|
width: 1rem;
|
||||||
height: 1rem;
|
height: 1rem;
|
||||||
margin-top: calc(var(--pico-spacing) * -1);
|
margin-top: calc(var(--pico-spacing) * -1);
|
||||||
margin-bottom: var(--pico-spacing);
|
margin-bottom: var(--pico-spacing);
|
||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
|
border: none;
|
||||||
background-image: var(--pico-icon-close);
|
background-image: var(--pico-icon-close);
|
||||||
background-position: center;
|
background-position: center;
|
||||||
background-size: auto 1rem;
|
background-size: auto 1rem;
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
|
background-color: transparent;
|
||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
transition: opacity var(--pico-transition);
|
transition: opacity var(--pico-transition);
|
||||||
}
|
}
|
||||||
.pico dialog article .close:is([aria-current]:not([aria-current=false]), :hover, :active, :focus), .pico dialog article a[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
|
.pico dialog article .close:is([aria-current]:not([aria-current=false]), :hover, :active, :focus), .pico dialog article :is(a, button)[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
}
|
}
|
||||||
.pico dialog:not([open]), .pico dialog[open=false] {
|
.pico dialog:not([open]), .pico dialog[open=false] {
|
||||||
|
|
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
|
@ -2352,7 +2352,7 @@ main {
|
||||||
.pico dialog article > header > * {
|
.pico dialog article > header > * {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
.pico dialog article > header .close, .pico dialog article > header a[rel=prev] {
|
.pico dialog article > header .close, .pico dialog article > header :is(a, button)[rel=prev] {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
margin-left: var(--pico-spacing);
|
margin-left: var(--pico-spacing);
|
||||||
float: right;
|
float: right;
|
||||||
|
@ -2368,21 +2368,23 @@ main {
|
||||||
.pico dialog article > footer [role=button]:not(:first-of-type) {
|
.pico dialog article > footer [role=button]:not(:first-of-type) {
|
||||||
margin-left: calc(var(--pico-spacing) * 0.5);
|
margin-left: calc(var(--pico-spacing) * 0.5);
|
||||||
}
|
}
|
||||||
.pico dialog article .close, .pico dialog article a[rel=prev] {
|
.pico dialog article .close, .pico dialog article :is(a, button)[rel=prev] {
|
||||||
display: block;
|
display: block;
|
||||||
width: 1rem;
|
width: 1rem;
|
||||||
height: 1rem;
|
height: 1rem;
|
||||||
margin-top: calc(var(--pico-spacing) * -1);
|
margin-top: calc(var(--pico-spacing) * -1);
|
||||||
margin-bottom: var(--pico-spacing);
|
margin-bottom: var(--pico-spacing);
|
||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
|
border: none;
|
||||||
background-image: var(--pico-icon-close);
|
background-image: var(--pico-icon-close);
|
||||||
background-position: center;
|
background-position: center;
|
||||||
background-size: auto 1rem;
|
background-size: auto 1rem;
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
|
background-color: transparent;
|
||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
transition: opacity var(--pico-transition);
|
transition: opacity var(--pico-transition);
|
||||||
}
|
}
|
||||||
.pico dialog article .close:is([aria-current]:not([aria-current=false]), :hover, :active, :focus), .pico dialog article a[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
|
.pico dialog article .close:is([aria-current]:not([aria-current=false]), :hover, :active, :focus), .pico dialog article :is(a, button)[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
}
|
}
|
||||||
.pico dialog:not([open]), .pico dialog[open=false] {
|
.pico dialog:not([open]), .pico dialog[open=false] {
|
||||||
|
|
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
|
@ -2352,7 +2352,7 @@ main {
|
||||||
.pico dialog article > header > * {
|
.pico dialog article > header > * {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
.pico dialog article > header .close, .pico dialog article > header a[rel=prev] {
|
.pico dialog article > header .close, .pico dialog article > header :is(a, button)[rel=prev] {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
margin-left: var(--pico-spacing);
|
margin-left: var(--pico-spacing);
|
||||||
float: right;
|
float: right;
|
||||||
|
@ -2368,21 +2368,23 @@ main {
|
||||||
.pico dialog article > footer [role=button]:not(:first-of-type) {
|
.pico dialog article > footer [role=button]:not(:first-of-type) {
|
||||||
margin-left: calc(var(--pico-spacing) * 0.5);
|
margin-left: calc(var(--pico-spacing) * 0.5);
|
||||||
}
|
}
|
||||||
.pico dialog article .close, .pico dialog article a[rel=prev] {
|
.pico dialog article .close, .pico dialog article :is(a, button)[rel=prev] {
|
||||||
display: block;
|
display: block;
|
||||||
width: 1rem;
|
width: 1rem;
|
||||||
height: 1rem;
|
height: 1rem;
|
||||||
margin-top: calc(var(--pico-spacing) * -1);
|
margin-top: calc(var(--pico-spacing) * -1);
|
||||||
margin-bottom: var(--pico-spacing);
|
margin-bottom: var(--pico-spacing);
|
||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
|
border: none;
|
||||||
background-image: var(--pico-icon-close);
|
background-image: var(--pico-icon-close);
|
||||||
background-position: center;
|
background-position: center;
|
||||||
background-size: auto 1rem;
|
background-size: auto 1rem;
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
|
background-color: transparent;
|
||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
transition: opacity var(--pico-transition);
|
transition: opacity var(--pico-transition);
|
||||||
}
|
}
|
||||||
.pico dialog article .close:is([aria-current]:not([aria-current=false]), :hover, :active, :focus), .pico dialog article a[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
|
.pico dialog article .close:is([aria-current]:not([aria-current=false]), :hover, :active, :focus), .pico dialog article :is(a, button)[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
}
|
}
|
||||||
.pico dialog:not([open]), .pico dialog[open=false] {
|
.pico dialog:not([open]), .pico dialog[open=false] {
|
||||||
|
|
|
@ -2352,7 +2352,7 @@ main {
|
||||||
.pico dialog article > header > * {
|
.pico dialog article > header > * {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
.pico dialog article > header .close, .pico dialog article > header a[rel=prev] {
|
.pico dialog article > header .close, .pico dialog article > header :is(a, button)[rel=prev] {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
margin-left: var(--pico-spacing);
|
margin-left: var(--pico-spacing);
|
||||||
float: right;
|
float: right;
|
||||||
|
@ -2368,21 +2368,23 @@ main {
|
||||||
.pico dialog article > footer [role=button]:not(:first-of-type) {
|
.pico dialog article > footer [role=button]:not(:first-of-type) {
|
||||||
margin-left: calc(var(--pico-spacing) * 0.5);
|
margin-left: calc(var(--pico-spacing) * 0.5);
|
||||||
}
|
}
|
||||||
.pico dialog article .close, .pico dialog article a[rel=prev] {
|
.pico dialog article .close, .pico dialog article :is(a, button)[rel=prev] {
|
||||||
display: block;
|
display: block;
|
||||||
width: 1rem;
|
width: 1rem;
|
||||||
height: 1rem;
|
height: 1rem;
|
||||||
margin-top: calc(var(--pico-spacing) * -1);
|
margin-top: calc(var(--pico-spacing) * -1);
|
||||||
margin-bottom: var(--pico-spacing);
|
margin-bottom: var(--pico-spacing);
|
||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
|
border: none;
|
||||||
background-image: var(--pico-icon-close);
|
background-image: var(--pico-icon-close);
|
||||||
background-position: center;
|
background-position: center;
|
||||||
background-size: auto 1rem;
|
background-size: auto 1rem;
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
|
background-color: transparent;
|
||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
transition: opacity var(--pico-transition);
|
transition: opacity var(--pico-transition);
|
||||||
}
|
}
|
||||||
.pico dialog article .close:is([aria-current]:not([aria-current=false]), :hover, :active, :focus), .pico dialog article a[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
|
.pico dialog article .close:is([aria-current]:not([aria-current=false]), :hover, :active, :focus), .pico dialog article :is(a, button)[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
}
|
}
|
||||||
.pico dialog:not([open]), .pico dialog[open=false] {
|
.pico dialog:not([open]), .pico dialog[open=false] {
|
||||||
|
|
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
|
@ -2352,7 +2352,7 @@ main {
|
||||||
.pico dialog article > header > * {
|
.pico dialog article > header > * {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
.pico dialog article > header .close, .pico dialog article > header a[rel=prev] {
|
.pico dialog article > header .close, .pico dialog article > header :is(a, button)[rel=prev] {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
margin-left: var(--pico-spacing);
|
margin-left: var(--pico-spacing);
|
||||||
float: right;
|
float: right;
|
||||||
|
@ -2368,21 +2368,23 @@ main {
|
||||||
.pico dialog article > footer [role=button]:not(:first-of-type) {
|
.pico dialog article > footer [role=button]:not(:first-of-type) {
|
||||||
margin-left: calc(var(--pico-spacing) * 0.5);
|
margin-left: calc(var(--pico-spacing) * 0.5);
|
||||||
}
|
}
|
||||||
.pico dialog article .close, .pico dialog article a[rel=prev] {
|
.pico dialog article .close, .pico dialog article :is(a, button)[rel=prev] {
|
||||||
display: block;
|
display: block;
|
||||||
width: 1rem;
|
width: 1rem;
|
||||||
height: 1rem;
|
height: 1rem;
|
||||||
margin-top: calc(var(--pico-spacing) * -1);
|
margin-top: calc(var(--pico-spacing) * -1);
|
||||||
margin-bottom: var(--pico-spacing);
|
margin-bottom: var(--pico-spacing);
|
||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
|
border: none;
|
||||||
background-image: var(--pico-icon-close);
|
background-image: var(--pico-icon-close);
|
||||||
background-position: center;
|
background-position: center;
|
||||||
background-size: auto 1rem;
|
background-size: auto 1rem;
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
|
background-color: transparent;
|
||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
transition: opacity var(--pico-transition);
|
transition: opacity var(--pico-transition);
|
||||||
}
|
}
|
||||||
.pico dialog article .close:is([aria-current]:not([aria-current=false]), :hover, :active, :focus), .pico dialog article a[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
|
.pico dialog article .close:is([aria-current]:not([aria-current=false]), :hover, :active, :focus), .pico dialog article :is(a, button)[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
}
|
}
|
||||||
.pico dialog:not([open]), .pico dialog[open=false] {
|
.pico dialog:not([open]), .pico dialog[open=false] {
|
||||||
|
|
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
|
@ -2352,7 +2352,7 @@ main {
|
||||||
.pico dialog article > header > * {
|
.pico dialog article > header > * {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
.pico dialog article > header .close, .pico dialog article > header a[rel=prev] {
|
.pico dialog article > header .close, .pico dialog article > header :is(a, button)[rel=prev] {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
margin-left: var(--pico-spacing);
|
margin-left: var(--pico-spacing);
|
||||||
float: right;
|
float: right;
|
||||||
|
@ -2368,21 +2368,23 @@ main {
|
||||||
.pico dialog article > footer [role=button]:not(:first-of-type) {
|
.pico dialog article > footer [role=button]:not(:first-of-type) {
|
||||||
margin-left: calc(var(--pico-spacing) * 0.5);
|
margin-left: calc(var(--pico-spacing) * 0.5);
|
||||||
}
|
}
|
||||||
.pico dialog article .close, .pico dialog article a[rel=prev] {
|
.pico dialog article .close, .pico dialog article :is(a, button)[rel=prev] {
|
||||||
display: block;
|
display: block;
|
||||||
width: 1rem;
|
width: 1rem;
|
||||||
height: 1rem;
|
height: 1rem;
|
||||||
margin-top: calc(var(--pico-spacing) * -1);
|
margin-top: calc(var(--pico-spacing) * -1);
|
||||||
margin-bottom: var(--pico-spacing);
|
margin-bottom: var(--pico-spacing);
|
||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
|
border: none;
|
||||||
background-image: var(--pico-icon-close);
|
background-image: var(--pico-icon-close);
|
||||||
background-position: center;
|
background-position: center;
|
||||||
background-size: auto 1rem;
|
background-size: auto 1rem;
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
|
background-color: transparent;
|
||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
transition: opacity var(--pico-transition);
|
transition: opacity var(--pico-transition);
|
||||||
}
|
}
|
||||||
.pico dialog article .close:is([aria-current]:not([aria-current=false]), :hover, :active, :focus), .pico dialog article a[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
|
.pico dialog article .close:is([aria-current]:not([aria-current=false]), :hover, :active, :focus), .pico dialog article :is(a, button)[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
}
|
}
|
||||||
.pico dialog:not([open]), .pico dialog[open=false] {
|
.pico dialog:not([open]), .pico dialog[open=false] {
|
||||||
|
|
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
|
@ -2352,7 +2352,7 @@ main {
|
||||||
.pico dialog article > header > * {
|
.pico dialog article > header > * {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
.pico dialog article > header .close, .pico dialog article > header a[rel=prev] {
|
.pico dialog article > header .close, .pico dialog article > header :is(a, button)[rel=prev] {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
margin-left: var(--pico-spacing);
|
margin-left: var(--pico-spacing);
|
||||||
float: right;
|
float: right;
|
||||||
|
@ -2368,21 +2368,23 @@ main {
|
||||||
.pico dialog article > footer [role=button]:not(:first-of-type) {
|
.pico dialog article > footer [role=button]:not(:first-of-type) {
|
||||||
margin-left: calc(var(--pico-spacing) * 0.5);
|
margin-left: calc(var(--pico-spacing) * 0.5);
|
||||||
}
|
}
|
||||||
.pico dialog article .close, .pico dialog article a[rel=prev] {
|
.pico dialog article .close, .pico dialog article :is(a, button)[rel=prev] {
|
||||||
display: block;
|
display: block;
|
||||||
width: 1rem;
|
width: 1rem;
|
||||||
height: 1rem;
|
height: 1rem;
|
||||||
margin-top: calc(var(--pico-spacing) * -1);
|
margin-top: calc(var(--pico-spacing) * -1);
|
||||||
margin-bottom: var(--pico-spacing);
|
margin-bottom: var(--pico-spacing);
|
||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
|
border: none;
|
||||||
background-image: var(--pico-icon-close);
|
background-image: var(--pico-icon-close);
|
||||||
background-position: center;
|
background-position: center;
|
||||||
background-size: auto 1rem;
|
background-size: auto 1rem;
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
|
background-color: transparent;
|
||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
transition: opacity var(--pico-transition);
|
transition: opacity var(--pico-transition);
|
||||||
}
|
}
|
||||||
.pico dialog article .close:is([aria-current]:not([aria-current=false]), :hover, :active, :focus), .pico dialog article a[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
|
.pico dialog article .close:is([aria-current]:not([aria-current=false]), :hover, :active, :focus), .pico dialog article :is(a, button)[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
}
|
}
|
||||||
.pico dialog:not([open]), .pico dialog[open=false] {
|
.pico dialog:not([open]), .pico dialog[open=false] {
|
||||||
|
|
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
|
@ -2352,7 +2352,7 @@ main {
|
||||||
.pico dialog article > header > * {
|
.pico dialog article > header > * {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
.pico dialog article > header .close, .pico dialog article > header a[rel=prev] {
|
.pico dialog article > header .close, .pico dialog article > header :is(a, button)[rel=prev] {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
margin-left: var(--pico-spacing);
|
margin-left: var(--pico-spacing);
|
||||||
float: right;
|
float: right;
|
||||||
|
@ -2368,21 +2368,23 @@ main {
|
||||||
.pico dialog article > footer [role=button]:not(:first-of-type) {
|
.pico dialog article > footer [role=button]:not(:first-of-type) {
|
||||||
margin-left: calc(var(--pico-spacing) * 0.5);
|
margin-left: calc(var(--pico-spacing) * 0.5);
|
||||||
}
|
}
|
||||||
.pico dialog article .close, .pico dialog article a[rel=prev] {
|
.pico dialog article .close, .pico dialog article :is(a, button)[rel=prev] {
|
||||||
display: block;
|
display: block;
|
||||||
width: 1rem;
|
width: 1rem;
|
||||||
height: 1rem;
|
height: 1rem;
|
||||||
margin-top: calc(var(--pico-spacing) * -1);
|
margin-top: calc(var(--pico-spacing) * -1);
|
||||||
margin-bottom: var(--pico-spacing);
|
margin-bottom: var(--pico-spacing);
|
||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
|
border: none;
|
||||||
background-image: var(--pico-icon-close);
|
background-image: var(--pico-icon-close);
|
||||||
background-position: center;
|
background-position: center;
|
||||||
background-size: auto 1rem;
|
background-size: auto 1rem;
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
|
background-color: transparent;
|
||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
transition: opacity var(--pico-transition);
|
transition: opacity var(--pico-transition);
|
||||||
}
|
}
|
||||||
.pico dialog article .close:is([aria-current]:not([aria-current=false]), :hover, :active, :focus), .pico dialog article a[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
|
.pico dialog article .close:is([aria-current]:not([aria-current=false]), :hover, :active, :focus), .pico dialog article :is(a, button)[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
}
|
}
|
||||||
.pico dialog:not([open]), .pico dialog[open=false] {
|
.pico dialog:not([open]), .pico dialog[open=false] {
|
||||||
|
|
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
|
@ -2352,7 +2352,7 @@ main {
|
||||||
.pico dialog article > header > * {
|
.pico dialog article > header > * {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
.pico dialog article > header .close, .pico dialog article > header a[rel=prev] {
|
.pico dialog article > header .close, .pico dialog article > header :is(a, button)[rel=prev] {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
margin-left: var(--pico-spacing);
|
margin-left: var(--pico-spacing);
|
||||||
float: right;
|
float: right;
|
||||||
|
@ -2368,21 +2368,23 @@ main {
|
||||||
.pico dialog article > footer [role=button]:not(:first-of-type) {
|
.pico dialog article > footer [role=button]:not(:first-of-type) {
|
||||||
margin-left: calc(var(--pico-spacing) * 0.5);
|
margin-left: calc(var(--pico-spacing) * 0.5);
|
||||||
}
|
}
|
||||||
.pico dialog article .close, .pico dialog article a[rel=prev] {
|
.pico dialog article .close, .pico dialog article :is(a, button)[rel=prev] {
|
||||||
display: block;
|
display: block;
|
||||||
width: 1rem;
|
width: 1rem;
|
||||||
height: 1rem;
|
height: 1rem;
|
||||||
margin-top: calc(var(--pico-spacing) * -1);
|
margin-top: calc(var(--pico-spacing) * -1);
|
||||||
margin-bottom: var(--pico-spacing);
|
margin-bottom: var(--pico-spacing);
|
||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
|
border: none;
|
||||||
background-image: var(--pico-icon-close);
|
background-image: var(--pico-icon-close);
|
||||||
background-position: center;
|
background-position: center;
|
||||||
background-size: auto 1rem;
|
background-size: auto 1rem;
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
|
background-color: transparent;
|
||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
transition: opacity var(--pico-transition);
|
transition: opacity var(--pico-transition);
|
||||||
}
|
}
|
||||||
.pico dialog article .close:is([aria-current]:not([aria-current=false]), :hover, :active, :focus), .pico dialog article a[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
|
.pico dialog article .close:is([aria-current]:not([aria-current=false]), :hover, :active, :focus), .pico dialog article :is(a, button)[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
}
|
}
|
||||||
.pico dialog:not([open]), .pico dialog[open=false] {
|
.pico dialog:not([open]), .pico dialog[open=false] {
|
||||||
|
|
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
|
@ -2352,7 +2352,7 @@ main {
|
||||||
.pico dialog article > header > * {
|
.pico dialog article > header > * {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
.pico dialog article > header .close, .pico dialog article > header a[rel=prev] {
|
.pico dialog article > header .close, .pico dialog article > header :is(a, button)[rel=prev] {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
margin-left: var(--pico-spacing);
|
margin-left: var(--pico-spacing);
|
||||||
float: right;
|
float: right;
|
||||||
|
@ -2368,21 +2368,23 @@ main {
|
||||||
.pico dialog article > footer [role=button]:not(:first-of-type) {
|
.pico dialog article > footer [role=button]:not(:first-of-type) {
|
||||||
margin-left: calc(var(--pico-spacing) * 0.5);
|
margin-left: calc(var(--pico-spacing) * 0.5);
|
||||||
}
|
}
|
||||||
.pico dialog article .close, .pico dialog article a[rel=prev] {
|
.pico dialog article .close, .pico dialog article :is(a, button)[rel=prev] {
|
||||||
display: block;
|
display: block;
|
||||||
width: 1rem;
|
width: 1rem;
|
||||||
height: 1rem;
|
height: 1rem;
|
||||||
margin-top: calc(var(--pico-spacing) * -1);
|
margin-top: calc(var(--pico-spacing) * -1);
|
||||||
margin-bottom: var(--pico-spacing);
|
margin-bottom: var(--pico-spacing);
|
||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
|
border: none;
|
||||||
background-image: var(--pico-icon-close);
|
background-image: var(--pico-icon-close);
|
||||||
background-position: center;
|
background-position: center;
|
||||||
background-size: auto 1rem;
|
background-size: auto 1rem;
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
|
background-color: transparent;
|
||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
transition: opacity var(--pico-transition);
|
transition: opacity var(--pico-transition);
|
||||||
}
|
}
|
||||||
.pico dialog article .close:is([aria-current]:not([aria-current=false]), :hover, :active, :focus), .pico dialog article a[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
|
.pico dialog article .close:is([aria-current]:not([aria-current=false]), :hover, :active, :focus), .pico dialog article :is(a, button)[rel=prev]:is([aria-current]:not([aria-current=false]), :hover, :active, :focus) {
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
}
|
}
|
||||||
.pico dialog:not([open]), .pico dialog[open=false] {
|
.pico dialog:not([open]), .pico dialog[open=false] {
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue