mirror of
https://github.com/picocss/pico.git
synced 2025-04-24 18:26:14 -04:00
Build CSS
This commit is contained in:
parent
d20ea655bf
commit
f9c3a34411
92 changed files with 2032 additions and 184 deletions
|
@ -3058,6 +3058,7 @@ details.dropdown > summary:not([role]) {
|
|||
background-color: var(--pico-form-element-background-color);
|
||||
color: var(--pico-form-element-placeholder-color);
|
||||
line-height: inherit;
|
||||
text-align: inherit;
|
||||
cursor: pointer;
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none;
|
||||
|
@ -3091,6 +3092,7 @@ details.dropdown > summary + ul {
|
|||
left: 0;
|
||||
flex-direction: column;
|
||||
width: 100%;
|
||||
min-width: 200px;
|
||||
min-width: -moz-fit-content;
|
||||
min-width: fit-content;
|
||||
margin: 0;
|
||||
|
@ -3122,6 +3124,7 @@ details.dropdown > summary + ul li:last-of-type {
|
|||
margin-bottom: calc(var(--pico-form-element-spacing-vertical) * 0.5);
|
||||
}
|
||||
details.dropdown > summary + ul li details {
|
||||
width: 100%;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
details.dropdown > summary + ul li details > summary {
|
||||
|
@ -3643,6 +3646,47 @@ dialog:not([open]) article, dialog[open=false] article {
|
|||
touch-action: auto;
|
||||
}
|
||||
|
||||
dialog.modal-sm > article {
|
||||
width: 90vw;
|
||||
max-width: 400px;
|
||||
}
|
||||
dialog.modal-md > article {
|
||||
width: 90vw;
|
||||
max-width: 600px;
|
||||
}
|
||||
dialog.modal-lg > article {
|
||||
width: 90vw;
|
||||
max-width: 800px;
|
||||
}
|
||||
dialog.modal-xlg > article {
|
||||
width: 95vw;
|
||||
max-width: 1000px;
|
||||
}
|
||||
dialog.modal-fs {
|
||||
padding: 0;
|
||||
}
|
||||
dialog.modal-fs > article {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: space-between;
|
||||
width: 100vw;
|
||||
max-width: 100vw;
|
||||
height: 100vh;
|
||||
max-height: 100vh;
|
||||
margin: 0;
|
||||
overflow-y: auto;
|
||||
}
|
||||
dialog.modal-fs > article > footer {
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
margin-top: auto;
|
||||
}
|
||||
@media (max-width: 576px) {
|
||||
dialog:not(.modal-fs) > article {
|
||||
width: 95vw;
|
||||
}
|
||||
}
|
||||
|
||||
body:has(dialog[open]) {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
|
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
|
@ -3058,6 +3058,7 @@ details.dropdown > summary:not([role]) {
|
|||
background-color: var(--pico-form-element-background-color);
|
||||
color: var(--pico-form-element-placeholder-color);
|
||||
line-height: inherit;
|
||||
text-align: inherit;
|
||||
cursor: pointer;
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none;
|
||||
|
@ -3091,6 +3092,7 @@ details.dropdown > summary + ul {
|
|||
left: 0;
|
||||
flex-direction: column;
|
||||
width: 100%;
|
||||
min-width: 200px;
|
||||
min-width: -moz-fit-content;
|
||||
min-width: fit-content;
|
||||
margin: 0;
|
||||
|
@ -3122,6 +3124,7 @@ details.dropdown > summary + ul li:last-of-type {
|
|||
margin-bottom: calc(var(--pico-form-element-spacing-vertical) * 0.5);
|
||||
}
|
||||
details.dropdown > summary + ul li details {
|
||||
width: 100%;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
details.dropdown > summary + ul li details > summary {
|
||||
|
@ -3643,6 +3646,47 @@ dialog:not([open]) article, dialog[open=false] article {
|
|||
touch-action: auto;
|
||||
}
|
||||
|
||||
dialog.modal-sm > article {
|
||||
width: 90vw;
|
||||
max-width: 400px;
|
||||
}
|
||||
dialog.modal-md > article {
|
||||
width: 90vw;
|
||||
max-width: 600px;
|
||||
}
|
||||
dialog.modal-lg > article {
|
||||
width: 90vw;
|
||||
max-width: 800px;
|
||||
}
|
||||
dialog.modal-xlg > article {
|
||||
width: 95vw;
|
||||
max-width: 1000px;
|
||||
}
|
||||
dialog.modal-fs {
|
||||
padding: 0;
|
||||
}
|
||||
dialog.modal-fs > article {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: space-between;
|
||||
width: 100vw;
|
||||
max-width: 100vw;
|
||||
height: 100vh;
|
||||
max-height: 100vh;
|
||||
margin: 0;
|
||||
overflow-y: auto;
|
||||
}
|
||||
dialog.modal-fs > article > footer {
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
margin-top: auto;
|
||||
}
|
||||
@media (max-width: 576px) {
|
||||
dialog:not(.modal-fs) > article {
|
||||
width: 95vw;
|
||||
}
|
||||
}
|
||||
|
||||
body:has(dialog[open]) {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
|
2
css/pico.azure.min.css
vendored
2
css/pico.azure.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -3058,6 +3058,7 @@ details.dropdown > summary:not([role]) {
|
|||
background-color: var(--pico-form-element-background-color);
|
||||
color: var(--pico-form-element-placeholder-color);
|
||||
line-height: inherit;
|
||||
text-align: inherit;
|
||||
cursor: pointer;
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none;
|
||||
|
@ -3091,6 +3092,7 @@ details.dropdown > summary + ul {
|
|||
left: 0;
|
||||
flex-direction: column;
|
||||
width: 100%;
|
||||
min-width: 200px;
|
||||
min-width: -moz-fit-content;
|
||||
min-width: fit-content;
|
||||
margin: 0;
|
||||
|
@ -3122,6 +3124,7 @@ details.dropdown > summary + ul li:last-of-type {
|
|||
margin-bottom: calc(var(--pico-form-element-spacing-vertical) * 0.5);
|
||||
}
|
||||
details.dropdown > summary + ul li details {
|
||||
width: 100%;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
details.dropdown > summary + ul li details > summary {
|
||||
|
@ -3643,6 +3646,47 @@ dialog:not([open]) article, dialog[open=false] article {
|
|||
touch-action: auto;
|
||||
}
|
||||
|
||||
dialog.modal-sm > article {
|
||||
width: 90vw;
|
||||
max-width: 400px;
|
||||
}
|
||||
dialog.modal-md > article {
|
||||
width: 90vw;
|
||||
max-width: 600px;
|
||||
}
|
||||
dialog.modal-lg > article {
|
||||
width: 90vw;
|
||||
max-width: 800px;
|
||||
}
|
||||
dialog.modal-xlg > article {
|
||||
width: 95vw;
|
||||
max-width: 1000px;
|
||||
}
|
||||
dialog.modal-fs {
|
||||
padding: 0;
|
||||
}
|
||||
dialog.modal-fs > article {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: space-between;
|
||||
width: 100vw;
|
||||
max-width: 100vw;
|
||||
height: 100vh;
|
||||
max-height: 100vh;
|
||||
margin: 0;
|
||||
overflow-y: auto;
|
||||
}
|
||||
dialog.modal-fs > article > footer {
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
margin-top: auto;
|
||||
}
|
||||
@media (max-width: 576px) {
|
||||
dialog:not(.modal-fs) > article {
|
||||
width: 95vw;
|
||||
}
|
||||
}
|
||||
|
||||
body:has(dialog[open]) {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
|
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
|
@ -199,19 +199,19 @@ input:not([type=submit],
|
|||
color-scheme: light;
|
||||
--pico-background-color: #fff;
|
||||
--pico-color: #373c44;
|
||||
--pico-text-selection-color: rgba(246, 84, 126, 0.25);
|
||||
--pico-text-selection-color: rgba(149, 144, 130, 0.25);
|
||||
--pico-muted-color: #646b79;
|
||||
--pico-muted-border-color: rgb(231, 234, 239.5);
|
||||
--pico-primary: #c72259;
|
||||
--pico-primary-background: #d92662;
|
||||
--pico-primary: #6e6a60;
|
||||
--pico-primary-background: #ccc6b4;
|
||||
--pico-primary-border: var(--pico-primary-background);
|
||||
--pico-primary-underline: rgba(199, 34, 89, 0.5);
|
||||
--pico-primary-hover: #9d1945;
|
||||
--pico-primary-hover-background: #c72259;
|
||||
--pico-primary-underline: rgba(110, 106, 96, 0.5);
|
||||
--pico-primary-hover: #55524a;
|
||||
--pico-primary-hover-background: #beb8a7;
|
||||
--pico-primary-hover-border: var(--pico-primary-hover-background);
|
||||
--pico-primary-hover-underline: var(--pico-primary-hover);
|
||||
--pico-primary-focus: rgba(246, 84, 126, 0.5);
|
||||
--pico-primary-inverse: #fff;
|
||||
--pico-primary-focus: rgba(149, 144, 130, 0.5);
|
||||
--pico-primary-inverse: #000;
|
||||
--pico-secondary: #5d6b89;
|
||||
--pico-secondary-background: #525f7a;
|
||||
--pico-secondary-border: var(--pico-secondary-background);
|
||||
|
@ -275,7 +275,7 @@ input:not([type=submit],
|
|||
--pico-switch-background-color: #bfc7d9;
|
||||
--pico-switch-checked-background-color: var(--pico-primary-background);
|
||||
--pico-switch-color: #fff;
|
||||
--pico-switch-thumb-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
|
||||
--pico-switch-thumb-box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.25);
|
||||
--pico-range-border-color: #dfe3eb;
|
||||
--pico-range-active-border-color: #bfc7d9;
|
||||
--pico-range-thumb-border-color: var(--pico-background-color);
|
||||
|
@ -305,12 +305,12 @@ input:not([type=submit],
|
|||
[data-theme=light] details summary[role=button]::after,
|
||||
:root:not([data-theme=dark]) details summary[role=button]::after,
|
||||
:host(:not([data-theme=dark])) details summary[role=button]::after {
|
||||
filter: brightness(100) invert(0);
|
||||
filter: brightness(100) invert(1);
|
||||
}
|
||||
[data-theme=light] [aria-busy=true]:not(input, select, textarea, html, form):is(button, [type=submit], [type=button], [type=reset], [role=button])::before,
|
||||
:root:not([data-theme=dark]) [aria-busy=true]:not(input, select, textarea, html, form):is(button, [type=submit], [type=button], [type=reset], [role=button])::before,
|
||||
:host(:not([data-theme=dark])) [aria-busy=true]:not(input, select, textarea, html, form):is(button, [type=submit], [type=button], [type=reset], [role=button])::before {
|
||||
filter: brightness(100) invert(0);
|
||||
filter: brightness(0) invert(1);
|
||||
}
|
||||
[data-theme=light] input:is([type=submit],
|
||||
[type=button],
|
||||
|
@ -339,19 +339,19 @@ input:not([type=submit],
|
|||
color-scheme: dark;
|
||||
--pico-background-color: rgb(19, 22.5, 30.5);
|
||||
--pico-color: #c2c7d0;
|
||||
--pico-text-selection-color: rgba(247, 112, 142, 0.1875);
|
||||
--pico-text-selection-color: rgba(163, 158, 143, 0.1875);
|
||||
--pico-muted-color: #7b8495;
|
||||
--pico-muted-border-color: #202632;
|
||||
--pico-primary: #f7708e;
|
||||
--pico-primary-background: #d92662;
|
||||
--pico-primary: #a39e8f;
|
||||
--pico-primary-background: #ccc6b4;
|
||||
--pico-primary-border: var(--pico-primary-background);
|
||||
--pico-primary-underline: rgba(247, 112, 142, 0.5);
|
||||
--pico-primary-hover: #f99eae;
|
||||
--pico-primary-hover-background: #f42c6f;
|
||||
--pico-primary-underline: rgba(163, 158, 143, 0.5);
|
||||
--pico-primary-hover: #beb8a7;
|
||||
--pico-primary-hover-background: #dad4c2;
|
||||
--pico-primary-hover-border: var(--pico-primary-hover-background);
|
||||
--pico-primary-hover-underline: var(--pico-primary-hover);
|
||||
--pico-primary-focus: rgba(247, 112, 142, 0.375);
|
||||
--pico-primary-inverse: #fff;
|
||||
--pico-primary-focus: rgba(163, 158, 143, 0.375);
|
||||
--pico-primary-inverse: #000;
|
||||
--pico-secondary: #969eaf;
|
||||
--pico-secondary-background: #525f7a;
|
||||
--pico-secondary-border: var(--pico-secondary-background);
|
||||
|
@ -415,7 +415,7 @@ input:not([type=submit],
|
|||
--pico-switch-background-color: #333c4e;
|
||||
--pico-switch-checked-background-color: var(--pico-primary-background);
|
||||
--pico-switch-color: #fff;
|
||||
--pico-switch-thumb-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
|
||||
--pico-switch-thumb-box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.25);
|
||||
--pico-range-border-color: #202632;
|
||||
--pico-range-active-border-color: #2a3140;
|
||||
--pico-range-thumb-border-color: var(--pico-background-color);
|
||||
|
@ -458,30 +458,30 @@ input:not([type=submit],
|
|||
}
|
||||
:root:not([data-theme]) details summary[role=button]::after,
|
||||
:host(:not([data-theme])) details summary[role=button]::after {
|
||||
filter: brightness(100) invert(0);
|
||||
filter: brightness(100) invert(1);
|
||||
}
|
||||
:root:not([data-theme]) [aria-busy=true]:not(input, select, textarea, html, form):is(button, [type=submit], [type=button], [type=reset], [role=button])::before,
|
||||
:host(:not([data-theme])) [aria-busy=true]:not(input, select, textarea, html, form):is(button, [type=submit], [type=button], [type=reset], [role=button])::before {
|
||||
filter: brightness(100) invert(1);
|
||||
filter: brightness(100) invert(0);
|
||||
}
|
||||
}
|
||||
[data-theme=dark] {
|
||||
color-scheme: dark;
|
||||
--pico-background-color: rgb(19, 22.5, 30.5);
|
||||
--pico-color: #c2c7d0;
|
||||
--pico-text-selection-color: rgba(247, 112, 142, 0.1875);
|
||||
--pico-text-selection-color: rgba(163, 158, 143, 0.1875);
|
||||
--pico-muted-color: #7b8495;
|
||||
--pico-muted-border-color: #202632;
|
||||
--pico-primary: #f7708e;
|
||||
--pico-primary-background: #d92662;
|
||||
--pico-primary: #a39e8f;
|
||||
--pico-primary-background: #ccc6b4;
|
||||
--pico-primary-border: var(--pico-primary-background);
|
||||
--pico-primary-underline: rgba(247, 112, 142, 0.5);
|
||||
--pico-primary-hover: #f99eae;
|
||||
--pico-primary-hover-background: #f42c6f;
|
||||
--pico-primary-underline: rgba(163, 158, 143, 0.5);
|
||||
--pico-primary-hover: #beb8a7;
|
||||
--pico-primary-hover-background: #dad4c2;
|
||||
--pico-primary-hover-border: var(--pico-primary-hover-background);
|
||||
--pico-primary-hover-underline: var(--pico-primary-hover);
|
||||
--pico-primary-focus: rgba(247, 112, 142, 0.375);
|
||||
--pico-primary-inverse: #fff;
|
||||
--pico-primary-focus: rgba(163, 158, 143, 0.375);
|
||||
--pico-primary-inverse: #000;
|
||||
--pico-secondary: #969eaf;
|
||||
--pico-secondary-background: #525f7a;
|
||||
--pico-secondary-border: var(--pico-secondary-background);
|
||||
|
@ -545,7 +545,7 @@ input:not([type=submit],
|
|||
--pico-switch-background-color: #333c4e;
|
||||
--pico-switch-checked-background-color: var(--pico-primary-background);
|
||||
--pico-switch-color: #fff;
|
||||
--pico-switch-thumb-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
|
||||
--pico-switch-thumb-box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.25);
|
||||
--pico-range-border-color: #202632;
|
||||
--pico-range-active-border-color: #2a3140;
|
||||
--pico-range-thumb-border-color: var(--pico-background-color);
|
||||
|
@ -581,10 +581,10 @@ input:not([type=submit],
|
|||
--pico-form-element-focus-color: var(--pico-primary-focus);
|
||||
}
|
||||
[data-theme=dark] details summary[role=button]::after {
|
||||
filter: brightness(100) invert(0);
|
||||
filter: brightness(100) invert(1);
|
||||
}
|
||||
[data-theme=dark] [aria-busy=true]:not(input, select, textarea, html, form):is(button, [type=submit], [type=button], [type=reset], [role=button])::before {
|
||||
filter: brightness(100) invert(1);
|
||||
filter: brightness(100) invert(0);
|
||||
}
|
||||
|
||||
progress,
|
||||
|
|
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
|
@ -3058,6 +3058,7 @@ main {
|
|||
background-color: var(--pico-form-element-background-color);
|
||||
color: var(--pico-form-element-placeholder-color);
|
||||
line-height: inherit;
|
||||
text-align: inherit;
|
||||
cursor: pointer;
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none;
|
||||
|
@ -3091,6 +3092,7 @@ main {
|
|||
left: 0;
|
||||
flex-direction: column;
|
||||
width: 100%;
|
||||
min-width: 200px;
|
||||
min-width: -moz-fit-content;
|
||||
min-width: fit-content;
|
||||
margin: 0;
|
||||
|
@ -3122,6 +3124,7 @@ main {
|
|||
margin-bottom: calc(var(--pico-form-element-spacing-vertical) * 0.5);
|
||||
}
|
||||
.pico details.dropdown > summary + ul li details {
|
||||
width: 100%;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
.pico details.dropdown > summary + ul li details > summary {
|
||||
|
@ -3643,6 +3646,47 @@ main {
|
|||
touch-action: auto;
|
||||
}
|
||||
|
||||
dialog.modal-sm > article {
|
||||
width: 90vw;
|
||||
max-width: 400px;
|
||||
}
|
||||
dialog.modal-md > article {
|
||||
width: 90vw;
|
||||
max-width: 600px;
|
||||
}
|
||||
dialog.modal-lg > article {
|
||||
width: 90vw;
|
||||
max-width: 800px;
|
||||
}
|
||||
dialog.modal-xlg > article {
|
||||
width: 95vw;
|
||||
max-width: 1000px;
|
||||
}
|
||||
dialog.modal-fs {
|
||||
padding: 0;
|
||||
}
|
||||
dialog.modal-fs > article {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: space-between;
|
||||
width: 100vw;
|
||||
max-width: 100vw;
|
||||
height: 100vh;
|
||||
max-height: 100vh;
|
||||
margin: 0;
|
||||
overflow-y: auto;
|
||||
}
|
||||
dialog.modal-fs > article > footer {
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
margin-top: auto;
|
||||
}
|
||||
@media (max-width: 576px) {
|
||||
dialog:not(.modal-fs) > article {
|
||||
width: 95vw;
|
||||
}
|
||||
}
|
||||
|
||||
body:has(dialog[open]) {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
|
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
|
@ -3058,6 +3058,7 @@ main {
|
|||
background-color: var(--pico-form-element-background-color);
|
||||
color: var(--pico-form-element-placeholder-color);
|
||||
line-height: inherit;
|
||||
text-align: inherit;
|
||||
cursor: pointer;
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none;
|
||||
|
@ -3091,6 +3092,7 @@ main {
|
|||
left: 0;
|
||||
flex-direction: column;
|
||||
width: 100%;
|
||||
min-width: 200px;
|
||||
min-width: -moz-fit-content;
|
||||
min-width: fit-content;
|
||||
margin: 0;
|
||||
|
@ -3122,6 +3124,7 @@ main {
|
|||
margin-bottom: calc(var(--pico-form-element-spacing-vertical) * 0.5);
|
||||
}
|
||||
.pico details.dropdown > summary + ul li details {
|
||||
width: 100%;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
.pico details.dropdown > summary + ul li details > summary {
|
||||
|
@ -3643,6 +3646,47 @@ main {
|
|||
touch-action: auto;
|
||||
}
|
||||
|
||||
dialog.modal-sm > article {
|
||||
width: 90vw;
|
||||
max-width: 400px;
|
||||
}
|
||||
dialog.modal-md > article {
|
||||
width: 90vw;
|
||||
max-width: 600px;
|
||||
}
|
||||
dialog.modal-lg > article {
|
||||
width: 90vw;
|
||||
max-width: 800px;
|
||||
}
|
||||
dialog.modal-xlg > article {
|
||||
width: 95vw;
|
||||
max-width: 1000px;
|
||||
}
|
||||
dialog.modal-fs {
|
||||
padding: 0;
|
||||
}
|
||||
dialog.modal-fs > article {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: space-between;
|
||||
width: 100vw;
|
||||
max-width: 100vw;
|
||||
height: 100vh;
|
||||
max-height: 100vh;
|
||||
margin: 0;
|
||||
overflow-y: auto;
|
||||
}
|
||||
dialog.modal-fs > article > footer {
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
margin-top: auto;
|
||||
}
|
||||
@media (max-width: 576px) {
|
||||
dialog:not(.modal-fs) > article {
|
||||
width: 95vw;
|
||||
}
|
||||
}
|
||||
|
||||
body:has(dialog[open]) {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
|
2
css/pico.conditional.azure.min.css
vendored
2
css/pico.conditional.azure.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -3058,6 +3058,7 @@ main {
|
|||
background-color: var(--pico-form-element-background-color);
|
||||
color: var(--pico-form-element-placeholder-color);
|
||||
line-height: inherit;
|
||||
text-align: inherit;
|
||||
cursor: pointer;
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none;
|
||||
|
@ -3091,6 +3092,7 @@ main {
|
|||
left: 0;
|
||||
flex-direction: column;
|
||||
width: 100%;
|
||||
min-width: 200px;
|
||||
min-width: -moz-fit-content;
|
||||
min-width: fit-content;
|
||||
margin: 0;
|
||||
|
@ -3122,6 +3124,7 @@ main {
|
|||
margin-bottom: calc(var(--pico-form-element-spacing-vertical) * 0.5);
|
||||
}
|
||||
.pico details.dropdown > summary + ul li details {
|
||||
width: 100%;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
.pico details.dropdown > summary + ul li details > summary {
|
||||
|
@ -3643,6 +3646,47 @@ main {
|
|||
touch-action: auto;
|
||||
}
|
||||
|
||||
dialog.modal-sm > article {
|
||||
width: 90vw;
|
||||
max-width: 400px;
|
||||
}
|
||||
dialog.modal-md > article {
|
||||
width: 90vw;
|
||||
max-width: 600px;
|
||||
}
|
||||
dialog.modal-lg > article {
|
||||
width: 90vw;
|
||||
max-width: 800px;
|
||||
}
|
||||
dialog.modal-xlg > article {
|
||||
width: 95vw;
|
||||
max-width: 1000px;
|
||||
}
|
||||
dialog.modal-fs {
|
||||
padding: 0;
|
||||
}
|
||||
dialog.modal-fs > article {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: space-between;
|
||||
width: 100vw;
|
||||
max-width: 100vw;
|
||||
height: 100vh;
|
||||
max-height: 100vh;
|
||||
margin: 0;
|
||||
overflow-y: auto;
|
||||
}
|
||||
dialog.modal-fs > article > footer {
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
margin-top: auto;
|
||||
}
|
||||
@media (max-width: 576px) {
|
||||
dialog:not(.modal-fs) > article {
|
||||
width: 95vw;
|
||||
}
|
||||
}
|
||||
|
||||
body:has(dialog[open]) {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
|
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
|
@ -232,18 +232,18 @@ nav details.dropdown summary:focus-visible {
|
|||
color-scheme: light;
|
||||
--pico-background-color: #fff;
|
||||
--pico-color: #373c44;
|
||||
--pico-text-selection-color: rgba(148, 134, 225, 0.25);
|
||||
--pico-text-selection-color: rgba(240, 96, 72, 0.25);
|
||||
--pico-muted-color: #646b79;
|
||||
--pico-muted-border-color: rgb(231, 234, 239.5);
|
||||
--pico-primary: #655cd6;
|
||||
--pico-primary-background: #524ed2;
|
||||
--pico-primary: #c52f21;
|
||||
--pico-primary-background: #c52f21;
|
||||
--pico-primary-border: var(--pico-primary-background);
|
||||
--pico-primary-underline: rgba(101, 92, 214, 0.5);
|
||||
--pico-primary-hover: #4040bf;
|
||||
--pico-primary-hover-background: #4040bf;
|
||||
--pico-primary-underline: rgba(197, 47, 33, 0.5);
|
||||
--pico-primary-hover: #9b2318;
|
||||
--pico-primary-hover-background: #af291d;
|
||||
--pico-primary-hover-border: var(--pico-primary-hover-background);
|
||||
--pico-primary-hover-underline: var(--pico-primary-hover);
|
||||
--pico-primary-focus: rgba(148, 134, 225, 0.5);
|
||||
--pico-primary-focus: rgba(240, 96, 72, 0.5);
|
||||
--pico-primary-inverse: #fff;
|
||||
--pico-secondary: #5d6b89;
|
||||
--pico-secondary-background: #525f7a;
|
||||
|
@ -387,18 +387,18 @@ nav details.dropdown summary:focus-visible {
|
|||
color-scheme: dark;
|
||||
--pico-background-color: rgb(19, 22.5, 30.5);
|
||||
--pico-color: #c2c7d0;
|
||||
--pico-text-selection-color: rgba(162, 148, 229, 0.1875);
|
||||
--pico-text-selection-color: rgba(241, 121, 97, 0.1875);
|
||||
--pico-muted-color: #7b8495;
|
||||
--pico-muted-border-color: #202632;
|
||||
--pico-primary: #a294e5;
|
||||
--pico-primary-background: #524ed2;
|
||||
--pico-primary: #f17961;
|
||||
--pico-primary-background: #c52f21;
|
||||
--pico-primary-border: var(--pico-primary-background);
|
||||
--pico-primary-underline: rgba(162, 148, 229, 0.5);
|
||||
--pico-primary-hover: #bdb2ec;
|
||||
--pico-primary-hover-background: #655cd6;
|
||||
--pico-primary-underline: rgba(241, 121, 97, 0.5);
|
||||
--pico-primary-hover: #f5a390;
|
||||
--pico-primary-hover-background: #d93526;
|
||||
--pico-primary-hover-border: var(--pico-primary-hover-background);
|
||||
--pico-primary-hover-underline: var(--pico-primary-hover);
|
||||
--pico-primary-focus: rgba(162, 148, 229, 0.375);
|
||||
--pico-primary-focus: rgba(241, 121, 97, 0.375);
|
||||
--pico-primary-inverse: #fff;
|
||||
--pico-secondary: #969eaf;
|
||||
--pico-secondary-background: #525f7a;
|
||||
|
@ -542,18 +542,18 @@ nav details.dropdown summary:focus-visible {
|
|||
color-scheme: dark;
|
||||
--pico-background-color: rgb(19, 22.5, 30.5);
|
||||
--pico-color: #c2c7d0;
|
||||
--pico-text-selection-color: rgba(162, 148, 229, 0.1875);
|
||||
--pico-text-selection-color: rgba(241, 121, 97, 0.1875);
|
||||
--pico-muted-color: #7b8495;
|
||||
--pico-muted-border-color: #202632;
|
||||
--pico-primary: #a294e5;
|
||||
--pico-primary-background: #524ed2;
|
||||
--pico-primary: #f17961;
|
||||
--pico-primary-background: #c52f21;
|
||||
--pico-primary-border: var(--pico-primary-background);
|
||||
--pico-primary-underline: rgba(162, 148, 229, 0.5);
|
||||
--pico-primary-hover: #bdb2ec;
|
||||
--pico-primary-hover-background: #655cd6;
|
||||
--pico-primary-underline: rgba(241, 121, 97, 0.5);
|
||||
--pico-primary-hover: #f5a390;
|
||||
--pico-primary-hover-background: #d93526;
|
||||
--pico-primary-hover-border: var(--pico-primary-hover-background);
|
||||
--pico-primary-hover-underline: var(--pico-primary-hover);
|
||||
--pico-primary-focus: rgba(162, 148, 229, 0.375);
|
||||
--pico-primary-focus: rgba(241, 121, 97, 0.375);
|
||||
--pico-primary-inverse: #fff;
|
||||
--pico-secondary: #969eaf;
|
||||
--pico-secondary-background: #525f7a;
|
||||
|
@ -3058,6 +3058,7 @@ main {
|
|||
background-color: var(--pico-form-element-background-color);
|
||||
color: var(--pico-form-element-placeholder-color);
|
||||
line-height: inherit;
|
||||
text-align: inherit;
|
||||
cursor: pointer;
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none;
|
||||
|
@ -3091,6 +3092,7 @@ main {
|
|||
left: 0;
|
||||
flex-direction: column;
|
||||
width: 100%;
|
||||
min-width: 200px;
|
||||
min-width: -moz-fit-content;
|
||||
min-width: fit-content;
|
||||
margin: 0;
|
||||
|
@ -3122,6 +3124,7 @@ main {
|
|||
margin-bottom: calc(var(--pico-form-element-spacing-vertical) * 0.5);
|
||||
}
|
||||
.pico details.dropdown > summary + ul li details {
|
||||
width: 100%;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
.pico details.dropdown > summary + ul li details > summary {
|
||||
|
@ -3643,6 +3646,47 @@ main {
|
|||
touch-action: auto;
|
||||
}
|
||||
|
||||
dialog.modal-sm > article {
|
||||
width: 90vw;
|
||||
max-width: 400px;
|
||||
}
|
||||
dialog.modal-md > article {
|
||||
width: 90vw;
|
||||
max-width: 600px;
|
||||
}
|
||||
dialog.modal-lg > article {
|
||||
width: 90vw;
|
||||
max-width: 800px;
|
||||
}
|
||||
dialog.modal-xlg > article {
|
||||
width: 95vw;
|
||||
max-width: 1000px;
|
||||
}
|
||||
dialog.modal-fs {
|
||||
padding: 0;
|
||||
}
|
||||
dialog.modal-fs > article {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: space-between;
|
||||
width: 100vw;
|
||||
max-width: 100vw;
|
||||
height: 100vh;
|
||||
max-height: 100vh;
|
||||
margin: 0;
|
||||
overflow-y: auto;
|
||||
}
|
||||
dialog.modal-fs > article > footer {
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
margin-top: auto;
|
||||
}
|
||||
@media (max-width: 576px) {
|
||||
dialog:not(.modal-fs) > article {
|
||||
width: 95vw;
|
||||
}
|
||||
}
|
||||
|
||||
body:has(dialog[open]) {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
|
|
@ -3058,6 +3058,7 @@ main {
|
|||
background-color: var(--pico-form-element-background-color);
|
||||
color: var(--pico-form-element-placeholder-color);
|
||||
line-height: inherit;
|
||||
text-align: inherit;
|
||||
cursor: pointer;
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none;
|
||||
|
@ -3091,6 +3092,7 @@ main {
|
|||
left: 0;
|
||||
flex-direction: column;
|
||||
width: 100%;
|
||||
min-width: 200px;
|
||||
min-width: -moz-fit-content;
|
||||
min-width: fit-content;
|
||||
margin: 0;
|
||||
|
@ -3122,6 +3124,7 @@ main {
|
|||
margin-bottom: calc(var(--pico-form-element-spacing-vertical) * 0.5);
|
||||
}
|
||||
.pico details.dropdown > summary + ul li details {
|
||||
width: 100%;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
.pico details.dropdown > summary + ul li details > summary {
|
||||
|
@ -3643,6 +3646,47 @@ main {
|
|||
touch-action: auto;
|
||||
}
|
||||
|
||||
dialog.modal-sm > article {
|
||||
width: 90vw;
|
||||
max-width: 400px;
|
||||
}
|
||||
dialog.modal-md > article {
|
||||
width: 90vw;
|
||||
max-width: 600px;
|
||||
}
|
||||
dialog.modal-lg > article {
|
||||
width: 90vw;
|
||||
max-width: 800px;
|
||||
}
|
||||
dialog.modal-xlg > article {
|
||||
width: 95vw;
|
||||
max-width: 1000px;
|
||||
}
|
||||
dialog.modal-fs {
|
||||
padding: 0;
|
||||
}
|
||||
dialog.modal-fs > article {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: space-between;
|
||||
width: 100vw;
|
||||
max-width: 100vw;
|
||||
height: 100vh;
|
||||
max-height: 100vh;
|
||||
margin: 0;
|
||||
overflow-y: auto;
|
||||
}
|
||||
dialog.modal-fs > article > footer {
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
margin-top: auto;
|
||||
}
|
||||
@media (max-width: 576px) {
|
||||
dialog:not(.modal-fs) > article {
|
||||
width: 95vw;
|
||||
}
|
||||
}
|
||||
|
||||
body:has(dialog[open]) {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
|
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
|
@ -3058,6 +3058,7 @@ main {
|
|||
background-color: var(--pico-form-element-background-color);
|
||||
color: var(--pico-form-element-placeholder-color);
|
||||
line-height: inherit;
|
||||
text-align: inherit;
|
||||
cursor: pointer;
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none;
|
||||
|
@ -3091,6 +3092,7 @@ main {
|
|||
left: 0;
|
||||
flex-direction: column;
|
||||
width: 100%;
|
||||
min-width: 200px;
|
||||
min-width: -moz-fit-content;
|
||||
min-width: fit-content;
|
||||
margin: 0;
|
||||
|
@ -3122,6 +3124,7 @@ main {
|
|||
margin-bottom: calc(var(--pico-form-element-spacing-vertical) * 0.5);
|
||||
}
|
||||
.pico details.dropdown > summary + ul li details {
|
||||
width: 100%;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
.pico details.dropdown > summary + ul li details > summary {
|
||||
|
@ -3643,6 +3646,47 @@ main {
|
|||
touch-action: auto;
|
||||
}
|
||||
|
||||
dialog.modal-sm > article {
|
||||
width: 90vw;
|
||||
max-width: 400px;
|
||||
}
|
||||
dialog.modal-md > article {
|
||||
width: 90vw;
|
||||
max-width: 600px;
|
||||
}
|
||||
dialog.modal-lg > article {
|
||||
width: 90vw;
|
||||
max-width: 800px;
|
||||
}
|
||||
dialog.modal-xlg > article {
|
||||
width: 95vw;
|
||||
max-width: 1000px;
|
||||
}
|
||||
dialog.modal-fs {
|
||||
padding: 0;
|
||||
}
|
||||
dialog.modal-fs > article {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: space-between;
|
||||
width: 100vw;
|
||||
max-width: 100vw;
|
||||
height: 100vh;
|
||||
max-height: 100vh;
|
||||
margin: 0;
|
||||
overflow-y: auto;
|
||||
}
|
||||
dialog.modal-fs > article > footer {
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
margin-top: auto;
|
||||
}
|
||||
@media (max-width: 576px) {
|
||||
dialog:not(.modal-fs) > article {
|
||||
width: 95vw;
|
||||
}
|
||||
}
|
||||
|
||||
body:has(dialog[open]) {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
|
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
|
@ -3058,6 +3058,7 @@ main {
|
|||
background-color: var(--pico-form-element-background-color);
|
||||
color: var(--pico-form-element-placeholder-color);
|
||||
line-height: inherit;
|
||||
text-align: inherit;
|
||||
cursor: pointer;
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none;
|
||||
|
@ -3091,6 +3092,7 @@ main {
|
|||
left: 0;
|
||||
flex-direction: column;
|
||||
width: 100%;
|
||||
min-width: 200px;
|
||||
min-width: -moz-fit-content;
|
||||
min-width: fit-content;
|
||||
margin: 0;
|
||||
|
@ -3122,6 +3124,7 @@ main {
|
|||
margin-bottom: calc(var(--pico-form-element-spacing-vertical) * 0.5);
|
||||
}
|
||||
.pico details.dropdown > summary + ul li details {
|
||||
width: 100%;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
.pico details.dropdown > summary + ul li details > summary {
|
||||
|
@ -3643,6 +3646,47 @@ main {
|
|||
touch-action: auto;
|
||||
}
|
||||
|
||||
dialog.modal-sm > article {
|
||||
width: 90vw;
|
||||
max-width: 400px;
|
||||
}
|
||||
dialog.modal-md > article {
|
||||
width: 90vw;
|
||||
max-width: 600px;
|
||||
}
|
||||
dialog.modal-lg > article {
|
||||
width: 90vw;
|
||||
max-width: 800px;
|
||||
}
|
||||
dialog.modal-xlg > article {
|
||||
width: 95vw;
|
||||
max-width: 1000px;
|
||||
}
|
||||
dialog.modal-fs {
|
||||
padding: 0;
|
||||
}
|
||||
dialog.modal-fs > article {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: space-between;
|
||||
width: 100vw;
|
||||
max-width: 100vw;
|
||||
height: 100vh;
|
||||
max-height: 100vh;
|
||||
margin: 0;
|
||||
overflow-y: auto;
|
||||
}
|
||||
dialog.modal-fs > article > footer {
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
margin-top: auto;
|
||||
}
|
||||
@media (max-width: 576px) {
|
||||
dialog:not(.modal-fs) > article {
|
||||
width: 95vw;
|
||||
}
|
||||
}
|
||||
|
||||
body:has(dialog[open]) {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
|
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
|
@ -3058,6 +3058,7 @@ main {
|
|||
background-color: var(--pico-form-element-background-color);
|
||||
color: var(--pico-form-element-placeholder-color);
|
||||
line-height: inherit;
|
||||
text-align: inherit;
|
||||
cursor: pointer;
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none;
|
||||
|
@ -3091,6 +3092,7 @@ main {
|
|||
left: 0;
|
||||
flex-direction: column;
|
||||
width: 100%;
|
||||
min-width: 200px;
|
||||
min-width: -moz-fit-content;
|
||||
min-width: fit-content;
|
||||
margin: 0;
|
||||
|
@ -3122,6 +3124,7 @@ main {
|
|||
margin-bottom: calc(var(--pico-form-element-spacing-vertical) * 0.5);
|
||||
}
|
||||
.pico details.dropdown > summary + ul li details {
|
||||
width: 100%;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
.pico details.dropdown > summary + ul li details > summary {
|
||||
|
@ -3643,6 +3646,47 @@ main {
|
|||
touch-action: auto;
|
||||
}
|
||||
|
||||
dialog.modal-sm > article {
|
||||
width: 90vw;
|
||||
max-width: 400px;
|
||||
}
|
||||
dialog.modal-md > article {
|
||||
width: 90vw;
|
||||
max-width: 600px;
|
||||
}
|
||||
dialog.modal-lg > article {
|
||||
width: 90vw;
|
||||
max-width: 800px;
|
||||
}
|
||||
dialog.modal-xlg > article {
|
||||
width: 95vw;
|
||||
max-width: 1000px;
|
||||
}
|
||||
dialog.modal-fs {
|
||||
padding: 0;
|
||||
}
|
||||
dialog.modal-fs > article {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: space-between;
|
||||
width: 100vw;
|
||||
max-width: 100vw;
|
||||
height: 100vh;
|
||||
max-height: 100vh;
|
||||
margin: 0;
|
||||
overflow-y: auto;
|
||||
}
|
||||
dialog.modal-fs > article > footer {
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
margin-top: auto;
|
||||
}
|
||||
@media (max-width: 576px) {
|
||||
dialog:not(.modal-fs) > article {
|
||||
width: 95vw;
|
||||
}
|
||||
}
|
||||
|
||||
body:has(dialog[open]) {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
|
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
|
@ -3058,6 +3058,7 @@ main {
|
|||
background-color: var(--pico-form-element-background-color);
|
||||
color: var(--pico-form-element-placeholder-color);
|
||||
line-height: inherit;
|
||||
text-align: inherit;
|
||||
cursor: pointer;
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none;
|
||||
|
@ -3091,6 +3092,7 @@ main {
|
|||
left: 0;
|
||||
flex-direction: column;
|
||||
width: 100%;
|
||||
min-width: 200px;
|
||||
min-width: -moz-fit-content;
|
||||
min-width: fit-content;
|
||||
margin: 0;
|
||||
|
@ -3122,6 +3124,7 @@ main {
|
|||
margin-bottom: calc(var(--pico-form-element-spacing-vertical) * 0.5);
|
||||
}
|
||||
.pico details.dropdown > summary + ul li details {
|
||||
width: 100%;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
.pico details.dropdown > summary + ul li details > summary {
|
||||
|
@ -3643,6 +3646,47 @@ main {
|
|||
touch-action: auto;
|
||||
}
|
||||
|
||||
dialog.modal-sm > article {
|
||||
width: 90vw;
|
||||
max-width: 400px;
|
||||
}
|
||||
dialog.modal-md > article {
|
||||
width: 90vw;
|
||||
max-width: 600px;
|
||||
}
|
||||
dialog.modal-lg > article {
|
||||
width: 90vw;
|
||||
max-width: 800px;
|
||||
}
|
||||
dialog.modal-xlg > article {
|
||||
width: 95vw;
|
||||
max-width: 1000px;
|
||||
}
|
||||
dialog.modal-fs {
|
||||
padding: 0;
|
||||
}
|
||||
dialog.modal-fs > article {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: space-between;
|
||||
width: 100vw;
|
||||
max-width: 100vw;
|
||||
height: 100vh;
|
||||
max-height: 100vh;
|
||||
margin: 0;
|
||||
overflow-y: auto;
|
||||
}
|
||||
dialog.modal-fs > article > footer {
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
margin-top: auto;
|
||||
}
|
||||
@media (max-width: 576px) {
|
||||
dialog:not(.modal-fs) > article {
|
||||
width: 95vw;
|
||||
}
|
||||
}
|
||||
|
||||
body:has(dialog[open]) {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
|
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
|
@ -3058,6 +3058,7 @@ main {
|
|||
background-color: var(--pico-form-element-background-color);
|
||||
color: var(--pico-form-element-placeholder-color);
|
||||
line-height: inherit;
|
||||
text-align: inherit;
|
||||
cursor: pointer;
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none;
|
||||
|
@ -3091,6 +3092,7 @@ main {
|
|||
left: 0;
|
||||
flex-direction: column;
|
||||
width: 100%;
|
||||
min-width: 200px;
|
||||
min-width: -moz-fit-content;
|
||||
min-width: fit-content;
|
||||
margin: 0;
|
||||
|
@ -3122,6 +3124,7 @@ main {
|
|||
margin-bottom: calc(var(--pico-form-element-spacing-vertical) * 0.5);
|
||||
}
|
||||
.pico details.dropdown > summary + ul li details {
|
||||
width: 100%;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
.pico details.dropdown > summary + ul li details > summary {
|
||||
|
@ -3643,6 +3646,47 @@ main {
|
|||
touch-action: auto;
|
||||
}
|
||||
|
||||
dialog.modal-sm > article {
|
||||
width: 90vw;
|
||||
max-width: 400px;
|
||||
}
|
||||
dialog.modal-md > article {
|
||||
width: 90vw;
|
||||
max-width: 600px;
|
||||
}
|
||||
dialog.modal-lg > article {
|
||||
width: 90vw;
|
||||
max-width: 800px;
|
||||
}
|
||||
dialog.modal-xlg > article {
|
||||
width: 95vw;
|
||||
max-width: 1000px;
|
||||
}
|
||||
dialog.modal-fs {
|
||||
padding: 0;
|
||||
}
|
||||
dialog.modal-fs > article {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: space-between;
|
||||
width: 100vw;
|
||||
max-width: 100vw;
|
||||
height: 100vh;
|
||||
max-height: 100vh;
|
||||
margin: 0;
|
||||
overflow-y: auto;
|
||||
}
|
||||
dialog.modal-fs > article > footer {
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
margin-top: auto;
|
||||
}
|
||||
@media (max-width: 576px) {
|
||||
dialog:not(.modal-fs) > article {
|
||||
width: 95vw;
|
||||
}
|
||||
}
|
||||
|
||||
body:has(dialog[open]) {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
|
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
|
@ -3058,6 +3058,7 @@ main {
|
|||
background-color: var(--pico-form-element-background-color);
|
||||
color: var(--pico-form-element-placeholder-color);
|
||||
line-height: inherit;
|
||||
text-align: inherit;
|
||||
cursor: pointer;
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none;
|
||||
|
@ -3091,6 +3092,7 @@ main {
|
|||
left: 0;
|
||||
flex-direction: column;
|
||||
width: 100%;
|
||||
min-width: 200px;
|
||||
min-width: -moz-fit-content;
|
||||
min-width: fit-content;
|
||||
margin: 0;
|
||||
|
@ -3122,6 +3124,7 @@ main {
|
|||
margin-bottom: calc(var(--pico-form-element-spacing-vertical) * 0.5);
|
||||
}
|
||||
.pico details.dropdown > summary + ul li details {
|
||||
width: 100%;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
.pico details.dropdown > summary + ul li details > summary {
|
||||
|
@ -3643,6 +3646,47 @@ main {
|
|||
touch-action: auto;
|
||||
}
|
||||
|
||||
dialog.modal-sm > article {
|
||||
width: 90vw;
|
||||
max-width: 400px;
|
||||
}
|
||||
dialog.modal-md > article {
|
||||
width: 90vw;
|
||||
max-width: 600px;
|
||||
}
|
||||
dialog.modal-lg > article {
|
||||
width: 90vw;
|
||||
max-width: 800px;
|
||||
}
|
||||
dialog.modal-xlg > article {
|
||||
width: 95vw;
|
||||
max-width: 1000px;
|
||||
}
|
||||
dialog.modal-fs {
|
||||
padding: 0;
|
||||
}
|
||||
dialog.modal-fs > article {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: space-between;
|
||||
width: 100vw;
|
||||
max-width: 100vw;
|
||||
height: 100vh;
|
||||
max-height: 100vh;
|
||||
margin: 0;
|
||||
overflow-y: auto;
|
||||
}
|
||||
dialog.modal-fs > article > footer {
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
margin-top: auto;
|
||||
}
|
||||
@media (max-width: 576px) {
|
||||
dialog:not(.modal-fs) > article {
|
||||
width: 95vw;
|
||||
}
|
||||
}
|
||||
|
||||
body:has(dialog[open]) {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
|
2
css/pico.conditional.lime.min.css
vendored
2
css/pico.conditional.lime.min.css
vendored
File diff suppressed because one or more lines are too long
2
css/pico.conditional.min.css
vendored
2
css/pico.conditional.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -3058,6 +3058,7 @@ main {
|
|||
background-color: var(--pico-form-element-background-color);
|
||||
color: var(--pico-form-element-placeholder-color);
|
||||
line-height: inherit;
|
||||
text-align: inherit;
|
||||
cursor: pointer;
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none;
|
||||
|
@ -3091,6 +3092,7 @@ main {
|
|||
left: 0;
|
||||
flex-direction: column;
|
||||
width: 100%;
|
||||
min-width: 200px;
|
||||
min-width: -moz-fit-content;
|
||||
min-width: fit-content;
|
||||
margin: 0;
|
||||
|
@ -3122,6 +3124,7 @@ main {
|
|||
margin-bottom: calc(var(--pico-form-element-spacing-vertical) * 0.5);
|
||||
}
|
||||
.pico details.dropdown > summary + ul li details {
|
||||
width: 100%;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
.pico details.dropdown > summary + ul li details > summary {
|
||||
|
@ -3643,6 +3646,47 @@ main {
|
|||
touch-action: auto;
|
||||
}
|
||||
|
||||
dialog.modal-sm > article {
|
||||
width: 90vw;
|
||||
max-width: 400px;
|
||||
}
|
||||
dialog.modal-md > article {
|
||||
width: 90vw;
|
||||
max-width: 600px;
|
||||
}
|
||||
dialog.modal-lg > article {
|
||||
width: 90vw;
|
||||
max-width: 800px;
|
||||
}
|
||||
dialog.modal-xlg > article {
|
||||
width: 95vw;
|
||||
max-width: 1000px;
|
||||
}
|
||||
dialog.modal-fs {
|
||||
padding: 0;
|
||||
}
|
||||
dialog.modal-fs > article {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: space-between;
|
||||
width: 100vw;
|
||||
max-width: 100vw;
|
||||
height: 100vh;
|
||||
max-height: 100vh;
|
||||
margin: 0;
|
||||
overflow-y: auto;
|
||||
}
|
||||
dialog.modal-fs > article > footer {
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
margin-top: auto;
|
||||
}
|
||||
@media (max-width: 576px) {
|
||||
dialog:not(.modal-fs) > article {
|
||||
width: 95vw;
|
||||
}
|
||||
}
|
||||
|
||||
body:has(dialog[open]) {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
|
2
css/pico.conditional.orange.min.css
vendored
2
css/pico.conditional.orange.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -3058,6 +3058,7 @@ main {
|
|||
background-color: var(--pico-form-element-background-color);
|
||||
color: var(--pico-form-element-placeholder-color);
|
||||
line-height: inherit;
|
||||
text-align: inherit;
|
||||
cursor: pointer;
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none;
|
||||
|
@ -3091,6 +3092,7 @@ main {
|
|||
left: 0;
|
||||
flex-direction: column;
|
||||
width: 100%;
|
||||
min-width: 200px;
|
||||
min-width: -moz-fit-content;
|
||||
min-width: fit-content;
|
||||
margin: 0;
|
||||
|
@ -3122,6 +3124,7 @@ main {
|
|||
margin-bottom: calc(var(--pico-form-element-spacing-vertical) * 0.5);
|
||||
}
|
||||
.pico details.dropdown > summary + ul li details {
|
||||
width: 100%;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
.pico details.dropdown > summary + ul li details > summary {
|
||||
|
@ -3643,6 +3646,47 @@ main {
|
|||
touch-action: auto;
|
||||
}
|
||||
|
||||
dialog.modal-sm > article {
|
||||
width: 90vw;
|
||||
max-width: 400px;
|
||||
}
|
||||
dialog.modal-md > article {
|
||||
width: 90vw;
|
||||
max-width: 600px;
|
||||
}
|
||||
dialog.modal-lg > article {
|
||||
width: 90vw;
|
||||
max-width: 800px;
|
||||
}
|
||||
dialog.modal-xlg > article {
|
||||
width: 95vw;
|
||||
max-width: 1000px;
|
||||
}
|
||||
dialog.modal-fs {
|
||||
padding: 0;
|
||||
}
|
||||
dialog.modal-fs > article {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: space-between;
|
||||
width: 100vw;
|
||||
max-width: 100vw;
|
||||
height: 100vh;
|
||||
max-height: 100vh;
|
||||
margin: 0;
|
||||
overflow-y: auto;
|
||||
}
|
||||
dialog.modal-fs > article > footer {
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
margin-top: auto;
|
||||
}
|
||||
@media (max-width: 576px) {
|
||||
dialog:not(.modal-fs) > article {
|
||||
width: 95vw;
|
||||
}
|
||||
}
|
||||
|
||||
body:has(dialog[open]) {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
|
2
css/pico.conditional.pink.min.css
vendored
2
css/pico.conditional.pink.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -3058,6 +3058,7 @@ main {
|
|||
background-color: var(--pico-form-element-background-color);
|
||||
color: var(--pico-form-element-placeholder-color);
|
||||
line-height: inherit;
|
||||
text-align: inherit;
|
||||
cursor: pointer;
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none;
|
||||
|
@ -3091,6 +3092,7 @@ main {
|
|||
left: 0;
|
||||
flex-direction: column;
|
||||
width: 100%;
|
||||
min-width: 200px;
|
||||
min-width: -moz-fit-content;
|
||||
min-width: fit-content;
|
||||
margin: 0;
|
||||
|
@ -3122,6 +3124,7 @@ main {
|
|||
margin-bottom: calc(var(--pico-form-element-spacing-vertical) * 0.5);
|
||||
}
|
||||
.pico details.dropdown > summary + ul li details {
|
||||
width: 100%;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
.pico details.dropdown > summary + ul li details > summary {
|
||||
|
@ -3643,6 +3646,47 @@ main {
|
|||
touch-action: auto;
|
||||
}
|
||||
|
||||
dialog.modal-sm > article {
|
||||
width: 90vw;
|
||||
max-width: 400px;
|
||||
}
|
||||
dialog.modal-md > article {
|
||||
width: 90vw;
|
||||
max-width: 600px;
|
||||
}
|
||||
dialog.modal-lg > article {
|
||||
width: 90vw;
|
||||
max-width: 800px;
|
||||
}
|
||||
dialog.modal-xlg > article {
|
||||
width: 95vw;
|
||||
max-width: 1000px;
|
||||
}
|
||||
dialog.modal-fs {
|
||||
padding: 0;
|
||||
}
|
||||
dialog.modal-fs > article {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: space-between;
|
||||
width: 100vw;
|
||||
max-width: 100vw;
|
||||
height: 100vh;
|
||||
max-height: 100vh;
|
||||
margin: 0;
|
||||
overflow-y: auto;
|
||||
}
|
||||
dialog.modal-fs > article > footer {
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
margin-top: auto;
|
||||
}
|
||||
@media (max-width: 576px) {
|
||||
dialog:not(.modal-fs) > article {
|
||||
width: 95vw;
|
||||
}
|
||||
}
|
||||
|
||||
body:has(dialog[open]) {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
|
2
css/pico.conditional.pumpkin.min.css
vendored
2
css/pico.conditional.pumpkin.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -3058,6 +3058,7 @@ main {
|
|||
background-color: var(--pico-form-element-background-color);
|
||||
color: var(--pico-form-element-placeholder-color);
|
||||
line-height: inherit;
|
||||
text-align: inherit;
|
||||
cursor: pointer;
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none;
|
||||
|
@ -3091,6 +3092,7 @@ main {
|
|||
left: 0;
|
||||
flex-direction: column;
|
||||
width: 100%;
|
||||
min-width: 200px;
|
||||
min-width: -moz-fit-content;
|
||||
min-width: fit-content;
|
||||
margin: 0;
|
||||
|
@ -3122,6 +3124,7 @@ main {
|
|||
margin-bottom: calc(var(--pico-form-element-spacing-vertical) * 0.5);
|
||||
}
|
||||
.pico details.dropdown > summary + ul li details {
|
||||
width: 100%;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
.pico details.dropdown > summary + ul li details > summary {
|
||||
|
@ -3643,6 +3646,47 @@ main {
|
|||
touch-action: auto;
|
||||
}
|
||||
|
||||
dialog.modal-sm > article {
|
||||
width: 90vw;
|
||||
max-width: 400px;
|
||||
}
|
||||
dialog.modal-md > article {
|
||||
width: 90vw;
|
||||
max-width: 600px;
|
||||
}
|
||||
dialog.modal-lg > article {
|
||||
width: 90vw;
|
||||
max-width: 800px;
|
||||
}
|
||||
dialog.modal-xlg > article {
|
||||
width: 95vw;
|
||||
max-width: 1000px;
|
||||
}
|
||||
dialog.modal-fs {
|
||||
padding: 0;
|
||||
}
|
||||
dialog.modal-fs > article {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: space-between;
|
||||
width: 100vw;
|
||||
max-width: 100vw;
|
||||
height: 100vh;
|
||||
max-height: 100vh;
|
||||
margin: 0;
|
||||
overflow-y: auto;
|
||||
}
|
||||
dialog.modal-fs > article > footer {
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
margin-top: auto;
|
||||
}
|
||||
@media (max-width: 576px) {
|
||||
dialog:not(.modal-fs) > article {
|
||||
width: 95vw;
|
||||
}
|
||||
}
|
||||
|
||||
body:has(dialog[open]) {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
|
2
css/pico.conditional.purple.min.css
vendored
2
css/pico.conditional.purple.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -3058,6 +3058,7 @@ main {
|
|||
background-color: var(--pico-form-element-background-color);
|
||||
color: var(--pico-form-element-placeholder-color);
|
||||
line-height: inherit;
|
||||
text-align: inherit;
|
||||
cursor: pointer;
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none;
|
||||
|
@ -3091,6 +3092,7 @@ main {
|
|||
left: 0;
|
||||
flex-direction: column;
|
||||
width: 100%;
|
||||
min-width: 200px;
|
||||
min-width: -moz-fit-content;
|
||||
min-width: fit-content;
|
||||
margin: 0;
|
||||
|
@ -3122,6 +3124,7 @@ main {
|
|||
margin-bottom: calc(var(--pico-form-element-spacing-vertical) * 0.5);
|
||||
}
|
||||
.pico details.dropdown > summary + ul li details {
|
||||
width: 100%;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
.pico details.dropdown > summary + ul li details > summary {
|
||||
|
@ -3643,6 +3646,47 @@ main {
|
|||
touch-action: auto;
|
||||
}
|
||||
|
||||
dialog.modal-sm > article {
|
||||
width: 90vw;
|
||||
max-width: 400px;
|
||||
}
|
||||
dialog.modal-md > article {
|
||||
width: 90vw;
|
||||
max-width: 600px;
|
||||
}
|
||||
dialog.modal-lg > article {
|
||||
width: 90vw;
|
||||
max-width: 800px;
|
||||
}
|
||||
dialog.modal-xlg > article {
|
||||
width: 95vw;
|
||||
max-width: 1000px;
|
||||
}
|
||||
dialog.modal-fs {
|
||||
padding: 0;
|
||||
}
|
||||
dialog.modal-fs > article {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: space-between;
|
||||
width: 100vw;
|
||||
max-width: 100vw;
|
||||
height: 100vh;
|
||||
max-height: 100vh;
|
||||
margin: 0;
|
||||
overflow-y: auto;
|
||||
}
|
||||
dialog.modal-fs > article > footer {
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
margin-top: auto;
|
||||
}
|
||||
@media (max-width: 576px) {
|
||||
dialog:not(.modal-fs) > article {
|
||||
width: 95vw;
|
||||
}
|
||||
}
|
||||
|
||||
body:has(dialog[open]) {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
|
2
css/pico.conditional.red.min.css
vendored
2
css/pico.conditional.red.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -3058,6 +3058,7 @@ main {
|
|||
background-color: var(--pico-form-element-background-color);
|
||||
color: var(--pico-form-element-placeholder-color);
|
||||
line-height: inherit;
|
||||
text-align: inherit;
|
||||
cursor: pointer;
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none;
|
||||
|
@ -3091,6 +3092,7 @@ main {
|
|||
left: 0;
|
||||
flex-direction: column;
|
||||
width: 100%;
|
||||
min-width: 200px;
|
||||
min-width: -moz-fit-content;
|
||||
min-width: fit-content;
|
||||
margin: 0;
|
||||
|
@ -3122,6 +3124,7 @@ main {
|
|||
margin-bottom: calc(var(--pico-form-element-spacing-vertical) * 0.5);
|
||||
}
|
||||
.pico details.dropdown > summary + ul li details {
|
||||
width: 100%;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
.pico details.dropdown > summary + ul li details > summary {
|
||||
|
@ -3643,6 +3646,47 @@ main {
|
|||
touch-action: auto;
|
||||
}
|
||||
|
||||
dialog.modal-sm > article {
|
||||
width: 90vw;
|
||||
max-width: 400px;
|
||||
}
|
||||
dialog.modal-md > article {
|
||||
width: 90vw;
|
||||
max-width: 600px;
|
||||
}
|
||||
dialog.modal-lg > article {
|
||||
width: 90vw;
|
||||
max-width: 800px;
|
||||
}
|
||||
dialog.modal-xlg > article {
|
||||
width: 95vw;
|
||||
max-width: 1000px;
|
||||
}
|
||||
dialog.modal-fs {
|
||||
padding: 0;
|
||||
}
|
||||
dialog.modal-fs > article {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: space-between;
|
||||
width: 100vw;
|
||||
max-width: 100vw;
|
||||
height: 100vh;
|
||||
max-height: 100vh;
|
||||
margin: 0;
|
||||
overflow-y: auto;
|
||||
}
|
||||
dialog.modal-fs > article > footer {
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
margin-top: auto;
|
||||
}
|
||||
@media (max-width: 576px) {
|
||||
dialog:not(.modal-fs) > article {
|
||||
width: 95vw;
|
||||
}
|
||||
}
|
||||
|
||||
body:has(dialog[open]) {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
|
2
css/pico.conditional.sand.min.css
vendored
2
css/pico.conditional.sand.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -3058,6 +3058,7 @@ main {
|
|||
background-color: var(--pico-form-element-background-color);
|
||||
color: var(--pico-form-element-placeholder-color);
|
||||
line-height: inherit;
|
||||
text-align: inherit;
|
||||
cursor: pointer;
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none;
|
||||
|
@ -3091,6 +3092,7 @@ main {
|
|||
left: 0;
|
||||
flex-direction: column;
|
||||
width: 100%;
|
||||
min-width: 200px;
|
||||
min-width: -moz-fit-content;
|
||||
min-width: fit-content;
|
||||
margin: 0;
|
||||
|
@ -3122,6 +3124,7 @@ main {
|
|||
margin-bottom: calc(var(--pico-form-element-spacing-vertical) * 0.5);
|
||||
}
|
||||
.pico details.dropdown > summary + ul li details {
|
||||
width: 100%;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
.pico details.dropdown > summary + ul li details > summary {
|
||||
|
@ -3643,6 +3646,47 @@ main {
|
|||
touch-action: auto;
|
||||
}
|
||||
|
||||
dialog.modal-sm > article {
|
||||
width: 90vw;
|
||||
max-width: 400px;
|
||||
}
|
||||
dialog.modal-md > article {
|
||||
width: 90vw;
|
||||
max-width: 600px;
|
||||
}
|
||||
dialog.modal-lg > article {
|
||||
width: 90vw;
|
||||
max-width: 800px;
|
||||
}
|
||||
dialog.modal-xlg > article {
|
||||
width: 95vw;
|
||||
max-width: 1000px;
|
||||
}
|
||||
dialog.modal-fs {
|
||||
padding: 0;
|
||||
}
|
||||
dialog.modal-fs > article {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: space-between;
|
||||
width: 100vw;
|
||||
max-width: 100vw;
|
||||
height: 100vh;
|
||||
max-height: 100vh;
|
||||
margin: 0;
|
||||
overflow-y: auto;
|
||||
}
|
||||
dialog.modal-fs > article > footer {
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
margin-top: auto;
|
||||
}
|
||||
@media (max-width: 576px) {
|
||||
dialog:not(.modal-fs) > article {
|
||||
width: 95vw;
|
||||
}
|
||||
}
|
||||
|
||||
body:has(dialog[open]) {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
|
2
css/pico.conditional.slate.min.css
vendored
2
css/pico.conditional.slate.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -3058,6 +3058,7 @@ main {
|
|||
background-color: var(--pico-form-element-background-color);
|
||||
color: var(--pico-form-element-placeholder-color);
|
||||
line-height: inherit;
|
||||
text-align: inherit;
|
||||
cursor: pointer;
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none;
|
||||
|
@ -3091,6 +3092,7 @@ main {
|
|||
left: 0;
|
||||
flex-direction: column;
|
||||
width: 100%;
|
||||
min-width: 200px;
|
||||
min-width: -moz-fit-content;
|
||||
min-width: fit-content;
|
||||
margin: 0;
|
||||
|
@ -3122,6 +3124,7 @@ main {
|
|||
margin-bottom: calc(var(--pico-form-element-spacing-vertical) * 0.5);
|
||||
}
|
||||
.pico details.dropdown > summary + ul li details {
|
||||
width: 100%;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
.pico details.dropdown > summary + ul li details > summary {
|
||||
|
@ -3643,6 +3646,47 @@ main {
|
|||
touch-action: auto;
|
||||
}
|
||||
|
||||
dialog.modal-sm > article {
|
||||
width: 90vw;
|
||||
max-width: 400px;
|
||||
}
|
||||
dialog.modal-md > article {
|
||||
width: 90vw;
|
||||
max-width: 600px;
|
||||
}
|
||||
dialog.modal-lg > article {
|
||||
width: 90vw;
|
||||
max-width: 800px;
|
||||
}
|
||||
dialog.modal-xlg > article {
|
||||
width: 95vw;
|
||||
max-width: 1000px;
|
||||
}
|
||||
dialog.modal-fs {
|
||||
padding: 0;
|
||||
}
|
||||
dialog.modal-fs > article {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: space-between;
|
||||
width: 100vw;
|
||||
max-width: 100vw;
|
||||
height: 100vh;
|
||||
max-height: 100vh;
|
||||
margin: 0;
|
||||
overflow-y: auto;
|
||||
}
|
||||
dialog.modal-fs > article > footer {
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
margin-top: auto;
|
||||
}
|
||||
@media (max-width: 576px) {
|
||||
dialog:not(.modal-fs) > article {
|
||||
width: 95vw;
|
||||
}
|
||||
}
|
||||
|
||||
body:has(dialog[open]) {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
|
2
css/pico.conditional.violet.min.css
vendored
2
css/pico.conditional.violet.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -3058,6 +3058,7 @@ main {
|
|||
background-color: var(--pico-form-element-background-color);
|
||||
color: var(--pico-form-element-placeholder-color);
|
||||
line-height: inherit;
|
||||
text-align: inherit;
|
||||
cursor: pointer;
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none;
|
||||
|
@ -3091,6 +3092,7 @@ main {
|
|||
left: 0;
|
||||
flex-direction: column;
|
||||
width: 100%;
|
||||
min-width: 200px;
|
||||
min-width: -moz-fit-content;
|
||||
min-width: fit-content;
|
||||
margin: 0;
|
||||
|
@ -3122,6 +3124,7 @@ main {
|
|||
margin-bottom: calc(var(--pico-form-element-spacing-vertical) * 0.5);
|
||||
}
|
||||
.pico details.dropdown > summary + ul li details {
|
||||
width: 100%;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
.pico details.dropdown > summary + ul li details > summary {
|
||||
|
@ -3643,6 +3646,47 @@ main {
|
|||
touch-action: auto;
|
||||
}
|
||||
|
||||
dialog.modal-sm > article {
|
||||
width: 90vw;
|
||||
max-width: 400px;
|
||||
}
|
||||
dialog.modal-md > article {
|
||||
width: 90vw;
|
||||
max-width: 600px;
|
||||
}
|
||||
dialog.modal-lg > article {
|
||||
width: 90vw;
|
||||
max-width: 800px;
|
||||
}
|
||||
dialog.modal-xlg > article {
|
||||
width: 95vw;
|
||||
max-width: 1000px;
|
||||
}
|
||||
dialog.modal-fs {
|
||||
padding: 0;
|
||||
}
|
||||
dialog.modal-fs > article {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: space-between;
|
||||
width: 100vw;
|
||||
max-width: 100vw;
|
||||
height: 100vh;
|
||||
max-height: 100vh;
|
||||
margin: 0;
|
||||
overflow-y: auto;
|
||||
}
|
||||
dialog.modal-fs > article > footer {
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
margin-top: auto;
|
||||
}
|
||||
@media (max-width: 576px) {
|
||||
dialog:not(.modal-fs) > article {
|
||||
width: 95vw;
|
||||
}
|
||||
}
|
||||
|
||||
body:has(dialog[open]) {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
|
2
css/pico.conditional.yellow.min.css
vendored
2
css/pico.conditional.yellow.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -3058,6 +3058,7 @@ main {
|
|||
background-color: var(--pico-form-element-background-color);
|
||||
color: var(--pico-form-element-placeholder-color);
|
||||
line-height: inherit;
|
||||
text-align: inherit;
|
||||
cursor: pointer;
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none;
|
||||
|
@ -3091,6 +3092,7 @@ main {
|
|||
left: 0;
|
||||
flex-direction: column;
|
||||
width: 100%;
|
||||
min-width: 200px;
|
||||
min-width: -moz-fit-content;
|
||||
min-width: fit-content;
|
||||
margin: 0;
|
||||
|
@ -3122,6 +3124,7 @@ main {
|
|||
margin-bottom: calc(var(--pico-form-element-spacing-vertical) * 0.5);
|
||||
}
|
||||
.pico details.dropdown > summary + ul li details {
|
||||
width: 100%;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
.pico details.dropdown > summary + ul li details > summary {
|
||||
|
@ -3643,6 +3646,47 @@ main {
|
|||
touch-action: auto;
|
||||
}
|
||||
|
||||
dialog.modal-sm > article {
|
||||
width: 90vw;
|
||||
max-width: 400px;
|
||||
}
|
||||
dialog.modal-md > article {
|
||||
width: 90vw;
|
||||
max-width: 600px;
|
||||
}
|
||||
dialog.modal-lg > article {
|
||||
width: 90vw;
|
||||
max-width: 800px;
|
||||
}
|
||||
dialog.modal-xlg > article {
|
||||
width: 95vw;
|
||||
max-width: 1000px;
|
||||
}
|
||||
dialog.modal-fs {
|
||||
padding: 0;
|
||||
}
|
||||
dialog.modal-fs > article {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: space-between;
|
||||
width: 100vw;
|
||||
max-width: 100vw;
|
||||
height: 100vh;
|
||||
max-height: 100vh;
|
||||
margin: 0;
|
||||
overflow-y: auto;
|
||||
}
|
||||
dialog.modal-fs > article > footer {
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
margin-top: auto;
|
||||
}
|
||||
@media (max-width: 576px) {
|
||||
dialog:not(.modal-fs) > article {
|
||||
width: 95vw;
|
||||
}
|
||||
}
|
||||
|
||||
body:has(dialog[open]) {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
|
2
css/pico.conditional.zinc.min.css
vendored
2
css/pico.conditional.zinc.min.css
vendored
File diff suppressed because one or more lines are too long
86
css/pico.css
86
css/pico.css
|
@ -232,18 +232,18 @@ nav details.dropdown summary:focus-visible {
|
|||
color-scheme: light;
|
||||
--pico-background-color: #fff;
|
||||
--pico-color: #373c44;
|
||||
--pico-text-selection-color: rgba(205, 104, 224, 0.25);
|
||||
--pico-text-selection-color: rgba(247, 72, 183, 0.25);
|
||||
--pico-muted-color: #646b79;
|
||||
--pico-muted-border-color: rgb(231, 234, 239.5);
|
||||
--pico-primary: #aa40bf;
|
||||
--pico-primary-background: #9236a4;
|
||||
--pico-primary: #c1208b;
|
||||
--pico-primary-background: #c1208b;
|
||||
--pico-primary-border: var(--pico-primary-background);
|
||||
--pico-primary-underline: rgba(170, 64, 191, 0.5);
|
||||
--pico-primary-hover: #802e90;
|
||||
--pico-primary-hover-background: #802e90;
|
||||
--pico-primary-underline: rgba(193, 32, 139, 0.5);
|
||||
--pico-primary-hover: #98176d;
|
||||
--pico-primary-hover-background: #ac1c7c;
|
||||
--pico-primary-hover-border: var(--pico-primary-hover-background);
|
||||
--pico-primary-hover-underline: var(--pico-primary-hover);
|
||||
--pico-primary-focus: rgba(205, 104, 224, 0.5);
|
||||
--pico-primary-focus: rgba(247, 72, 183, 0.5);
|
||||
--pico-primary-inverse: #fff;
|
||||
--pico-secondary: #5d6b89;
|
||||
--pico-secondary-background: #525f7a;
|
||||
|
@ -387,18 +387,18 @@ nav details.dropdown summary:focus-visible {
|
|||
color-scheme: dark;
|
||||
--pico-background-color: rgb(19, 22.5, 30.5);
|
||||
--pico-color: #c2c7d0;
|
||||
--pico-text-selection-color: rgba(212, 125, 228, 0.1875);
|
||||
--pico-text-selection-color: rgba(248, 105, 191, 0.1875);
|
||||
--pico-muted-color: #7b8495;
|
||||
--pico-muted-border-color: #202632;
|
||||
--pico-primary: #d47de4;
|
||||
--pico-primary-background: #9236a4;
|
||||
--pico-primary: #f869bf;
|
||||
--pico-primary-background: #c1208b;
|
||||
--pico-primary-border: var(--pico-primary-background);
|
||||
--pico-primary-underline: rgba(212, 125, 228, 0.5);
|
||||
--pico-primary-hover: #e2a3eb;
|
||||
--pico-primary-hover-background: #aa40bf;
|
||||
--pico-primary-underline: rgba(248, 105, 191, 0.5);
|
||||
--pico-primary-hover: #fa9acf;
|
||||
--pico-primary-hover-background: #d9269d;
|
||||
--pico-primary-hover-border: var(--pico-primary-hover-background);
|
||||
--pico-primary-hover-underline: var(--pico-primary-hover);
|
||||
--pico-primary-focus: rgba(212, 125, 228, 0.375);
|
||||
--pico-primary-focus: rgba(248, 105, 191, 0.375);
|
||||
--pico-primary-inverse: #fff;
|
||||
--pico-secondary: #969eaf;
|
||||
--pico-secondary-background: #525f7a;
|
||||
|
@ -542,18 +542,18 @@ nav details.dropdown summary:focus-visible {
|
|||
color-scheme: dark;
|
||||
--pico-background-color: rgb(19, 22.5, 30.5);
|
||||
--pico-color: #c2c7d0;
|
||||
--pico-text-selection-color: rgba(212, 125, 228, 0.1875);
|
||||
--pico-text-selection-color: rgba(248, 105, 191, 0.1875);
|
||||
--pico-muted-color: #7b8495;
|
||||
--pico-muted-border-color: #202632;
|
||||
--pico-primary: #d47de4;
|
||||
--pico-primary-background: #9236a4;
|
||||
--pico-primary: #f869bf;
|
||||
--pico-primary-background: #c1208b;
|
||||
--pico-primary-border: var(--pico-primary-background);
|
||||
--pico-primary-underline: rgba(212, 125, 228, 0.5);
|
||||
--pico-primary-hover: #e2a3eb;
|
||||
--pico-primary-hover-background: #aa40bf;
|
||||
--pico-primary-underline: rgba(248, 105, 191, 0.5);
|
||||
--pico-primary-hover: #fa9acf;
|
||||
--pico-primary-hover-background: #d9269d;
|
||||
--pico-primary-hover-border: var(--pico-primary-hover-background);
|
||||
--pico-primary-hover-underline: var(--pico-primary-hover);
|
||||
--pico-primary-focus: rgba(212, 125, 228, 0.375);
|
||||
--pico-primary-focus: rgba(248, 105, 191, 0.375);
|
||||
--pico-primary-inverse: #fff;
|
||||
--pico-secondary: #969eaf;
|
||||
--pico-secondary-background: #525f7a;
|
||||
|
@ -3058,6 +3058,7 @@ details.dropdown > summary:not([role]) {
|
|||
background-color: var(--pico-form-element-background-color);
|
||||
color: var(--pico-form-element-placeholder-color);
|
||||
line-height: inherit;
|
||||
text-align: inherit;
|
||||
cursor: pointer;
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none;
|
||||
|
@ -3091,6 +3092,7 @@ details.dropdown > summary + ul {
|
|||
left: 0;
|
||||
flex-direction: column;
|
||||
width: 100%;
|
||||
min-width: 200px;
|
||||
min-width: -moz-fit-content;
|
||||
min-width: fit-content;
|
||||
margin: 0;
|
||||
|
@ -3122,6 +3124,7 @@ details.dropdown > summary + ul li:last-of-type {
|
|||
margin-bottom: calc(var(--pico-form-element-spacing-vertical) * 0.5);
|
||||
}
|
||||
details.dropdown > summary + ul li details {
|
||||
width: 100%;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
details.dropdown > summary + ul li details > summary {
|
||||
|
@ -3643,6 +3646,47 @@ dialog:not([open]) article, dialog[open=false] article {
|
|||
touch-action: auto;
|
||||
}
|
||||
|
||||
dialog.modal-sm > article {
|
||||
width: 90vw;
|
||||
max-width: 400px;
|
||||
}
|
||||
dialog.modal-md > article {
|
||||
width: 90vw;
|
||||
max-width: 600px;
|
||||
}
|
||||
dialog.modal-lg > article {
|
||||
width: 90vw;
|
||||
max-width: 800px;
|
||||
}
|
||||
dialog.modal-xlg > article {
|
||||
width: 95vw;
|
||||
max-width: 1000px;
|
||||
}
|
||||
dialog.modal-fs {
|
||||
padding: 0;
|
||||
}
|
||||
dialog.modal-fs > article {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: space-between;
|
||||
width: 100vw;
|
||||
max-width: 100vw;
|
||||
height: 100vh;
|
||||
max-height: 100vh;
|
||||
margin: 0;
|
||||
overflow-y: auto;
|
||||
}
|
||||
dialog.modal-fs > article > footer {
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
margin-top: auto;
|
||||
}
|
||||
@media (max-width: 576px) {
|
||||
dialog:not(.modal-fs) > article {
|
||||
width: 95vw;
|
||||
}
|
||||
}
|
||||
|
||||
body:has(dialog[open]) {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
|
|
@ -3058,6 +3058,7 @@ details.dropdown > summary:not([role]) {
|
|||
background-color: var(--pico-form-element-background-color);
|
||||
color: var(--pico-form-element-placeholder-color);
|
||||
line-height: inherit;
|
||||
text-align: inherit;
|
||||
cursor: pointer;
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none;
|
||||
|
@ -3091,6 +3092,7 @@ details.dropdown > summary + ul {
|
|||
left: 0;
|
||||
flex-direction: column;
|
||||
width: 100%;
|
||||
min-width: 200px;
|
||||
min-width: -moz-fit-content;
|
||||
min-width: fit-content;
|
||||
margin: 0;
|
||||
|
@ -3122,6 +3124,7 @@ details.dropdown > summary + ul li:last-of-type {
|
|||
margin-bottom: calc(var(--pico-form-element-spacing-vertical) * 0.5);
|
||||
}
|
||||
details.dropdown > summary + ul li details {
|
||||
width: 100%;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
details.dropdown > summary + ul li details > summary {
|
||||
|
@ -3643,6 +3646,47 @@ dialog:not([open]) article, dialog[open=false] article {
|
|||
touch-action: auto;
|
||||
}
|
||||
|
||||
dialog.modal-sm > article {
|
||||
width: 90vw;
|
||||
max-width: 400px;
|
||||
}
|
||||
dialog.modal-md > article {
|
||||
width: 90vw;
|
||||
max-width: 600px;
|
||||
}
|
||||
dialog.modal-lg > article {
|
||||
width: 90vw;
|
||||
max-width: 800px;
|
||||
}
|
||||
dialog.modal-xlg > article {
|
||||
width: 95vw;
|
||||
max-width: 1000px;
|
||||
}
|
||||
dialog.modal-fs {
|
||||
padding: 0;
|
||||
}
|
||||
dialog.modal-fs > article {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: space-between;
|
||||
width: 100vw;
|
||||
max-width: 100vw;
|
||||
height: 100vh;
|
||||
max-height: 100vh;
|
||||
margin: 0;
|
||||
overflow-y: auto;
|
||||
}
|
||||
dialog.modal-fs > article > footer {
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
margin-top: auto;
|
||||
}
|
||||
@media (max-width: 576px) {
|
||||
dialog:not(.modal-fs) > article {
|
||||
width: 95vw;
|
||||
}
|
||||
}
|
||||
|
||||
body:has(dialog[open]) {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
|
2
css/pico.cyan.min.css
vendored
2
css/pico.cyan.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -199,18 +199,18 @@ input:not([type=submit],
|
|||
color-scheme: light;
|
||||
--pico-background-color: #fff;
|
||||
--pico-color: #373c44;
|
||||
--pico-text-selection-color: rgba(0, 166, 110, 0.25);
|
||||
--pico-text-selection-color: rgba(244, 93, 44, 0.25);
|
||||
--pico-muted-color: #646b79;
|
||||
--pico-muted-border-color: rgb(231, 234, 239.5);
|
||||
--pico-primary: #007a50;
|
||||
--pico-primary-background: #007a50;
|
||||
--pico-primary: #bd3c13;
|
||||
--pico-primary-background: #d24317;
|
||||
--pico-primary-border: var(--pico-primary-background);
|
||||
--pico-primary-underline: rgba(0, 122, 80, 0.5);
|
||||
--pico-primary-hover: #005f3d;
|
||||
--pico-primary-hover-background: #006d46;
|
||||
--pico-primary-underline: rgba(189, 60, 19, 0.5);
|
||||
--pico-primary-hover: #942d0d;
|
||||
--pico-primary-hover-background: #bd3c13;
|
||||
--pico-primary-hover-border: var(--pico-primary-hover-background);
|
||||
--pico-primary-hover-underline: var(--pico-primary-hover);
|
||||
--pico-primary-focus: rgba(0, 166, 110, 0.5);
|
||||
--pico-primary-focus: rgba(244, 93, 44, 0.5);
|
||||
--pico-primary-inverse: #fff;
|
||||
--pico-secondary: #5d6b89;
|
||||
--pico-secondary-background: #525f7a;
|
||||
|
@ -339,18 +339,18 @@ input:not([type=submit],
|
|||
color-scheme: dark;
|
||||
--pico-background-color: rgb(19, 22.5, 30.5);
|
||||
--pico-color: #c2c7d0;
|
||||
--pico-text-selection-color: rgba(0, 180, 120, 0.1875);
|
||||
--pico-text-selection-color: rgba(245, 107, 61, 0.1875);
|
||||
--pico-muted-color: #7b8495;
|
||||
--pico-muted-border-color: #202632;
|
||||
--pico-primary: #00b478;
|
||||
--pico-primary-background: #007a50;
|
||||
--pico-primary: #f56b3d;
|
||||
--pico-primary-background: #d24317;
|
||||
--pico-primary-border: var(--pico-primary-background);
|
||||
--pico-primary-underline: rgba(0, 180, 120, 0.5);
|
||||
--pico-primary-hover: #00cc88;
|
||||
--pico-primary-hover-background: #00895a;
|
||||
--pico-primary-underline: rgba(245, 107, 61, 0.5);
|
||||
--pico-primary-hover: #f8a283;
|
||||
--pico-primary-hover-background: #e74b1a;
|
||||
--pico-primary-hover-border: var(--pico-primary-hover-background);
|
||||
--pico-primary-hover-underline: var(--pico-primary-hover);
|
||||
--pico-primary-focus: rgba(0, 180, 120, 0.375);
|
||||
--pico-primary-focus: rgba(245, 107, 61, 0.375);
|
||||
--pico-primary-inverse: #fff;
|
||||
--pico-secondary: #969eaf;
|
||||
--pico-secondary-background: #525f7a;
|
||||
|
@ -469,18 +469,18 @@ input:not([type=submit],
|
|||
color-scheme: dark;
|
||||
--pico-background-color: rgb(19, 22.5, 30.5);
|
||||
--pico-color: #c2c7d0;
|
||||
--pico-text-selection-color: rgba(0, 180, 120, 0.1875);
|
||||
--pico-text-selection-color: rgba(245, 107, 61, 0.1875);
|
||||
--pico-muted-color: #7b8495;
|
||||
--pico-muted-border-color: #202632;
|
||||
--pico-primary: #00b478;
|
||||
--pico-primary-background: #007a50;
|
||||
--pico-primary: #f56b3d;
|
||||
--pico-primary-background: #d24317;
|
||||
--pico-primary-border: var(--pico-primary-background);
|
||||
--pico-primary-underline: rgba(0, 180, 120, 0.5);
|
||||
--pico-primary-hover: #00cc88;
|
||||
--pico-primary-hover-background: #00895a;
|
||||
--pico-primary-underline: rgba(245, 107, 61, 0.5);
|
||||
--pico-primary-hover: #f8a283;
|
||||
--pico-primary-hover-background: #e74b1a;
|
||||
--pico-primary-hover-border: var(--pico-primary-hover-background);
|
||||
--pico-primary-hover-underline: var(--pico-primary-hover);
|
||||
--pico-primary-focus: rgba(0, 180, 120, 0.375);
|
||||
--pico-primary-focus: rgba(245, 107, 61, 0.375);
|
||||
--pico-primary-inverse: #fff;
|
||||
--pico-secondary: #969eaf;
|
||||
--pico-secondary-background: #525f7a;
|
||||
|
|
2
css/pico.fluid.classless.conditional.min.css
vendored
2
css/pico.fluid.classless.conditional.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -199,18 +199,18 @@ input:not([type=submit],
|
|||
color-scheme: light;
|
||||
--pico-background-color: #fff;
|
||||
--pico-color: #373c44;
|
||||
--pico-text-selection-color: rgba(148, 134, 225, 0.25);
|
||||
--pico-text-selection-color: rgba(167, 128, 212, 0.25);
|
||||
--pico-muted-color: #646b79;
|
||||
--pico-muted-border-color: rgb(231, 234, 239.5);
|
||||
--pico-primary: #655cd6;
|
||||
--pico-primary-background: #524ed2;
|
||||
--pico-primary: #8352c5;
|
||||
--pico-primary-background: #7540bf;
|
||||
--pico-primary-border: var(--pico-primary-background);
|
||||
--pico-primary-underline: rgba(101, 92, 214, 0.5);
|
||||
--pico-primary-hover: #4040bf;
|
||||
--pico-primary-hover-background: #4040bf;
|
||||
--pico-primary-underline: rgba(131, 82, 197, 0.5);
|
||||
--pico-primary-hover: #6935b3;
|
||||
--pico-primary-hover-background: #6935b3;
|
||||
--pico-primary-hover-border: var(--pico-primary-hover-background);
|
||||
--pico-primary-hover-underline: var(--pico-primary-hover);
|
||||
--pico-primary-focus: rgba(148, 134, 225, 0.5);
|
||||
--pico-primary-focus: rgba(167, 128, 212, 0.5);
|
||||
--pico-primary-inverse: #fff;
|
||||
--pico-secondary: #5d6b89;
|
||||
--pico-secondary-background: #525f7a;
|
||||
|
@ -339,18 +339,18 @@ input:not([type=submit],
|
|||
color-scheme: dark;
|
||||
--pico-background-color: rgb(19, 22.5, 30.5);
|
||||
--pico-color: #c2c7d0;
|
||||
--pico-text-selection-color: rgba(162, 148, 229, 0.1875);
|
||||
--pico-text-selection-color: rgba(178, 144, 217, 0.1875);
|
||||
--pico-muted-color: #7b8495;
|
||||
--pico-muted-border-color: #202632;
|
||||
--pico-primary: #a294e5;
|
||||
--pico-primary-background: #524ed2;
|
||||
--pico-primary: #b290d9;
|
||||
--pico-primary-background: #7540bf;
|
||||
--pico-primary-border: var(--pico-primary-background);
|
||||
--pico-primary-underline: rgba(162, 148, 229, 0.5);
|
||||
--pico-primary-hover: #bdb2ec;
|
||||
--pico-primary-hover-background: #655cd6;
|
||||
--pico-primary-underline: rgba(178, 144, 217, 0.5);
|
||||
--pico-primary-hover: #c9afe4;
|
||||
--pico-primary-hover-background: #8352c5;
|
||||
--pico-primary-hover-border: var(--pico-primary-hover-background);
|
||||
--pico-primary-hover-underline: var(--pico-primary-hover);
|
||||
--pico-primary-focus: rgba(162, 148, 229, 0.375);
|
||||
--pico-primary-focus: rgba(178, 144, 217, 0.375);
|
||||
--pico-primary-inverse: #fff;
|
||||
--pico-secondary: #969eaf;
|
||||
--pico-secondary-background: #525f7a;
|
||||
|
@ -469,18 +469,18 @@ input:not([type=submit],
|
|||
color-scheme: dark;
|
||||
--pico-background-color: rgb(19, 22.5, 30.5);
|
||||
--pico-color: #c2c7d0;
|
||||
--pico-text-selection-color: rgba(162, 148, 229, 0.1875);
|
||||
--pico-text-selection-color: rgba(178, 144, 217, 0.1875);
|
||||
--pico-muted-color: #7b8495;
|
||||
--pico-muted-border-color: #202632;
|
||||
--pico-primary: #a294e5;
|
||||
--pico-primary-background: #524ed2;
|
||||
--pico-primary: #b290d9;
|
||||
--pico-primary-background: #7540bf;
|
||||
--pico-primary-border: var(--pico-primary-background);
|
||||
--pico-primary-underline: rgba(162, 148, 229, 0.5);
|
||||
--pico-primary-hover: #bdb2ec;
|
||||
--pico-primary-hover-background: #655cd6;
|
||||
--pico-primary-underline: rgba(178, 144, 217, 0.5);
|
||||
--pico-primary-hover: #c9afe4;
|
||||
--pico-primary-hover-background: #8352c5;
|
||||
--pico-primary-hover-border: var(--pico-primary-hover-background);
|
||||
--pico-primary-hover-underline: var(--pico-primary-hover);
|
||||
--pico-primary-focus: rgba(162, 148, 229, 0.375);
|
||||
--pico-primary-focus: rgba(178, 144, 217, 0.375);
|
||||
--pico-primary-inverse: #fff;
|
||||
--pico-secondary: #969eaf;
|
||||
--pico-secondary-background: #525f7a;
|
||||
|
|
2
css/pico.fluid.classless.min.css
vendored
2
css/pico.fluid.classless.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -3058,6 +3058,7 @@ details.dropdown > summary:not([role]) {
|
|||
background-color: var(--pico-form-element-background-color);
|
||||
color: var(--pico-form-element-placeholder-color);
|
||||
line-height: inherit;
|
||||
text-align: inherit;
|
||||
cursor: pointer;
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none;
|
||||
|
@ -3091,6 +3092,7 @@ details.dropdown > summary + ul {
|
|||
left: 0;
|
||||
flex-direction: column;
|
||||
width: 100%;
|
||||
min-width: 200px;
|
||||
min-width: -moz-fit-content;
|
||||
min-width: fit-content;
|
||||
margin: 0;
|
||||
|
@ -3122,6 +3124,7 @@ details.dropdown > summary + ul li:last-of-type {
|
|||
margin-bottom: calc(var(--pico-form-element-spacing-vertical) * 0.5);
|
||||
}
|
||||
details.dropdown > summary + ul li details {
|
||||
width: 100%;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
details.dropdown > summary + ul li details > summary {
|
||||
|
@ -3643,6 +3646,47 @@ dialog:not([open]) article, dialog[open=false] article {
|
|||
touch-action: auto;
|
||||
}
|
||||
|
||||
dialog.modal-sm > article {
|
||||
width: 90vw;
|
||||
max-width: 400px;
|
||||
}
|
||||
dialog.modal-md > article {
|
||||
width: 90vw;
|
||||
max-width: 600px;
|
||||
}
|
||||
dialog.modal-lg > article {
|
||||
width: 90vw;
|
||||
max-width: 800px;
|
||||
}
|
||||
dialog.modal-xlg > article {
|
||||
width: 95vw;
|
||||
max-width: 1000px;
|
||||
}
|
||||
dialog.modal-fs {
|
||||
padding: 0;
|
||||
}
|
||||
dialog.modal-fs > article {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: space-between;
|
||||
width: 100vw;
|
||||
max-width: 100vw;
|
||||
height: 100vh;
|
||||
max-height: 100vh;
|
||||
margin: 0;
|
||||
overflow-y: auto;
|
||||
}
|
||||
dialog.modal-fs > article > footer {
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
margin-top: auto;
|
||||
}
|
||||
@media (max-width: 576px) {
|
||||
dialog:not(.modal-fs) > article {
|
||||
width: 95vw;
|
||||
}
|
||||
}
|
||||
|
||||
body:has(dialog[open]) {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
|
2
css/pico.fuchsia.min.css
vendored
2
css/pico.fuchsia.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -3058,6 +3058,7 @@ details.dropdown > summary:not([role]) {
|
|||
background-color: var(--pico-form-element-background-color);
|
||||
color: var(--pico-form-element-placeholder-color);
|
||||
line-height: inherit;
|
||||
text-align: inherit;
|
||||
cursor: pointer;
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none;
|
||||
|
@ -3091,6 +3092,7 @@ details.dropdown > summary + ul {
|
|||
left: 0;
|
||||
flex-direction: column;
|
||||
width: 100%;
|
||||
min-width: 200px;
|
||||
min-width: -moz-fit-content;
|
||||
min-width: fit-content;
|
||||
margin: 0;
|
||||
|
@ -3122,6 +3124,7 @@ details.dropdown > summary + ul li:last-of-type {
|
|||
margin-bottom: calc(var(--pico-form-element-spacing-vertical) * 0.5);
|
||||
}
|
||||
details.dropdown > summary + ul li details {
|
||||
width: 100%;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
details.dropdown > summary + ul li details > summary {
|
||||
|
@ -3643,6 +3646,47 @@ dialog:not([open]) article, dialog[open=false] article {
|
|||
touch-action: auto;
|
||||
}
|
||||
|
||||
dialog.modal-sm > article {
|
||||
width: 90vw;
|
||||
max-width: 400px;
|
||||
}
|
||||
dialog.modal-md > article {
|
||||
width: 90vw;
|
||||
max-width: 600px;
|
||||
}
|
||||
dialog.modal-lg > article {
|
||||
width: 90vw;
|
||||
max-width: 800px;
|
||||
}
|
||||
dialog.modal-xlg > article {
|
||||
width: 95vw;
|
||||
max-width: 1000px;
|
||||
}
|
||||
dialog.modal-fs {
|
||||
padding: 0;
|
||||
}
|
||||
dialog.modal-fs > article {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: space-between;
|
||||
width: 100vw;
|
||||
max-width: 100vw;
|
||||
height: 100vh;
|
||||
max-height: 100vh;
|
||||
margin: 0;
|
||||
overflow-y: auto;
|
||||
}
|
||||
dialog.modal-fs > article > footer {
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
margin-top: auto;
|
||||
}
|
||||
@media (max-width: 576px) {
|
||||
dialog:not(.modal-fs) > article {
|
||||
width: 95vw;
|
||||
}
|
||||
}
|
||||
|
||||
body:has(dialog[open]) {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
|
2
css/pico.green.min.css
vendored
2
css/pico.green.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -3058,6 +3058,7 @@ details.dropdown > summary:not([role]) {
|
|||
background-color: var(--pico-form-element-background-color);
|
||||
color: var(--pico-form-element-placeholder-color);
|
||||
line-height: inherit;
|
||||
text-align: inherit;
|
||||
cursor: pointer;
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none;
|
||||
|
@ -3091,6 +3092,7 @@ details.dropdown > summary + ul {
|
|||
left: 0;
|
||||
flex-direction: column;
|
||||
width: 100%;
|
||||
min-width: 200px;
|
||||
min-width: -moz-fit-content;
|
||||
min-width: fit-content;
|
||||
margin: 0;
|
||||
|
@ -3122,6 +3124,7 @@ details.dropdown > summary + ul li:last-of-type {
|
|||
margin-bottom: calc(var(--pico-form-element-spacing-vertical) * 0.5);
|
||||
}
|
||||
details.dropdown > summary + ul li details {
|
||||
width: 100%;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
details.dropdown > summary + ul li details > summary {
|
||||
|
@ -3643,6 +3646,47 @@ dialog:not([open]) article, dialog[open=false] article {
|
|||
touch-action: auto;
|
||||
}
|
||||
|
||||
dialog.modal-sm > article {
|
||||
width: 90vw;
|
||||
max-width: 400px;
|
||||
}
|
||||
dialog.modal-md > article {
|
||||
width: 90vw;
|
||||
max-width: 600px;
|
||||
}
|
||||
dialog.modal-lg > article {
|
||||
width: 90vw;
|
||||
max-width: 800px;
|
||||
}
|
||||
dialog.modal-xlg > article {
|
||||
width: 95vw;
|
||||
max-width: 1000px;
|
||||
}
|
||||
dialog.modal-fs {
|
||||
padding: 0;
|
||||
}
|
||||
dialog.modal-fs > article {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: space-between;
|
||||
width: 100vw;
|
||||
max-width: 100vw;
|
||||
height: 100vh;
|
||||
max-height: 100vh;
|
||||
margin: 0;
|
||||
overflow-y: auto;
|
||||
}
|
||||
dialog.modal-fs > article > footer {
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
margin-top: auto;
|
||||
}
|
||||
@media (max-width: 576px) {
|
||||
dialog:not(.modal-fs) > article {
|
||||
width: 95vw;
|
||||
}
|
||||
}
|
||||
|
||||
body:has(dialog[open]) {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
|
2
css/pico.grey.min.css
vendored
2
css/pico.grey.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -3058,6 +3058,7 @@ details.dropdown > summary:not([role]) {
|
|||
background-color: var(--pico-form-element-background-color);
|
||||
color: var(--pico-form-element-placeholder-color);
|
||||
line-height: inherit;
|
||||
text-align: inherit;
|
||||
cursor: pointer;
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none;
|
||||
|
@ -3091,6 +3092,7 @@ details.dropdown > summary + ul {
|
|||
left: 0;
|
||||
flex-direction: column;
|
||||
width: 100%;
|
||||
min-width: 200px;
|
||||
min-width: -moz-fit-content;
|
||||
min-width: fit-content;
|
||||
margin: 0;
|
||||
|
@ -3122,6 +3124,7 @@ details.dropdown > summary + ul li:last-of-type {
|
|||
margin-bottom: calc(var(--pico-form-element-spacing-vertical) * 0.5);
|
||||
}
|
||||
details.dropdown > summary + ul li details {
|
||||
width: 100%;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
details.dropdown > summary + ul li details > summary {
|
||||
|
@ -3643,6 +3646,47 @@ dialog:not([open]) article, dialog[open=false] article {
|
|||
touch-action: auto;
|
||||
}
|
||||
|
||||
dialog.modal-sm > article {
|
||||
width: 90vw;
|
||||
max-width: 400px;
|
||||
}
|
||||
dialog.modal-md > article {
|
||||
width: 90vw;
|
||||
max-width: 600px;
|
||||
}
|
||||
dialog.modal-lg > article {
|
||||
width: 90vw;
|
||||
max-width: 800px;
|
||||
}
|
||||
dialog.modal-xlg > article {
|
||||
width: 95vw;
|
||||
max-width: 1000px;
|
||||
}
|
||||
dialog.modal-fs {
|
||||
padding: 0;
|
||||
}
|
||||
dialog.modal-fs > article {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: space-between;
|
||||
width: 100vw;
|
||||
max-width: 100vw;
|
||||
height: 100vh;
|
||||
max-height: 100vh;
|
||||
margin: 0;
|
||||
overflow-y: auto;
|
||||
}
|
||||
dialog.modal-fs > article > footer {
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
margin-top: auto;
|
||||
}
|
||||
@media (max-width: 576px) {
|
||||
dialog:not(.modal-fs) > article {
|
||||
width: 95vw;
|
||||
}
|
||||
}
|
||||
|
||||
body:has(dialog[open]) {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
|
2
css/pico.indigo.min.css
vendored
2
css/pico.indigo.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -3058,6 +3058,7 @@ details.dropdown > summary:not([role]) {
|
|||
background-color: var(--pico-form-element-background-color);
|
||||
color: var(--pico-form-element-placeholder-color);
|
||||
line-height: inherit;
|
||||
text-align: inherit;
|
||||
cursor: pointer;
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none;
|
||||
|
@ -3091,6 +3092,7 @@ details.dropdown > summary + ul {
|
|||
left: 0;
|
||||
flex-direction: column;
|
||||
width: 100%;
|
||||
min-width: 200px;
|
||||
min-width: -moz-fit-content;
|
||||
min-width: fit-content;
|
||||
margin: 0;
|
||||
|
@ -3122,6 +3124,7 @@ details.dropdown > summary + ul li:last-of-type {
|
|||
margin-bottom: calc(var(--pico-form-element-spacing-vertical) * 0.5);
|
||||
}
|
||||
details.dropdown > summary + ul li details {
|
||||
width: 100%;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
details.dropdown > summary + ul li details > summary {
|
||||
|
@ -3643,6 +3646,47 @@ dialog:not([open]) article, dialog[open=false] article {
|
|||
touch-action: auto;
|
||||
}
|
||||
|
||||
dialog.modal-sm > article {
|
||||
width: 90vw;
|
||||
max-width: 400px;
|
||||
}
|
||||
dialog.modal-md > article {
|
||||
width: 90vw;
|
||||
max-width: 600px;
|
||||
}
|
||||
dialog.modal-lg > article {
|
||||
width: 90vw;
|
||||
max-width: 800px;
|
||||
}
|
||||
dialog.modal-xlg > article {
|
||||
width: 95vw;
|
||||
max-width: 1000px;
|
||||
}
|
||||
dialog.modal-fs {
|
||||
padding: 0;
|
||||
}
|
||||
dialog.modal-fs > article {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: space-between;
|
||||
width: 100vw;
|
||||
max-width: 100vw;
|
||||
height: 100vh;
|
||||
max-height: 100vh;
|
||||
margin: 0;
|
||||
overflow-y: auto;
|
||||
}
|
||||
dialog.modal-fs > article > footer {
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
margin-top: auto;
|
||||
}
|
||||
@media (max-width: 576px) {
|
||||
dialog:not(.modal-fs) > article {
|
||||
width: 95vw;
|
||||
}
|
||||
}
|
||||
|
||||
body:has(dialog[open]) {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
|
2
css/pico.jade.min.css
vendored
2
css/pico.jade.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -3058,6 +3058,7 @@ details.dropdown > summary:not([role]) {
|
|||
background-color: var(--pico-form-element-background-color);
|
||||
color: var(--pico-form-element-placeholder-color);
|
||||
line-height: inherit;
|
||||
text-align: inherit;
|
||||
cursor: pointer;
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none;
|
||||
|
@ -3091,6 +3092,7 @@ details.dropdown > summary + ul {
|
|||
left: 0;
|
||||
flex-direction: column;
|
||||
width: 100%;
|
||||
min-width: 200px;
|
||||
min-width: -moz-fit-content;
|
||||
min-width: fit-content;
|
||||
margin: 0;
|
||||
|
@ -3122,6 +3124,7 @@ details.dropdown > summary + ul li:last-of-type {
|
|||
margin-bottom: calc(var(--pico-form-element-spacing-vertical) * 0.5);
|
||||
}
|
||||
details.dropdown > summary + ul li details {
|
||||
width: 100%;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
details.dropdown > summary + ul li details > summary {
|
||||
|
@ -3643,6 +3646,47 @@ dialog:not([open]) article, dialog[open=false] article {
|
|||
touch-action: auto;
|
||||
}
|
||||
|
||||
dialog.modal-sm > article {
|
||||
width: 90vw;
|
||||
max-width: 400px;
|
||||
}
|
||||
dialog.modal-md > article {
|
||||
width: 90vw;
|
||||
max-width: 600px;
|
||||
}
|
||||
dialog.modal-lg > article {
|
||||
width: 90vw;
|
||||
max-width: 800px;
|
||||
}
|
||||
dialog.modal-xlg > article {
|
||||
width: 95vw;
|
||||
max-width: 1000px;
|
||||
}
|
||||
dialog.modal-fs {
|
||||
padding: 0;
|
||||
}
|
||||
dialog.modal-fs > article {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: space-between;
|
||||
width: 100vw;
|
||||
max-width: 100vw;
|
||||
height: 100vh;
|
||||
max-height: 100vh;
|
||||
margin: 0;
|
||||
overflow-y: auto;
|
||||
}
|
||||
dialog.modal-fs > article > footer {
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
margin-top: auto;
|
||||
}
|
||||
@media (max-width: 576px) {
|
||||
dialog:not(.modal-fs) > article {
|
||||
width: 95vw;
|
||||
}
|
||||
}
|
||||
|
||||
body:has(dialog[open]) {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
|
2
css/pico.lime.min.css
vendored
2
css/pico.lime.min.css
vendored
File diff suppressed because one or more lines are too long
2
css/pico.min.css
vendored
2
css/pico.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -3058,6 +3058,7 @@ details.dropdown > summary:not([role]) {
|
|||
background-color: var(--pico-form-element-background-color);
|
||||
color: var(--pico-form-element-placeholder-color);
|
||||
line-height: inherit;
|
||||
text-align: inherit;
|
||||
cursor: pointer;
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none;
|
||||
|
@ -3091,6 +3092,7 @@ details.dropdown > summary + ul {
|
|||
left: 0;
|
||||
flex-direction: column;
|
||||
width: 100%;
|
||||
min-width: 200px;
|
||||
min-width: -moz-fit-content;
|
||||
min-width: fit-content;
|
||||
margin: 0;
|
||||
|
@ -3122,6 +3124,7 @@ details.dropdown > summary + ul li:last-of-type {
|
|||
margin-bottom: calc(var(--pico-form-element-spacing-vertical) * 0.5);
|
||||
}
|
||||
details.dropdown > summary + ul li details {
|
||||
width: 100%;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
details.dropdown > summary + ul li details > summary {
|
||||
|
@ -3643,6 +3646,47 @@ dialog:not([open]) article, dialog[open=false] article {
|
|||
touch-action: auto;
|
||||
}
|
||||
|
||||
dialog.modal-sm > article {
|
||||
width: 90vw;
|
||||
max-width: 400px;
|
||||
}
|
||||
dialog.modal-md > article {
|
||||
width: 90vw;
|
||||
max-width: 600px;
|
||||
}
|
||||
dialog.modal-lg > article {
|
||||
width: 90vw;
|
||||
max-width: 800px;
|
||||
}
|
||||
dialog.modal-xlg > article {
|
||||
width: 95vw;
|
||||
max-width: 1000px;
|
||||
}
|
||||
dialog.modal-fs {
|
||||
padding: 0;
|
||||
}
|
||||
dialog.modal-fs > article {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: space-between;
|
||||
width: 100vw;
|
||||
max-width: 100vw;
|
||||
height: 100vh;
|
||||
max-height: 100vh;
|
||||
margin: 0;
|
||||
overflow-y: auto;
|
||||
}
|
||||
dialog.modal-fs > article > footer {
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
margin-top: auto;
|
||||
}
|
||||
@media (max-width: 576px) {
|
||||
dialog:not(.modal-fs) > article {
|
||||
width: 95vw;
|
||||
}
|
||||
}
|
||||
|
||||
body:has(dialog[open]) {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
|
2
css/pico.orange.min.css
vendored
2
css/pico.orange.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -3058,6 +3058,7 @@ details.dropdown > summary:not([role]) {
|
|||
background-color: var(--pico-form-element-background-color);
|
||||
color: var(--pico-form-element-placeholder-color);
|
||||
line-height: inherit;
|
||||
text-align: inherit;
|
||||
cursor: pointer;
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none;
|
||||
|
@ -3091,6 +3092,7 @@ details.dropdown > summary + ul {
|
|||
left: 0;
|
||||
flex-direction: column;
|
||||
width: 100%;
|
||||
min-width: 200px;
|
||||
min-width: -moz-fit-content;
|
||||
min-width: fit-content;
|
||||
margin: 0;
|
||||
|
@ -3122,6 +3124,7 @@ details.dropdown > summary + ul li:last-of-type {
|
|||
margin-bottom: calc(var(--pico-form-element-spacing-vertical) * 0.5);
|
||||
}
|
||||
details.dropdown > summary + ul li details {
|
||||
width: 100%;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
details.dropdown > summary + ul li details > summary {
|
||||
|
@ -3643,6 +3646,47 @@ dialog:not([open]) article, dialog[open=false] article {
|
|||
touch-action: auto;
|
||||
}
|
||||
|
||||
dialog.modal-sm > article {
|
||||
width: 90vw;
|
||||
max-width: 400px;
|
||||
}
|
||||
dialog.modal-md > article {
|
||||
width: 90vw;
|
||||
max-width: 600px;
|
||||
}
|
||||
dialog.modal-lg > article {
|
||||
width: 90vw;
|
||||
max-width: 800px;
|
||||
}
|
||||
dialog.modal-xlg > article {
|
||||
width: 95vw;
|
||||
max-width: 1000px;
|
||||
}
|
||||
dialog.modal-fs {
|
||||
padding: 0;
|
||||
}
|
||||
dialog.modal-fs > article {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: space-between;
|
||||
width: 100vw;
|
||||
max-width: 100vw;
|
||||
height: 100vh;
|
||||
max-height: 100vh;
|
||||
margin: 0;
|
||||
overflow-y: auto;
|
||||
}
|
||||
dialog.modal-fs > article > footer {
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
margin-top: auto;
|
||||
}
|
||||
@media (max-width: 576px) {
|
||||
dialog:not(.modal-fs) > article {
|
||||
width: 95vw;
|
||||
}
|
||||
}
|
||||
|
||||
body:has(dialog[open]) {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
|
2
css/pico.pink.min.css
vendored
2
css/pico.pink.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -3058,6 +3058,7 @@ details.dropdown > summary:not([role]) {
|
|||
background-color: var(--pico-form-element-background-color);
|
||||
color: var(--pico-form-element-placeholder-color);
|
||||
line-height: inherit;
|
||||
text-align: inherit;
|
||||
cursor: pointer;
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none;
|
||||
|
@ -3091,6 +3092,7 @@ details.dropdown > summary + ul {
|
|||
left: 0;
|
||||
flex-direction: column;
|
||||
width: 100%;
|
||||
min-width: 200px;
|
||||
min-width: -moz-fit-content;
|
||||
min-width: fit-content;
|
||||
margin: 0;
|
||||
|
@ -3122,6 +3124,7 @@ details.dropdown > summary + ul li:last-of-type {
|
|||
margin-bottom: calc(var(--pico-form-element-spacing-vertical) * 0.5);
|
||||
}
|
||||
details.dropdown > summary + ul li details {
|
||||
width: 100%;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
details.dropdown > summary + ul li details > summary {
|
||||
|
@ -3643,6 +3646,47 @@ dialog:not([open]) article, dialog[open=false] article {
|
|||
touch-action: auto;
|
||||
}
|
||||
|
||||
dialog.modal-sm > article {
|
||||
width: 90vw;
|
||||
max-width: 400px;
|
||||
}
|
||||
dialog.modal-md > article {
|
||||
width: 90vw;
|
||||
max-width: 600px;
|
||||
}
|
||||
dialog.modal-lg > article {
|
||||
width: 90vw;
|
||||
max-width: 800px;
|
||||
}
|
||||
dialog.modal-xlg > article {
|
||||
width: 95vw;
|
||||
max-width: 1000px;
|
||||
}
|
||||
dialog.modal-fs {
|
||||
padding: 0;
|
||||
}
|
||||
dialog.modal-fs > article {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: space-between;
|
||||
width: 100vw;
|
||||
max-width: 100vw;
|
||||
height: 100vh;
|
||||
max-height: 100vh;
|
||||
margin: 0;
|
||||
overflow-y: auto;
|
||||
}
|
||||
dialog.modal-fs > article > footer {
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
margin-top: auto;
|
||||
}
|
||||
@media (max-width: 576px) {
|
||||
dialog:not(.modal-fs) > article {
|
||||
width: 95vw;
|
||||
}
|
||||
}
|
||||
|
||||
body:has(dialog[open]) {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
|
2
css/pico.pumpkin.min.css
vendored
2
css/pico.pumpkin.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -3058,6 +3058,7 @@ details.dropdown > summary:not([role]) {
|
|||
background-color: var(--pico-form-element-background-color);
|
||||
color: var(--pico-form-element-placeholder-color);
|
||||
line-height: inherit;
|
||||
text-align: inherit;
|
||||
cursor: pointer;
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none;
|
||||
|
@ -3091,6 +3092,7 @@ details.dropdown > summary + ul {
|
|||
left: 0;
|
||||
flex-direction: column;
|
||||
width: 100%;
|
||||
min-width: 200px;
|
||||
min-width: -moz-fit-content;
|
||||
min-width: fit-content;
|
||||
margin: 0;
|
||||
|
@ -3122,6 +3124,7 @@ details.dropdown > summary + ul li:last-of-type {
|
|||
margin-bottom: calc(var(--pico-form-element-spacing-vertical) * 0.5);
|
||||
}
|
||||
details.dropdown > summary + ul li details {
|
||||
width: 100%;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
details.dropdown > summary + ul li details > summary {
|
||||
|
@ -3643,6 +3646,47 @@ dialog:not([open]) article, dialog[open=false] article {
|
|||
touch-action: auto;
|
||||
}
|
||||
|
||||
dialog.modal-sm > article {
|
||||
width: 90vw;
|
||||
max-width: 400px;
|
||||
}
|
||||
dialog.modal-md > article {
|
||||
width: 90vw;
|
||||
max-width: 600px;
|
||||
}
|
||||
dialog.modal-lg > article {
|
||||
width: 90vw;
|
||||
max-width: 800px;
|
||||
}
|
||||
dialog.modal-xlg > article {
|
||||
width: 95vw;
|
||||
max-width: 1000px;
|
||||
}
|
||||
dialog.modal-fs {
|
||||
padding: 0;
|
||||
}
|
||||
dialog.modal-fs > article {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: space-between;
|
||||
width: 100vw;
|
||||
max-width: 100vw;
|
||||
height: 100vh;
|
||||
max-height: 100vh;
|
||||
margin: 0;
|
||||
overflow-y: auto;
|
||||
}
|
||||
dialog.modal-fs > article > footer {
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
margin-top: auto;
|
||||
}
|
||||
@media (max-width: 576px) {
|
||||
dialog:not(.modal-fs) > article {
|
||||
width: 95vw;
|
||||
}
|
||||
}
|
||||
|
||||
body:has(dialog[open]) {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
|
2
css/pico.purple.min.css
vendored
2
css/pico.purple.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -3058,6 +3058,7 @@ details.dropdown > summary:not([role]) {
|
|||
background-color: var(--pico-form-element-background-color);
|
||||
color: var(--pico-form-element-placeholder-color);
|
||||
line-height: inherit;
|
||||
text-align: inherit;
|
||||
cursor: pointer;
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none;
|
||||
|
@ -3091,6 +3092,7 @@ details.dropdown > summary + ul {
|
|||
left: 0;
|
||||
flex-direction: column;
|
||||
width: 100%;
|
||||
min-width: 200px;
|
||||
min-width: -moz-fit-content;
|
||||
min-width: fit-content;
|
||||
margin: 0;
|
||||
|
@ -3122,6 +3124,7 @@ details.dropdown > summary + ul li:last-of-type {
|
|||
margin-bottom: calc(var(--pico-form-element-spacing-vertical) * 0.5);
|
||||
}
|
||||
details.dropdown > summary + ul li details {
|
||||
width: 100%;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
details.dropdown > summary + ul li details > summary {
|
||||
|
@ -3643,6 +3646,47 @@ dialog:not([open]) article, dialog[open=false] article {
|
|||
touch-action: auto;
|
||||
}
|
||||
|
||||
dialog.modal-sm > article {
|
||||
width: 90vw;
|
||||
max-width: 400px;
|
||||
}
|
||||
dialog.modal-md > article {
|
||||
width: 90vw;
|
||||
max-width: 600px;
|
||||
}
|
||||
dialog.modal-lg > article {
|
||||
width: 90vw;
|
||||
max-width: 800px;
|
||||
}
|
||||
dialog.modal-xlg > article {
|
||||
width: 95vw;
|
||||
max-width: 1000px;
|
||||
}
|
||||
dialog.modal-fs {
|
||||
padding: 0;
|
||||
}
|
||||
dialog.modal-fs > article {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: space-between;
|
||||
width: 100vw;
|
||||
max-width: 100vw;
|
||||
height: 100vh;
|
||||
max-height: 100vh;
|
||||
margin: 0;
|
||||
overflow-y: auto;
|
||||
}
|
||||
dialog.modal-fs > article > footer {
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
margin-top: auto;
|
||||
}
|
||||
@media (max-width: 576px) {
|
||||
dialog:not(.modal-fs) > article {
|
||||
width: 95vw;
|
||||
}
|
||||
}
|
||||
|
||||
body:has(dialog[open]) {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
|
2
css/pico.red.min.css
vendored
2
css/pico.red.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -3058,6 +3058,7 @@ details.dropdown > summary:not([role]) {
|
|||
background-color: var(--pico-form-element-background-color);
|
||||
color: var(--pico-form-element-placeholder-color);
|
||||
line-height: inherit;
|
||||
text-align: inherit;
|
||||
cursor: pointer;
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none;
|
||||
|
@ -3091,6 +3092,7 @@ details.dropdown > summary + ul {
|
|||
left: 0;
|
||||
flex-direction: column;
|
||||
width: 100%;
|
||||
min-width: 200px;
|
||||
min-width: -moz-fit-content;
|
||||
min-width: fit-content;
|
||||
margin: 0;
|
||||
|
@ -3122,6 +3124,7 @@ details.dropdown > summary + ul li:last-of-type {
|
|||
margin-bottom: calc(var(--pico-form-element-spacing-vertical) * 0.5);
|
||||
}
|
||||
details.dropdown > summary + ul li details {
|
||||
width: 100%;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
details.dropdown > summary + ul li details > summary {
|
||||
|
@ -3643,6 +3646,47 @@ dialog:not([open]) article, dialog[open=false] article {
|
|||
touch-action: auto;
|
||||
}
|
||||
|
||||
dialog.modal-sm > article {
|
||||
width: 90vw;
|
||||
max-width: 400px;
|
||||
}
|
||||
dialog.modal-md > article {
|
||||
width: 90vw;
|
||||
max-width: 600px;
|
||||
}
|
||||
dialog.modal-lg > article {
|
||||
width: 90vw;
|
||||
max-width: 800px;
|
||||
}
|
||||
dialog.modal-xlg > article {
|
||||
width: 95vw;
|
||||
max-width: 1000px;
|
||||
}
|
||||
dialog.modal-fs {
|
||||
padding: 0;
|
||||
}
|
||||
dialog.modal-fs > article {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: space-between;
|
||||
width: 100vw;
|
||||
max-width: 100vw;
|
||||
height: 100vh;
|
||||
max-height: 100vh;
|
||||
margin: 0;
|
||||
overflow-y: auto;
|
||||
}
|
||||
dialog.modal-fs > article > footer {
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
margin-top: auto;
|
||||
}
|
||||
@media (max-width: 576px) {
|
||||
dialog:not(.modal-fs) > article {
|
||||
width: 95vw;
|
||||
}
|
||||
}
|
||||
|
||||
body:has(dialog[open]) {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
|
2
css/pico.sand.min.css
vendored
2
css/pico.sand.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -3058,6 +3058,7 @@ details.dropdown > summary:not([role]) {
|
|||
background-color: var(--pico-form-element-background-color);
|
||||
color: var(--pico-form-element-placeholder-color);
|
||||
line-height: inherit;
|
||||
text-align: inherit;
|
||||
cursor: pointer;
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none;
|
||||
|
@ -3091,6 +3092,7 @@ details.dropdown > summary + ul {
|
|||
left: 0;
|
||||
flex-direction: column;
|
||||
width: 100%;
|
||||
min-width: 200px;
|
||||
min-width: -moz-fit-content;
|
||||
min-width: fit-content;
|
||||
margin: 0;
|
||||
|
@ -3122,6 +3124,7 @@ details.dropdown > summary + ul li:last-of-type {
|
|||
margin-bottom: calc(var(--pico-form-element-spacing-vertical) * 0.5);
|
||||
}
|
||||
details.dropdown > summary + ul li details {
|
||||
width: 100%;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
details.dropdown > summary + ul li details > summary {
|
||||
|
@ -3643,6 +3646,47 @@ dialog:not([open]) article, dialog[open=false] article {
|
|||
touch-action: auto;
|
||||
}
|
||||
|
||||
dialog.modal-sm > article {
|
||||
width: 90vw;
|
||||
max-width: 400px;
|
||||
}
|
||||
dialog.modal-md > article {
|
||||
width: 90vw;
|
||||
max-width: 600px;
|
||||
}
|
||||
dialog.modal-lg > article {
|
||||
width: 90vw;
|
||||
max-width: 800px;
|
||||
}
|
||||
dialog.modal-xlg > article {
|
||||
width: 95vw;
|
||||
max-width: 1000px;
|
||||
}
|
||||
dialog.modal-fs {
|
||||
padding: 0;
|
||||
}
|
||||
dialog.modal-fs > article {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: space-between;
|
||||
width: 100vw;
|
||||
max-width: 100vw;
|
||||
height: 100vh;
|
||||
max-height: 100vh;
|
||||
margin: 0;
|
||||
overflow-y: auto;
|
||||
}
|
||||
dialog.modal-fs > article > footer {
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
margin-top: auto;
|
||||
}
|
||||
@media (max-width: 576px) {
|
||||
dialog:not(.modal-fs) > article {
|
||||
width: 95vw;
|
||||
}
|
||||
}
|
||||
|
||||
body:has(dialog[open]) {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
|
2
css/pico.slate.min.css
vendored
2
css/pico.slate.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -3058,6 +3058,7 @@ details.dropdown > summary:not([role]) {
|
|||
background-color: var(--pico-form-element-background-color);
|
||||
color: var(--pico-form-element-placeholder-color);
|
||||
line-height: inherit;
|
||||
text-align: inherit;
|
||||
cursor: pointer;
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none;
|
||||
|
@ -3091,6 +3092,7 @@ details.dropdown > summary + ul {
|
|||
left: 0;
|
||||
flex-direction: column;
|
||||
width: 100%;
|
||||
min-width: 200px;
|
||||
min-width: -moz-fit-content;
|
||||
min-width: fit-content;
|
||||
margin: 0;
|
||||
|
@ -3122,6 +3124,7 @@ details.dropdown > summary + ul li:last-of-type {
|
|||
margin-bottom: calc(var(--pico-form-element-spacing-vertical) * 0.5);
|
||||
}
|
||||
details.dropdown > summary + ul li details {
|
||||
width: 100%;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
details.dropdown > summary + ul li details > summary {
|
||||
|
@ -3643,6 +3646,47 @@ dialog:not([open]) article, dialog[open=false] article {
|
|||
touch-action: auto;
|
||||
}
|
||||
|
||||
dialog.modal-sm > article {
|
||||
width: 90vw;
|
||||
max-width: 400px;
|
||||
}
|
||||
dialog.modal-md > article {
|
||||
width: 90vw;
|
||||
max-width: 600px;
|
||||
}
|
||||
dialog.modal-lg > article {
|
||||
width: 90vw;
|
||||
max-width: 800px;
|
||||
}
|
||||
dialog.modal-xlg > article {
|
||||
width: 95vw;
|
||||
max-width: 1000px;
|
||||
}
|
||||
dialog.modal-fs {
|
||||
padding: 0;
|
||||
}
|
||||
dialog.modal-fs > article {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: space-between;
|
||||
width: 100vw;
|
||||
max-width: 100vw;
|
||||
height: 100vh;
|
||||
max-height: 100vh;
|
||||
margin: 0;
|
||||
overflow-y: auto;
|
||||
}
|
||||
dialog.modal-fs > article > footer {
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
margin-top: auto;
|
||||
}
|
||||
@media (max-width: 576px) {
|
||||
dialog:not(.modal-fs) > article {
|
||||
width: 95vw;
|
||||
}
|
||||
}
|
||||
|
||||
body:has(dialog[open]) {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
|
2
css/pico.violet.min.css
vendored
2
css/pico.violet.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -3058,6 +3058,7 @@ details.dropdown > summary:not([role]) {
|
|||
background-color: var(--pico-form-element-background-color);
|
||||
color: var(--pico-form-element-placeholder-color);
|
||||
line-height: inherit;
|
||||
text-align: inherit;
|
||||
cursor: pointer;
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none;
|
||||
|
@ -3091,6 +3092,7 @@ details.dropdown > summary + ul {
|
|||
left: 0;
|
||||
flex-direction: column;
|
||||
width: 100%;
|
||||
min-width: 200px;
|
||||
min-width: -moz-fit-content;
|
||||
min-width: fit-content;
|
||||
margin: 0;
|
||||
|
@ -3122,6 +3124,7 @@ details.dropdown > summary + ul li:last-of-type {
|
|||
margin-bottom: calc(var(--pico-form-element-spacing-vertical) * 0.5);
|
||||
}
|
||||
details.dropdown > summary + ul li details {
|
||||
width: 100%;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
details.dropdown > summary + ul li details > summary {
|
||||
|
@ -3643,6 +3646,47 @@ dialog:not([open]) article, dialog[open=false] article {
|
|||
touch-action: auto;
|
||||
}
|
||||
|
||||
dialog.modal-sm > article {
|
||||
width: 90vw;
|
||||
max-width: 400px;
|
||||
}
|
||||
dialog.modal-md > article {
|
||||
width: 90vw;
|
||||
max-width: 600px;
|
||||
}
|
||||
dialog.modal-lg > article {
|
||||
width: 90vw;
|
||||
max-width: 800px;
|
||||
}
|
||||
dialog.modal-xlg > article {
|
||||
width: 95vw;
|
||||
max-width: 1000px;
|
||||
}
|
||||
dialog.modal-fs {
|
||||
padding: 0;
|
||||
}
|
||||
dialog.modal-fs > article {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: space-between;
|
||||
width: 100vw;
|
||||
max-width: 100vw;
|
||||
height: 100vh;
|
||||
max-height: 100vh;
|
||||
margin: 0;
|
||||
overflow-y: auto;
|
||||
}
|
||||
dialog.modal-fs > article > footer {
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
margin-top: auto;
|
||||
}
|
||||
@media (max-width: 576px) {
|
||||
dialog:not(.modal-fs) > article {
|
||||
width: 95vw;
|
||||
}
|
||||
}
|
||||
|
||||
body:has(dialog[open]) {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
|
2
css/pico.yellow.min.css
vendored
2
css/pico.yellow.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -3058,6 +3058,7 @@ details.dropdown > summary:not([role]) {
|
|||
background-color: var(--pico-form-element-background-color);
|
||||
color: var(--pico-form-element-placeholder-color);
|
||||
line-height: inherit;
|
||||
text-align: inherit;
|
||||
cursor: pointer;
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none;
|
||||
|
@ -3091,6 +3092,7 @@ details.dropdown > summary + ul {
|
|||
left: 0;
|
||||
flex-direction: column;
|
||||
width: 100%;
|
||||
min-width: 200px;
|
||||
min-width: -moz-fit-content;
|
||||
min-width: fit-content;
|
||||
margin: 0;
|
||||
|
@ -3122,6 +3124,7 @@ details.dropdown > summary + ul li:last-of-type {
|
|||
margin-bottom: calc(var(--pico-form-element-spacing-vertical) * 0.5);
|
||||
}
|
||||
details.dropdown > summary + ul li details {
|
||||
width: 100%;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
details.dropdown > summary + ul li details > summary {
|
||||
|
@ -3643,6 +3646,47 @@ dialog:not([open]) article, dialog[open=false] article {
|
|||
touch-action: auto;
|
||||
}
|
||||
|
||||
dialog.modal-sm > article {
|
||||
width: 90vw;
|
||||
max-width: 400px;
|
||||
}
|
||||
dialog.modal-md > article {
|
||||
width: 90vw;
|
||||
max-width: 600px;
|
||||
}
|
||||
dialog.modal-lg > article {
|
||||
width: 90vw;
|
||||
max-width: 800px;
|
||||
}
|
||||
dialog.modal-xlg > article {
|
||||
width: 95vw;
|
||||
max-width: 1000px;
|
||||
}
|
||||
dialog.modal-fs {
|
||||
padding: 0;
|
||||
}
|
||||
dialog.modal-fs > article {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: space-between;
|
||||
width: 100vw;
|
||||
max-width: 100vw;
|
||||
height: 100vh;
|
||||
max-height: 100vh;
|
||||
margin: 0;
|
||||
overflow-y: auto;
|
||||
}
|
||||
dialog.modal-fs > article > footer {
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
margin-top: auto;
|
||||
}
|
||||
@media (max-width: 576px) {
|
||||
dialog:not(.modal-fs) > article {
|
||||
width: 95vw;
|
||||
}
|
||||
}
|
||||
|
||||
body:has(dialog[open]) {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
|
2
css/pico.zinc.min.css
vendored
2
css/pico.zinc.min.css
vendored
File diff suppressed because one or more lines are too long
Loading…
Add table
Add a link
Reference in a new issue