Build CSS

This commit is contained in:
github-actions[bot] 2025-01-11 08:57:11 +00:00
parent d20ea655bf
commit f9c3a34411
92 changed files with 2032 additions and 184 deletions

View file

@ -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;
}