Build CSS

This commit is contained in:
github-actions[bot] 2025-01-17 08:51:24 +00:00
parent 565884540b
commit 39da3b69cc
250 changed files with 8778 additions and 1028 deletions

View file

@ -129,6 +129,10 @@ h6 {
--pico-typography-spacing-top: 1.5rem;
}
table > caption {
--pico-font-weight: 600;
}
thead th,
thead td,
tfoot th,
@ -199,18 +203,18 @@ input:not([type=submit],
color-scheme: light;
--pico-background-color: #fff;
--pico-color: #373c44;
--pico-text-selection-color: rgba(2, 154, 232, 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: #0172ad;
--pico-primary-background: #0172ad;
--pico-primary: #c1208b;
--pico-primary-background: #c1208b;
--pico-primary-border: var(--pico-primary-background);
--pico-primary-underline: rgba(1, 114, 173, 0.5);
--pico-primary-hover: #015887;
--pico-primary-hover-background: #02659a;
--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(2, 154, 232, 0.5);
--pico-primary-focus: rgba(247, 72, 183, 0.5);
--pico-primary-inverse: #fff;
--pico-secondary: #5d6b89;
--pico-secondary-background: #525f7a;
@ -339,18 +343,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(1, 170, 255, 0.1875);
--pico-text-selection-color: rgba(248, 105, 191, 0.1875);
--pico-muted-color: #7b8495;
--pico-muted-border-color: #202632;
--pico-primary: #01aaff;
--pico-primary-background: #0172ad;
--pico-primary: #f869bf;
--pico-primary-background: #c1208b;
--pico-primary-border: var(--pico-primary-background);
--pico-primary-underline: rgba(1, 170, 255, 0.5);
--pico-primary-hover: #79c0ff;
--pico-primary-hover-background: #017fc0;
--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(1, 170, 255, 0.375);
--pico-primary-focus: rgba(248, 105, 191, 0.375);
--pico-primary-inverse: #fff;
--pico-secondary: #969eaf;
--pico-secondary-background: #525f7a;
@ -469,18 +473,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(1, 170, 255, 0.1875);
--pico-text-selection-color: rgba(248, 105, 191, 0.1875);
--pico-muted-color: #7b8495;
--pico-muted-border-color: #202632;
--pico-primary: #01aaff;
--pico-primary-background: #0172ad;
--pico-primary: #f869bf;
--pico-primary-background: #c1208b;
--pico-primary-border: var(--pico-primary-background);
--pico-primary-underline: rgba(1, 170, 255, 0.5);
--pico-primary-hover: #79c0ff;
--pico-primary-hover-background: #017fc0;
--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(1, 170, 255, 0.375);
--pico-primary-focus: rgba(248, 105, 191, 0.375);
--pico-primary-inverse: #fff;
--pico-secondary: #969eaf;
--pico-secondary-background: #525f7a;
@ -1006,8 +1010,8 @@ button:focus, button:is([aria-current]:not([aria-current=false])):focus,
text-indent: 0;
}
th,
td {
table th,
table td {
padding: calc(var(--pico-spacing) / 2) var(--pico-spacing);
border-bottom: var(--pico-border-width) solid var(--pico-table-border-color);
background-color: var(--pico-background-color);
@ -1017,15 +1021,73 @@ td {
text-align: start;
}
tfoot th,
tfoot td {
table > caption {
margin-block: calc(var(--pico-block-spacing-vertical) * 0.5);
padding: calc(var(--pico-spacing) / 2) var(--pico-spacing);
background-color: var(--pico-table-row-stripped-background-color);
color: var(--pico-h3-color);
font-weight: var(--pico-font-weight);
font-size: 1.25rem;
text-align: center;
}
table > tfoot th,
table > tfoot td {
border-top: var(--pico-border-width) solid var(--pico-table-border-color);
border-bottom: 0;
}
table.striped tbody tr:nth-child(odd of :not([hidden])) th,
table.striped tbody tr:nth-child(odd of :not([hidden])) td {
table > caption {
margin-block: calc(var(--pico-block-spacing-vertical) * 0.5);
background-color: var(--pico-table-row-stripped-background-color);
color: var(--pico-h3-color);
font-weight: var(--pico-font-weight);
font-size: 1.25rem;
text-align: center;
}
table.striped > tbody > tr:nth-child(odd) > th,
table.striped > tbody > tr:nth-child(odd) > td {
background: var(--pico-table-row-stripped-background-color);
}
table.striped > tbody > tr:nth-child(even) > th,
table.striped > tbody > tr:nth-child(even) > td {
background: var(--pico-background-color);
}
table.striped > tbody > tr[hidden] {
display: none;
}
table.striped > tbody > tr[hidden] ~ tr:nth-child(odd) > th,
table.striped > tbody > tr[hidden] ~ tr:nth-child(odd) > td {
background: var(--pico-background-color);
}
table.striped > tbody > tr[hidden] ~ tr:nth-child(even) > th,
table.striped > tbody > tr[hidden] ~ tr:nth-child(even) > td {
background: var(--pico-table-row-stripped-background-color);
}
table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > th,
table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > td {
background: var(--pico-table-row-stripped-background-color);
}
table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > th,
table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > td {
background: var(--pico-background-color);
}
table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > th,
table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > td {
background: var(--pico-background-color);
}
table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > th,
table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > td {
background: var(--pico-table-row-stripped-background-color);
}
table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > th,
table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > td {
background: var(--pico-table-row-stripped-background-color);
}
table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > th,
table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > td {
background: var(--pico-background-color);
}
/**