mirror of
https://github.com/picocss/pico.git
synced 2025-04-20 08:45:06 -04:00
Build CSS
This commit is contained in:
parent
565884540b
commit
39da3b69cc
250 changed files with 8778 additions and 1028 deletions
|
@ -134,6 +134,10 @@ h6 {
|
|||
--pico-typography-spacing-top: 1.5rem;
|
||||
}
|
||||
|
||||
table > caption {
|
||||
--pico-font-weight: 600;
|
||||
}
|
||||
|
||||
thead th,
|
||||
thead td,
|
||||
tfoot th,
|
||||
|
@ -1732,8 +1736,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);
|
||||
|
@ -1743,15 +1747,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);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
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
|
@ -134,6 +134,10 @@ h6 {
|
|||
--pico-typography-spacing-top: 1.5rem;
|
||||
}
|
||||
|
||||
table > caption {
|
||||
--pico-font-weight: 600;
|
||||
}
|
||||
|
||||
thead th,
|
||||
thead td,
|
||||
tfoot th,
|
||||
|
@ -1732,8 +1736,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);
|
||||
|
@ -1743,15 +1747,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);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
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
|
@ -134,6 +134,10 @@ h6 {
|
|||
--pico-typography-spacing-top: 1.5rem;
|
||||
}
|
||||
|
||||
table > caption {
|
||||
--pico-font-weight: 600;
|
||||
}
|
||||
|
||||
thead th,
|
||||
thead td,
|
||||
tfoot th,
|
||||
|
@ -1732,8 +1736,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);
|
||||
|
@ -1743,15 +1747,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);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
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
|
@ -129,6 +129,10 @@ h6 {
|
|||
--pico-typography-spacing-top: 1.5rem;
|
||||
}
|
||||
|
||||
table > caption {
|
||||
--pico-font-weight: 600;
|
||||
}
|
||||
|
||||
thead th,
|
||||
thead td,
|
||||
tfoot th,
|
||||
|
@ -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);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
2
css/pico.classless.amber.min.css
vendored
2
css/pico.classless.amber.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -129,6 +129,10 @@ h6 {
|
|||
--pico-typography-spacing-top: 1.5rem;
|
||||
}
|
||||
|
||||
table > caption {
|
||||
--pico-font-weight: 600;
|
||||
}
|
||||
|
||||
thead th,
|
||||
thead td,
|
||||
tfoot th,
|
||||
|
@ -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);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
2
css/pico.classless.azure.min.css
vendored
2
css/pico.classless.azure.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -129,6 +129,10 @@ h6 {
|
|||
--pico-typography-spacing-top: 1.5rem;
|
||||
}
|
||||
|
||||
table > caption {
|
||||
--pico-font-weight: 600;
|
||||
}
|
||||
|
||||
thead th,
|
||||
thead td,
|
||||
tfoot th,
|
||||
|
@ -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);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
2
css/pico.classless.blue.min.css
vendored
2
css/pico.classless.blue.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -129,6 +129,10 @@ h6 {
|
|||
--pico-typography-spacing-top: 1.5rem;
|
||||
}
|
||||
|
||||
table > caption {
|
||||
--pico-font-weight: 600;
|
||||
}
|
||||
|
||||
thead th,
|
||||
thead td,
|
||||
tfoot th,
|
||||
|
@ -1006,8 +1010,8 @@ main {
|
|||
text-indent: 0;
|
||||
}
|
||||
|
||||
.pico th,
|
||||
.pico td {
|
||||
.pico table th,
|
||||
.pico 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 @@ main {
|
|||
text-align: start;
|
||||
}
|
||||
|
||||
.pico tfoot th,
|
||||
.pico tfoot td {
|
||||
.pico 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;
|
||||
}
|
||||
|
||||
.pico table > tfoot th,
|
||||
.pico table > tfoot td {
|
||||
border-top: var(--pico-border-width) solid var(--pico-table-border-color);
|
||||
border-bottom: 0;
|
||||
}
|
||||
|
||||
.pico table.striped tbody tr:nth-child(odd of :not([hidden])) th,
|
||||
.pico table.striped tbody tr:nth-child(odd of :not([hidden])) td {
|
||||
.pico 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;
|
||||
}
|
||||
|
||||
.pico table.striped > tbody > tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr:nth-child(odd) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr:nth-child(even) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] {
|
||||
display: none;
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr:nth-child(odd) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr:nth-child(even) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
2
css/pico.classless.conditional.amber.min.css
vendored
2
css/pico.classless.conditional.amber.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -129,6 +129,10 @@ h6 {
|
|||
--pico-typography-spacing-top: 1.5rem;
|
||||
}
|
||||
|
||||
table > caption {
|
||||
--pico-font-weight: 600;
|
||||
}
|
||||
|
||||
thead th,
|
||||
thead td,
|
||||
tfoot th,
|
||||
|
@ -1006,8 +1010,8 @@ main {
|
|||
text-indent: 0;
|
||||
}
|
||||
|
||||
.pico th,
|
||||
.pico td {
|
||||
.pico table th,
|
||||
.pico 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 @@ main {
|
|||
text-align: start;
|
||||
}
|
||||
|
||||
.pico tfoot th,
|
||||
.pico tfoot td {
|
||||
.pico 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;
|
||||
}
|
||||
|
||||
.pico table > tfoot th,
|
||||
.pico table > tfoot td {
|
||||
border-top: var(--pico-border-width) solid var(--pico-table-border-color);
|
||||
border-bottom: 0;
|
||||
}
|
||||
|
||||
.pico table.striped tbody tr:nth-child(odd of :not([hidden])) th,
|
||||
.pico table.striped tbody tr:nth-child(odd of :not([hidden])) td {
|
||||
.pico 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;
|
||||
}
|
||||
|
||||
.pico table.striped > tbody > tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr:nth-child(odd) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr:nth-child(even) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] {
|
||||
display: none;
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr:nth-child(odd) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr:nth-child(even) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
2
css/pico.classless.conditional.azure.min.css
vendored
2
css/pico.classless.conditional.azure.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -129,6 +129,10 @@ h6 {
|
|||
--pico-typography-spacing-top: 1.5rem;
|
||||
}
|
||||
|
||||
table > caption {
|
||||
--pico-font-weight: 600;
|
||||
}
|
||||
|
||||
thead th,
|
||||
thead td,
|
||||
tfoot th,
|
||||
|
@ -1006,8 +1010,8 @@ main {
|
|||
text-indent: 0;
|
||||
}
|
||||
|
||||
.pico th,
|
||||
.pico td {
|
||||
.pico table th,
|
||||
.pico 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 @@ main {
|
|||
text-align: start;
|
||||
}
|
||||
|
||||
.pico tfoot th,
|
||||
.pico tfoot td {
|
||||
.pico 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;
|
||||
}
|
||||
|
||||
.pico table > tfoot th,
|
||||
.pico table > tfoot td {
|
||||
border-top: var(--pico-border-width) solid var(--pico-table-border-color);
|
||||
border-bottom: 0;
|
||||
}
|
||||
|
||||
.pico table.striped tbody tr:nth-child(odd of :not([hidden])) th,
|
||||
.pico table.striped tbody tr:nth-child(odd of :not([hidden])) td {
|
||||
.pico 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;
|
||||
}
|
||||
|
||||
.pico table.striped > tbody > tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr:nth-child(odd) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr:nth-child(even) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] {
|
||||
display: none;
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr:nth-child(odd) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr:nth-child(even) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
2
css/pico.classless.conditional.blue.min.css
vendored
2
css/pico.classless.conditional.blue.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -129,6 +129,10 @@ h6 {
|
|||
--pico-typography-spacing-top: 1.5rem;
|
||||
}
|
||||
|
||||
table > caption {
|
||||
--pico-font-weight: 600;
|
||||
}
|
||||
|
||||
thead th,
|
||||
thead td,
|
||||
tfoot th,
|
||||
|
@ -1006,8 +1010,8 @@ main {
|
|||
text-indent: 0;
|
||||
}
|
||||
|
||||
.pico th,
|
||||
.pico td {
|
||||
.pico table th,
|
||||
.pico 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 @@ main {
|
|||
text-align: start;
|
||||
}
|
||||
|
||||
.pico tfoot th,
|
||||
.pico tfoot td {
|
||||
.pico 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;
|
||||
}
|
||||
|
||||
.pico table > tfoot th,
|
||||
.pico table > tfoot td {
|
||||
border-top: var(--pico-border-width) solid var(--pico-table-border-color);
|
||||
border-bottom: 0;
|
||||
}
|
||||
|
||||
.pico table.striped tbody tr:nth-child(odd of :not([hidden])) th,
|
||||
.pico table.striped tbody tr:nth-child(odd of :not([hidden])) td {
|
||||
.pico 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;
|
||||
}
|
||||
|
||||
.pico table.striped > tbody > tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr:nth-child(odd) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr:nth-child(even) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] {
|
||||
display: none;
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr:nth-child(odd) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr:nth-child(even) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
2
css/pico.classless.conditional.cyan.min.css
vendored
2
css/pico.classless.conditional.cyan.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -129,6 +129,10 @@ h6 {
|
|||
--pico-typography-spacing-top: 1.5rem;
|
||||
}
|
||||
|
||||
table > caption {
|
||||
--pico-font-weight: 600;
|
||||
}
|
||||
|
||||
thead th,
|
||||
thead td,
|
||||
tfoot th,
|
||||
|
@ -1006,8 +1010,8 @@ main {
|
|||
text-indent: 0;
|
||||
}
|
||||
|
||||
.pico th,
|
||||
.pico td {
|
||||
.pico table th,
|
||||
.pico 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 @@ main {
|
|||
text-align: start;
|
||||
}
|
||||
|
||||
.pico tfoot th,
|
||||
.pico tfoot td {
|
||||
.pico 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;
|
||||
}
|
||||
|
||||
.pico table > tfoot th,
|
||||
.pico table > tfoot td {
|
||||
border-top: var(--pico-border-width) solid var(--pico-table-border-color);
|
||||
border-bottom: 0;
|
||||
}
|
||||
|
||||
.pico table.striped tbody tr:nth-child(odd of :not([hidden])) th,
|
||||
.pico table.striped tbody tr:nth-child(odd of :not([hidden])) td {
|
||||
.pico 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;
|
||||
}
|
||||
|
||||
.pico table.striped > tbody > tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr:nth-child(odd) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr:nth-child(even) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] {
|
||||
display: none;
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr:nth-child(odd) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr:nth-child(even) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -129,6 +129,10 @@ h6 {
|
|||
--pico-typography-spacing-top: 1.5rem;
|
||||
}
|
||||
|
||||
table > caption {
|
||||
--pico-font-weight: 600;
|
||||
}
|
||||
|
||||
thead th,
|
||||
thead td,
|
||||
tfoot th,
|
||||
|
@ -1006,8 +1010,8 @@ main {
|
|||
text-indent: 0;
|
||||
}
|
||||
|
||||
.pico th,
|
||||
.pico td {
|
||||
.pico table th,
|
||||
.pico 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 @@ main {
|
|||
text-align: start;
|
||||
}
|
||||
|
||||
.pico tfoot th,
|
||||
.pico tfoot td {
|
||||
.pico 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;
|
||||
}
|
||||
|
||||
.pico table > tfoot th,
|
||||
.pico table > tfoot td {
|
||||
border-top: var(--pico-border-width) solid var(--pico-table-border-color);
|
||||
border-bottom: 0;
|
||||
}
|
||||
|
||||
.pico table.striped tbody tr:nth-child(odd of :not([hidden])) th,
|
||||
.pico table.striped tbody tr:nth-child(odd of :not([hidden])) td {
|
||||
.pico 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;
|
||||
}
|
||||
|
||||
.pico table.striped > tbody > tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr:nth-child(odd) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr:nth-child(even) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] {
|
||||
display: none;
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr:nth-child(odd) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr:nth-child(even) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
2
css/pico.classless.conditional.green.min.css
vendored
2
css/pico.classless.conditional.green.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -129,6 +129,10 @@ h6 {
|
|||
--pico-typography-spacing-top: 1.5rem;
|
||||
}
|
||||
|
||||
table > caption {
|
||||
--pico-font-weight: 600;
|
||||
}
|
||||
|
||||
thead th,
|
||||
thead td,
|
||||
tfoot th,
|
||||
|
@ -1006,8 +1010,8 @@ main {
|
|||
text-indent: 0;
|
||||
}
|
||||
|
||||
.pico th,
|
||||
.pico td {
|
||||
.pico table th,
|
||||
.pico 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 @@ main {
|
|||
text-align: start;
|
||||
}
|
||||
|
||||
.pico tfoot th,
|
||||
.pico tfoot td {
|
||||
.pico 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;
|
||||
}
|
||||
|
||||
.pico table > tfoot th,
|
||||
.pico table > tfoot td {
|
||||
border-top: var(--pico-border-width) solid var(--pico-table-border-color);
|
||||
border-bottom: 0;
|
||||
}
|
||||
|
||||
.pico table.striped tbody tr:nth-child(odd of :not([hidden])) th,
|
||||
.pico table.striped tbody tr:nth-child(odd of :not([hidden])) td {
|
||||
.pico 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;
|
||||
}
|
||||
|
||||
.pico table.striped > tbody > tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr:nth-child(odd) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr:nth-child(even) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] {
|
||||
display: none;
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr:nth-child(odd) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr:nth-child(even) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
2
css/pico.classless.conditional.grey.min.css
vendored
2
css/pico.classless.conditional.grey.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -129,6 +129,10 @@ h6 {
|
|||
--pico-typography-spacing-top: 1.5rem;
|
||||
}
|
||||
|
||||
table > caption {
|
||||
--pico-font-weight: 600;
|
||||
}
|
||||
|
||||
thead th,
|
||||
thead td,
|
||||
tfoot th,
|
||||
|
@ -1006,8 +1010,8 @@ main {
|
|||
text-indent: 0;
|
||||
}
|
||||
|
||||
.pico th,
|
||||
.pico td {
|
||||
.pico table th,
|
||||
.pico 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 @@ main {
|
|||
text-align: start;
|
||||
}
|
||||
|
||||
.pico tfoot th,
|
||||
.pico tfoot td {
|
||||
.pico 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;
|
||||
}
|
||||
|
||||
.pico table > tfoot th,
|
||||
.pico table > tfoot td {
|
||||
border-top: var(--pico-border-width) solid var(--pico-table-border-color);
|
||||
border-bottom: 0;
|
||||
}
|
||||
|
||||
.pico table.striped tbody tr:nth-child(odd of :not([hidden])) th,
|
||||
.pico table.striped tbody tr:nth-child(odd of :not([hidden])) td {
|
||||
.pico 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;
|
||||
}
|
||||
|
||||
.pico table.striped > tbody > tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr:nth-child(odd) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr:nth-child(even) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] {
|
||||
display: none;
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr:nth-child(odd) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr:nth-child(even) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -129,6 +129,10 @@ h6 {
|
|||
--pico-typography-spacing-top: 1.5rem;
|
||||
}
|
||||
|
||||
table > caption {
|
||||
--pico-font-weight: 600;
|
||||
}
|
||||
|
||||
thead th,
|
||||
thead td,
|
||||
tfoot th,
|
||||
|
@ -1006,8 +1010,8 @@ main {
|
|||
text-indent: 0;
|
||||
}
|
||||
|
||||
.pico th,
|
||||
.pico td {
|
||||
.pico table th,
|
||||
.pico 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 @@ main {
|
|||
text-align: start;
|
||||
}
|
||||
|
||||
.pico tfoot th,
|
||||
.pico tfoot td {
|
||||
.pico 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;
|
||||
}
|
||||
|
||||
.pico table > tfoot th,
|
||||
.pico table > tfoot td {
|
||||
border-top: var(--pico-border-width) solid var(--pico-table-border-color);
|
||||
border-bottom: 0;
|
||||
}
|
||||
|
||||
.pico table.striped tbody tr:nth-child(odd of :not([hidden])) th,
|
||||
.pico table.striped tbody tr:nth-child(odd of :not([hidden])) td {
|
||||
.pico 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;
|
||||
}
|
||||
|
||||
.pico table.striped > tbody > tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr:nth-child(odd) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr:nth-child(even) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] {
|
||||
display: none;
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr:nth-child(odd) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr:nth-child(even) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
2
css/pico.classless.conditional.jade.min.css
vendored
2
css/pico.classless.conditional.jade.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -129,6 +129,10 @@ h6 {
|
|||
--pico-typography-spacing-top: 1.5rem;
|
||||
}
|
||||
|
||||
table > caption {
|
||||
--pico-font-weight: 600;
|
||||
}
|
||||
|
||||
thead th,
|
||||
thead td,
|
||||
tfoot th,
|
||||
|
@ -1006,8 +1010,8 @@ main {
|
|||
text-indent: 0;
|
||||
}
|
||||
|
||||
.pico th,
|
||||
.pico td {
|
||||
.pico table th,
|
||||
.pico 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 @@ main {
|
|||
text-align: start;
|
||||
}
|
||||
|
||||
.pico tfoot th,
|
||||
.pico tfoot td {
|
||||
.pico 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;
|
||||
}
|
||||
|
||||
.pico table > tfoot th,
|
||||
.pico table > tfoot td {
|
||||
border-top: var(--pico-border-width) solid var(--pico-table-border-color);
|
||||
border-bottom: 0;
|
||||
}
|
||||
|
||||
.pico table.striped tbody tr:nth-child(odd of :not([hidden])) th,
|
||||
.pico table.striped tbody tr:nth-child(odd of :not([hidden])) td {
|
||||
.pico 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;
|
||||
}
|
||||
|
||||
.pico table.striped > tbody > tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr:nth-child(odd) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr:nth-child(even) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] {
|
||||
display: none;
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr:nth-child(odd) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr:nth-child(even) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
2
css/pico.classless.conditional.lime.min.css
vendored
2
css/pico.classless.conditional.lime.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -129,6 +129,10 @@ h6 {
|
|||
--pico-typography-spacing-top: 1.5rem;
|
||||
}
|
||||
|
||||
table > caption {
|
||||
--pico-font-weight: 600;
|
||||
}
|
||||
|
||||
thead th,
|
||||
thead td,
|
||||
tfoot th,
|
||||
|
@ -1006,8 +1010,8 @@ main {
|
|||
text-indent: 0;
|
||||
}
|
||||
|
||||
.pico th,
|
||||
.pico td {
|
||||
.pico table th,
|
||||
.pico 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 @@ main {
|
|||
text-align: start;
|
||||
}
|
||||
|
||||
.pico tfoot th,
|
||||
.pico tfoot td {
|
||||
.pico 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;
|
||||
}
|
||||
|
||||
.pico table > tfoot th,
|
||||
.pico table > tfoot td {
|
||||
border-top: var(--pico-border-width) solid var(--pico-table-border-color);
|
||||
border-bottom: 0;
|
||||
}
|
||||
|
||||
.pico table.striped tbody tr:nth-child(odd of :not([hidden])) th,
|
||||
.pico table.striped tbody tr:nth-child(odd of :not([hidden])) td {
|
||||
.pico 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;
|
||||
}
|
||||
|
||||
.pico table.striped > tbody > tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr:nth-child(odd) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr:nth-child(even) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] {
|
||||
display: none;
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr:nth-child(odd) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr:nth-child(even) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -129,6 +129,10 @@ h6 {
|
|||
--pico-typography-spacing-top: 1.5rem;
|
||||
}
|
||||
|
||||
table > caption {
|
||||
--pico-font-weight: 600;
|
||||
}
|
||||
|
||||
thead th,
|
||||
thead td,
|
||||
tfoot th,
|
||||
|
@ -1006,8 +1010,8 @@ main {
|
|||
text-indent: 0;
|
||||
}
|
||||
|
||||
.pico th,
|
||||
.pico td {
|
||||
.pico table th,
|
||||
.pico 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 @@ main {
|
|||
text-align: start;
|
||||
}
|
||||
|
||||
.pico tfoot th,
|
||||
.pico tfoot td {
|
||||
.pico 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;
|
||||
}
|
||||
|
||||
.pico table > tfoot th,
|
||||
.pico table > tfoot td {
|
||||
border-top: var(--pico-border-width) solid var(--pico-table-border-color);
|
||||
border-bottom: 0;
|
||||
}
|
||||
|
||||
.pico table.striped tbody tr:nth-child(odd of :not([hidden])) th,
|
||||
.pico table.striped tbody tr:nth-child(odd of :not([hidden])) td {
|
||||
.pico 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;
|
||||
}
|
||||
|
||||
.pico table.striped > tbody > tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr:nth-child(odd) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr:nth-child(even) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] {
|
||||
display: none;
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr:nth-child(odd) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr:nth-child(even) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
2
css/pico.classless.conditional.pink.min.css
vendored
2
css/pico.classless.conditional.pink.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -129,6 +129,10 @@ h6 {
|
|||
--pico-typography-spacing-top: 1.5rem;
|
||||
}
|
||||
|
||||
table > caption {
|
||||
--pico-font-weight: 600;
|
||||
}
|
||||
|
||||
thead th,
|
||||
thead td,
|
||||
tfoot th,
|
||||
|
@ -1006,8 +1010,8 @@ main {
|
|||
text-indent: 0;
|
||||
}
|
||||
|
||||
.pico th,
|
||||
.pico td {
|
||||
.pico table th,
|
||||
.pico 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 @@ main {
|
|||
text-align: start;
|
||||
}
|
||||
|
||||
.pico tfoot th,
|
||||
.pico tfoot td {
|
||||
.pico 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;
|
||||
}
|
||||
|
||||
.pico table > tfoot th,
|
||||
.pico table > tfoot td {
|
||||
border-top: var(--pico-border-width) solid var(--pico-table-border-color);
|
||||
border-bottom: 0;
|
||||
}
|
||||
|
||||
.pico table.striped tbody tr:nth-child(odd of :not([hidden])) th,
|
||||
.pico table.striped tbody tr:nth-child(odd of :not([hidden])) td {
|
||||
.pico 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;
|
||||
}
|
||||
|
||||
.pico table.striped > tbody > tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr:nth-child(odd) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr:nth-child(even) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] {
|
||||
display: none;
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr:nth-child(odd) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr:nth-child(even) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -129,6 +129,10 @@ h6 {
|
|||
--pico-typography-spacing-top: 1.5rem;
|
||||
}
|
||||
|
||||
table > caption {
|
||||
--pico-font-weight: 600;
|
||||
}
|
||||
|
||||
thead th,
|
||||
thead td,
|
||||
tfoot th,
|
||||
|
@ -1006,8 +1010,8 @@ main {
|
|||
text-indent: 0;
|
||||
}
|
||||
|
||||
.pico th,
|
||||
.pico td {
|
||||
.pico table th,
|
||||
.pico 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 @@ main {
|
|||
text-align: start;
|
||||
}
|
||||
|
||||
.pico tfoot th,
|
||||
.pico tfoot td {
|
||||
.pico 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;
|
||||
}
|
||||
|
||||
.pico table > tfoot th,
|
||||
.pico table > tfoot td {
|
||||
border-top: var(--pico-border-width) solid var(--pico-table-border-color);
|
||||
border-bottom: 0;
|
||||
}
|
||||
|
||||
.pico table.striped tbody tr:nth-child(odd of :not([hidden])) th,
|
||||
.pico table.striped tbody tr:nth-child(odd of :not([hidden])) td {
|
||||
.pico 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;
|
||||
}
|
||||
|
||||
.pico table.striped > tbody > tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr:nth-child(odd) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr:nth-child(even) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] {
|
||||
display: none;
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr:nth-child(odd) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr:nth-child(even) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -129,6 +129,10 @@ h6 {
|
|||
--pico-typography-spacing-top: 1.5rem;
|
||||
}
|
||||
|
||||
table > caption {
|
||||
--pico-font-weight: 600;
|
||||
}
|
||||
|
||||
thead th,
|
||||
thead td,
|
||||
tfoot th,
|
||||
|
@ -1006,8 +1010,8 @@ main {
|
|||
text-indent: 0;
|
||||
}
|
||||
|
||||
.pico th,
|
||||
.pico td {
|
||||
.pico table th,
|
||||
.pico 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 @@ main {
|
|||
text-align: start;
|
||||
}
|
||||
|
||||
.pico tfoot th,
|
||||
.pico tfoot td {
|
||||
.pico 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;
|
||||
}
|
||||
|
||||
.pico table > tfoot th,
|
||||
.pico table > tfoot td {
|
||||
border-top: var(--pico-border-width) solid var(--pico-table-border-color);
|
||||
border-bottom: 0;
|
||||
}
|
||||
|
||||
.pico table.striped tbody tr:nth-child(odd of :not([hidden])) th,
|
||||
.pico table.striped tbody tr:nth-child(odd of :not([hidden])) td {
|
||||
.pico 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;
|
||||
}
|
||||
|
||||
.pico table.striped > tbody > tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr:nth-child(odd) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr:nth-child(even) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] {
|
||||
display: none;
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr:nth-child(odd) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr:nth-child(even) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
2
css/pico.classless.conditional.red.min.css
vendored
2
css/pico.classless.conditional.red.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -129,6 +129,10 @@ h6 {
|
|||
--pico-typography-spacing-top: 1.5rem;
|
||||
}
|
||||
|
||||
table > caption {
|
||||
--pico-font-weight: 600;
|
||||
}
|
||||
|
||||
thead th,
|
||||
thead td,
|
||||
tfoot th,
|
||||
|
@ -1006,8 +1010,8 @@ main {
|
|||
text-indent: 0;
|
||||
}
|
||||
|
||||
.pico th,
|
||||
.pico td {
|
||||
.pico table th,
|
||||
.pico 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 @@ main {
|
|||
text-align: start;
|
||||
}
|
||||
|
||||
.pico tfoot th,
|
||||
.pico tfoot td {
|
||||
.pico 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;
|
||||
}
|
||||
|
||||
.pico table > tfoot th,
|
||||
.pico table > tfoot td {
|
||||
border-top: var(--pico-border-width) solid var(--pico-table-border-color);
|
||||
border-bottom: 0;
|
||||
}
|
||||
|
||||
.pico table.striped tbody tr:nth-child(odd of :not([hidden])) th,
|
||||
.pico table.striped tbody tr:nth-child(odd of :not([hidden])) td {
|
||||
.pico 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;
|
||||
}
|
||||
|
||||
.pico table.striped > tbody > tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr:nth-child(odd) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr:nth-child(even) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] {
|
||||
display: none;
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr:nth-child(odd) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr:nth-child(even) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
2
css/pico.classless.conditional.sand.min.css
vendored
2
css/pico.classless.conditional.sand.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -129,6 +129,10 @@ h6 {
|
|||
--pico-typography-spacing-top: 1.5rem;
|
||||
}
|
||||
|
||||
table > caption {
|
||||
--pico-font-weight: 600;
|
||||
}
|
||||
|
||||
thead th,
|
||||
thead td,
|
||||
tfoot th,
|
||||
|
@ -1006,8 +1010,8 @@ main {
|
|||
text-indent: 0;
|
||||
}
|
||||
|
||||
.pico th,
|
||||
.pico td {
|
||||
.pico table th,
|
||||
.pico 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 @@ main {
|
|||
text-align: start;
|
||||
}
|
||||
|
||||
.pico tfoot th,
|
||||
.pico tfoot td {
|
||||
.pico 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;
|
||||
}
|
||||
|
||||
.pico table > tfoot th,
|
||||
.pico table > tfoot td {
|
||||
border-top: var(--pico-border-width) solid var(--pico-table-border-color);
|
||||
border-bottom: 0;
|
||||
}
|
||||
|
||||
.pico table.striped tbody tr:nth-child(odd of :not([hidden])) th,
|
||||
.pico table.striped tbody tr:nth-child(odd of :not([hidden])) td {
|
||||
.pico 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;
|
||||
}
|
||||
|
||||
.pico table.striped > tbody > tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr:nth-child(odd) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr:nth-child(even) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] {
|
||||
display: none;
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr:nth-child(odd) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr:nth-child(even) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
2
css/pico.classless.conditional.slate.min.css
vendored
2
css/pico.classless.conditional.slate.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -129,6 +129,10 @@ h6 {
|
|||
--pico-typography-spacing-top: 1.5rem;
|
||||
}
|
||||
|
||||
table > caption {
|
||||
--pico-font-weight: 600;
|
||||
}
|
||||
|
||||
thead th,
|
||||
thead td,
|
||||
tfoot th,
|
||||
|
@ -1006,8 +1010,8 @@ main {
|
|||
text-indent: 0;
|
||||
}
|
||||
|
||||
.pico th,
|
||||
.pico td {
|
||||
.pico table th,
|
||||
.pico 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 @@ main {
|
|||
text-align: start;
|
||||
}
|
||||
|
||||
.pico tfoot th,
|
||||
.pico tfoot td {
|
||||
.pico 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;
|
||||
}
|
||||
|
||||
.pico table > tfoot th,
|
||||
.pico table > tfoot td {
|
||||
border-top: var(--pico-border-width) solid var(--pico-table-border-color);
|
||||
border-bottom: 0;
|
||||
}
|
||||
|
||||
.pico table.striped tbody tr:nth-child(odd of :not([hidden])) th,
|
||||
.pico table.striped tbody tr:nth-child(odd of :not([hidden])) td {
|
||||
.pico 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;
|
||||
}
|
||||
|
||||
.pico table.striped > tbody > tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr:nth-child(odd) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr:nth-child(even) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] {
|
||||
display: none;
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr:nth-child(odd) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr:nth-child(even) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -129,6 +129,10 @@ h6 {
|
|||
--pico-typography-spacing-top: 1.5rem;
|
||||
}
|
||||
|
||||
table > caption {
|
||||
--pico-font-weight: 600;
|
||||
}
|
||||
|
||||
thead th,
|
||||
thead td,
|
||||
tfoot th,
|
||||
|
@ -1006,8 +1010,8 @@ main {
|
|||
text-indent: 0;
|
||||
}
|
||||
|
||||
.pico th,
|
||||
.pico td {
|
||||
.pico table th,
|
||||
.pico 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 @@ main {
|
|||
text-align: start;
|
||||
}
|
||||
|
||||
.pico tfoot th,
|
||||
.pico tfoot td {
|
||||
.pico 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;
|
||||
}
|
||||
|
||||
.pico table > tfoot th,
|
||||
.pico table > tfoot td {
|
||||
border-top: var(--pico-border-width) solid var(--pico-table-border-color);
|
||||
border-bottom: 0;
|
||||
}
|
||||
|
||||
.pico table.striped tbody tr:nth-child(odd of :not([hidden])) th,
|
||||
.pico table.striped tbody tr:nth-child(odd of :not([hidden])) td {
|
||||
.pico 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;
|
||||
}
|
||||
|
||||
.pico table.striped > tbody > tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr:nth-child(odd) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr:nth-child(even) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] {
|
||||
display: none;
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr:nth-child(odd) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr:nth-child(even) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -129,6 +129,10 @@ h6 {
|
|||
--pico-typography-spacing-top: 1.5rem;
|
||||
}
|
||||
|
||||
table > caption {
|
||||
--pico-font-weight: 600;
|
||||
}
|
||||
|
||||
thead th,
|
||||
thead td,
|
||||
tfoot th,
|
||||
|
@ -1006,8 +1010,8 @@ main {
|
|||
text-indent: 0;
|
||||
}
|
||||
|
||||
.pico th,
|
||||
.pico td {
|
||||
.pico table th,
|
||||
.pico 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 @@ main {
|
|||
text-align: start;
|
||||
}
|
||||
|
||||
.pico tfoot th,
|
||||
.pico tfoot td {
|
||||
.pico 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;
|
||||
}
|
||||
|
||||
.pico table > tfoot th,
|
||||
.pico table > tfoot td {
|
||||
border-top: var(--pico-border-width) solid var(--pico-table-border-color);
|
||||
border-bottom: 0;
|
||||
}
|
||||
|
||||
.pico table.striped tbody tr:nth-child(odd of :not([hidden])) th,
|
||||
.pico table.striped tbody tr:nth-child(odd of :not([hidden])) td {
|
||||
.pico 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;
|
||||
}
|
||||
|
||||
.pico table.striped > tbody > tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr:nth-child(odd) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr:nth-child(even) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] {
|
||||
display: none;
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr:nth-child(odd) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr:nth-child(even) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
2
css/pico.classless.conditional.zinc.min.css
vendored
2
css/pico.classless.conditional.zinc.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -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);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -129,6 +129,10 @@ h6 {
|
|||
--pico-typography-spacing-top: 1.5rem;
|
||||
}
|
||||
|
||||
table > caption {
|
||||
--pico-font-weight: 600;
|
||||
}
|
||||
|
||||
thead th,
|
||||
thead td,
|
||||
tfoot th,
|
||||
|
@ -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);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
2
css/pico.classless.cyan.min.css
vendored
2
css/pico.classless.cyan.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -129,6 +129,10 @@ h6 {
|
|||
--pico-typography-spacing-top: 1.5rem;
|
||||
}
|
||||
|
||||
table > caption {
|
||||
--pico-font-weight: 600;
|
||||
}
|
||||
|
||||
thead th,
|
||||
thead td,
|
||||
tfoot th,
|
||||
|
@ -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);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
2
css/pico.classless.fuchsia.min.css
vendored
2
css/pico.classless.fuchsia.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -129,6 +129,10 @@ h6 {
|
|||
--pico-typography-spacing-top: 1.5rem;
|
||||
}
|
||||
|
||||
table > caption {
|
||||
--pico-font-weight: 600;
|
||||
}
|
||||
|
||||
thead th,
|
||||
thead td,
|
||||
tfoot th,
|
||||
|
@ -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);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
2
css/pico.classless.green.min.css
vendored
2
css/pico.classless.green.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -129,6 +129,10 @@ h6 {
|
|||
--pico-typography-spacing-top: 1.5rem;
|
||||
}
|
||||
|
||||
table > caption {
|
||||
--pico-font-weight: 600;
|
||||
}
|
||||
|
||||
thead th,
|
||||
thead td,
|
||||
tfoot th,
|
||||
|
@ -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);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
2
css/pico.classless.grey.min.css
vendored
2
css/pico.classless.grey.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -129,6 +129,10 @@ h6 {
|
|||
--pico-typography-spacing-top: 1.5rem;
|
||||
}
|
||||
|
||||
table > caption {
|
||||
--pico-font-weight: 600;
|
||||
}
|
||||
|
||||
thead th,
|
||||
thead td,
|
||||
tfoot th,
|
||||
|
@ -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);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
2
css/pico.classless.indigo.min.css
vendored
2
css/pico.classless.indigo.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -129,6 +129,10 @@ h6 {
|
|||
--pico-typography-spacing-top: 1.5rem;
|
||||
}
|
||||
|
||||
table > caption {
|
||||
--pico-font-weight: 600;
|
||||
}
|
||||
|
||||
thead th,
|
||||
thead td,
|
||||
tfoot th,
|
||||
|
@ -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);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
2
css/pico.classless.jade.min.css
vendored
2
css/pico.classless.jade.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -129,6 +129,10 @@ h6 {
|
|||
--pico-typography-spacing-top: 1.5rem;
|
||||
}
|
||||
|
||||
table > caption {
|
||||
--pico-font-weight: 600;
|
||||
}
|
||||
|
||||
thead th,
|
||||
thead td,
|
||||
tfoot th,
|
||||
|
@ -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);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
2
css/pico.classless.lime.min.css
vendored
2
css/pico.classless.lime.min.css
vendored
File diff suppressed because one or more lines are too long
2
css/pico.classless.min.css
vendored
2
css/pico.classless.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -129,6 +129,10 @@ h6 {
|
|||
--pico-typography-spacing-top: 1.5rem;
|
||||
}
|
||||
|
||||
table > caption {
|
||||
--pico-font-weight: 600;
|
||||
}
|
||||
|
||||
thead th,
|
||||
thead td,
|
||||
tfoot th,
|
||||
|
@ -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);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
2
css/pico.classless.orange.min.css
vendored
2
css/pico.classless.orange.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -129,6 +129,10 @@ h6 {
|
|||
--pico-typography-spacing-top: 1.5rem;
|
||||
}
|
||||
|
||||
table > caption {
|
||||
--pico-font-weight: 600;
|
||||
}
|
||||
|
||||
thead th,
|
||||
thead td,
|
||||
tfoot th,
|
||||
|
@ -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);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
2
css/pico.classless.pink.min.css
vendored
2
css/pico.classless.pink.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -129,6 +129,10 @@ h6 {
|
|||
--pico-typography-spacing-top: 1.5rem;
|
||||
}
|
||||
|
||||
table > caption {
|
||||
--pico-font-weight: 600;
|
||||
}
|
||||
|
||||
thead th,
|
||||
thead td,
|
||||
tfoot th,
|
||||
|
@ -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);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
2
css/pico.classless.pumpkin.min.css
vendored
2
css/pico.classless.pumpkin.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -129,6 +129,10 @@ h6 {
|
|||
--pico-typography-spacing-top: 1.5rem;
|
||||
}
|
||||
|
||||
table > caption {
|
||||
--pico-font-weight: 600;
|
||||
}
|
||||
|
||||
thead th,
|
||||
thead td,
|
||||
tfoot th,
|
||||
|
@ -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);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
2
css/pico.classless.purple.min.css
vendored
2
css/pico.classless.purple.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -129,6 +129,10 @@ h6 {
|
|||
--pico-typography-spacing-top: 1.5rem;
|
||||
}
|
||||
|
||||
table > caption {
|
||||
--pico-font-weight: 600;
|
||||
}
|
||||
|
||||
thead th,
|
||||
thead td,
|
||||
tfoot th,
|
||||
|
@ -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);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
2
css/pico.classless.red.min.css
vendored
2
css/pico.classless.red.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -129,6 +129,10 @@ h6 {
|
|||
--pico-typography-spacing-top: 1.5rem;
|
||||
}
|
||||
|
||||
table > caption {
|
||||
--pico-font-weight: 600;
|
||||
}
|
||||
|
||||
thead th,
|
||||
thead td,
|
||||
tfoot th,
|
||||
|
@ -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);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
2
css/pico.classless.sand.min.css
vendored
2
css/pico.classless.sand.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -129,6 +129,10 @@ h6 {
|
|||
--pico-typography-spacing-top: 1.5rem;
|
||||
}
|
||||
|
||||
table > caption {
|
||||
--pico-font-weight: 600;
|
||||
}
|
||||
|
||||
thead th,
|
||||
thead td,
|
||||
tfoot th,
|
||||
|
@ -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);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
2
css/pico.classless.slate.min.css
vendored
2
css/pico.classless.slate.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -129,6 +129,10 @@ h6 {
|
|||
--pico-typography-spacing-top: 1.5rem;
|
||||
}
|
||||
|
||||
table > caption {
|
||||
--pico-font-weight: 600;
|
||||
}
|
||||
|
||||
thead th,
|
||||
thead td,
|
||||
tfoot th,
|
||||
|
@ -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);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
2
css/pico.classless.violet.min.css
vendored
2
css/pico.classless.violet.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -129,6 +129,10 @@ h6 {
|
|||
--pico-typography-spacing-top: 1.5rem;
|
||||
}
|
||||
|
||||
table > caption {
|
||||
--pico-font-weight: 600;
|
||||
}
|
||||
|
||||
thead th,
|
||||
thead td,
|
||||
tfoot th,
|
||||
|
@ -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);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
2
css/pico.classless.yellow.min.css
vendored
2
css/pico.classless.yellow.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -129,6 +129,10 @@ h6 {
|
|||
--pico-typography-spacing-top: 1.5rem;
|
||||
}
|
||||
|
||||
table > caption {
|
||||
--pico-font-weight: 600;
|
||||
}
|
||||
|
||||
thead th,
|
||||
thead td,
|
||||
tfoot th,
|
||||
|
@ -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);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
2
css/pico.classless.zinc.min.css
vendored
2
css/pico.classless.zinc.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -134,6 +134,10 @@ h6 {
|
|||
--pico-typography-spacing-top: 1.5rem;
|
||||
}
|
||||
|
||||
table > caption {
|
||||
--pico-font-weight: 600;
|
||||
}
|
||||
|
||||
thead th,
|
||||
thead td,
|
||||
tfoot th,
|
||||
|
@ -1732,8 +1736,8 @@ main {
|
|||
text-indent: 0;
|
||||
}
|
||||
|
||||
.pico th,
|
||||
.pico td {
|
||||
.pico table th,
|
||||
.pico 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);
|
||||
|
@ -1743,15 +1747,73 @@ main {
|
|||
text-align: start;
|
||||
}
|
||||
|
||||
.pico tfoot th,
|
||||
.pico tfoot td {
|
||||
.pico 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;
|
||||
}
|
||||
|
||||
.pico table > tfoot th,
|
||||
.pico table > tfoot td {
|
||||
border-top: var(--pico-border-width) solid var(--pico-table-border-color);
|
||||
border-bottom: 0;
|
||||
}
|
||||
|
||||
.pico table.striped tbody tr:nth-child(odd of :not([hidden])) th,
|
||||
.pico table.striped tbody tr:nth-child(odd of :not([hidden])) td {
|
||||
.pico 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;
|
||||
}
|
||||
|
||||
.pico table.striped > tbody > tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr:nth-child(odd) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr:nth-child(even) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] {
|
||||
display: none;
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr:nth-child(odd) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr:nth-child(even) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
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
|
@ -134,6 +134,10 @@ h6 {
|
|||
--pico-typography-spacing-top: 1.5rem;
|
||||
}
|
||||
|
||||
table > caption {
|
||||
--pico-font-weight: 600;
|
||||
}
|
||||
|
||||
thead th,
|
||||
thead td,
|
||||
tfoot th,
|
||||
|
@ -1732,8 +1736,8 @@ main {
|
|||
text-indent: 0;
|
||||
}
|
||||
|
||||
.pico th,
|
||||
.pico td {
|
||||
.pico table th,
|
||||
.pico 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);
|
||||
|
@ -1743,15 +1747,73 @@ main {
|
|||
text-align: start;
|
||||
}
|
||||
|
||||
.pico tfoot th,
|
||||
.pico tfoot td {
|
||||
.pico 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;
|
||||
}
|
||||
|
||||
.pico table > tfoot th,
|
||||
.pico table > tfoot td {
|
||||
border-top: var(--pico-border-width) solid var(--pico-table-border-color);
|
||||
border-bottom: 0;
|
||||
}
|
||||
|
||||
.pico table.striped tbody tr:nth-child(odd of :not([hidden])) th,
|
||||
.pico table.striped tbody tr:nth-child(odd of :not([hidden])) td {
|
||||
.pico 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;
|
||||
}
|
||||
|
||||
.pico table.striped > tbody > tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr:nth-child(odd) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr:nth-child(even) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] {
|
||||
display: none;
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr:nth-child(odd) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr:nth-child(even) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
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
|
@ -134,6 +134,10 @@ h6 {
|
|||
--pico-typography-spacing-top: 1.5rem;
|
||||
}
|
||||
|
||||
table > caption {
|
||||
--pico-font-weight: 600;
|
||||
}
|
||||
|
||||
thead th,
|
||||
thead td,
|
||||
tfoot th,
|
||||
|
@ -1732,8 +1736,8 @@ main {
|
|||
text-indent: 0;
|
||||
}
|
||||
|
||||
.pico th,
|
||||
.pico td {
|
||||
.pico table th,
|
||||
.pico 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);
|
||||
|
@ -1743,15 +1747,73 @@ main {
|
|||
text-align: start;
|
||||
}
|
||||
|
||||
.pico tfoot th,
|
||||
.pico tfoot td {
|
||||
.pico 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;
|
||||
}
|
||||
|
||||
.pico table > tfoot th,
|
||||
.pico table > tfoot td {
|
||||
border-top: var(--pico-border-width) solid var(--pico-table-border-color);
|
||||
border-bottom: 0;
|
||||
}
|
||||
|
||||
.pico table.striped tbody tr:nth-child(odd of :not([hidden])) th,
|
||||
.pico table.striped tbody tr:nth-child(odd of :not([hidden])) td {
|
||||
.pico 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;
|
||||
}
|
||||
|
||||
.pico table.striped > tbody > tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr:nth-child(odd) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr:nth-child(even) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] {
|
||||
display: none;
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr:nth-child(odd) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr:nth-child(even) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
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
|
@ -134,6 +134,10 @@ h6 {
|
|||
--pico-typography-spacing-top: 1.5rem;
|
||||
}
|
||||
|
||||
table > caption {
|
||||
--pico-font-weight: 600;
|
||||
}
|
||||
|
||||
thead th,
|
||||
thead td,
|
||||
tfoot th,
|
||||
|
@ -232,19 +236,19 @@ nav details.dropdown summary:focus-visible {
|
|||
color-scheme: light;
|
||||
--pico-background-color: #fff;
|
||||
--pico-color: #373c44;
|
||||
--pico-text-selection-color: rgba(183, 136, 0, 0.25);
|
||||
--pico-text-selection-color: rgba(116, 139, 248, 0.25);
|
||||
--pico-muted-color: #646b79;
|
||||
--pico-muted-border-color: rgb(231, 234, 239.5);
|
||||
--pico-primary: #876400;
|
||||
--pico-primary-background: #ffbf00;
|
||||
--pico-primary: #2060df;
|
||||
--pico-primary-background: #2060df;
|
||||
--pico-primary-border: var(--pico-primary-background);
|
||||
--pico-primary-underline: rgba(135, 100, 0, 0.5);
|
||||
--pico-primary-hover: #694d00;
|
||||
--pico-primary-hover-background: #e8ae01;
|
||||
--pico-primary-underline: rgba(32, 96, 223, 0.5);
|
||||
--pico-primary-hover: #184eb8;
|
||||
--pico-primary-hover-background: #1d59d0;
|
||||
--pico-primary-hover-border: var(--pico-primary-hover-background);
|
||||
--pico-primary-hover-underline: var(--pico-primary-hover);
|
||||
--pico-primary-focus: rgba(183, 136, 0, 0.5);
|
||||
--pico-primary-inverse: #000;
|
||||
--pico-primary-focus: rgba(116, 139, 248, 0.5);
|
||||
--pico-primary-inverse: #fff;
|
||||
--pico-secondary: #5d6b89;
|
||||
--pico-secondary-background: #525f7a;
|
||||
--pico-secondary-border: var(--pico-secondary-background);
|
||||
|
@ -308,7 +312,7 @@ nav details.dropdown summary:focus-visible {
|
|||
--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.5rem rgba(0, 0, 0, 0.25);
|
||||
--pico-switch-thumb-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
|
||||
--pico-range-border-color: #dfe3eb;
|
||||
--pico-range-active-border-color: #bfc7d9;
|
||||
--pico-range-thumb-border-color: var(--pico-background-color);
|
||||
|
@ -343,7 +347,7 @@ nav details.dropdown summary:focus-visible {
|
|||
[data-theme=light] .pico details summary[role=button]:not(.outline, .contrast, .secondary)::after,
|
||||
:root:not([data-theme=dark]) .pico details summary[role=button]:not(.outline, .contrast, .secondary)::after,
|
||||
:host(:not([data-theme=dark])) .pico details summary[role=button]:not(.outline, .contrast, .secondary)::after {
|
||||
filter: brightness(100) invert(1);
|
||||
filter: brightness(100) invert(0);
|
||||
}
|
||||
[data-theme=light] .pico details summary.secondary[role=button]::after,
|
||||
:root:not([data-theme=dark]) .pico details summary.secondary[role=button]::after,
|
||||
|
@ -358,7 +362,7 @@ nav details.dropdown summary:focus-visible {
|
|||
[data-theme=light] .pico [aria-busy=true]:not(input, select, textarea, html, form):is(button, [type=submit], [type=button], [type=reset], [role=button]):not(.outline)::before,
|
||||
:root:not([data-theme=dark]) .pico [aria-busy=true]:not(input, select, textarea, html, form):is(button, [type=submit], [type=button], [type=reset], [role=button]):not(.outline)::before,
|
||||
:host(:not([data-theme=dark])) .pico [aria-busy=true]:not(input, select, textarea, html, form):is(button, [type=submit], [type=button], [type=reset], [role=button]):not(.outline)::before {
|
||||
filter: brightness(0) invert(1);
|
||||
filter: brightness(100) invert(0);
|
||||
}
|
||||
[data-theme=light] input:is([type=submit],
|
||||
[type=button],
|
||||
|
@ -387,19 +391,19 @@ 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(199, 148, 0, 0.1875);
|
||||
--pico-text-selection-color: rgba(137, 153, 249, 0.1875);
|
||||
--pico-muted-color: #7b8495;
|
||||
--pico-muted-border-color: #202632;
|
||||
--pico-primary: #c79400;
|
||||
--pico-primary-background: #ffbf00;
|
||||
--pico-primary: #8999f9;
|
||||
--pico-primary-background: #2060df;
|
||||
--pico-primary-border: var(--pico-primary-background);
|
||||
--pico-primary-underline: rgba(199, 148, 0, 0.5);
|
||||
--pico-primary-hover: #e8ae01;
|
||||
--pico-primary-hover-background: #fecc63;
|
||||
--pico-primary-underline: rgba(137, 153, 249, 0.5);
|
||||
--pico-primary-hover: #aeb5fb;
|
||||
--pico-primary-hover-background: #3c71f7;
|
||||
--pico-primary-hover-border: var(--pico-primary-hover-background);
|
||||
--pico-primary-hover-underline: var(--pico-primary-hover);
|
||||
--pico-primary-focus: rgba(199, 148, 0, 0.375);
|
||||
--pico-primary-inverse: #000;
|
||||
--pico-primary-focus: rgba(137, 153, 249, 0.375);
|
||||
--pico-primary-inverse: #fff;
|
||||
--pico-secondary: #969eaf;
|
||||
--pico-secondary-background: #525f7a;
|
||||
--pico-secondary-border: var(--pico-secondary-background);
|
||||
|
@ -463,7 +467,7 @@ nav details.dropdown summary:focus-visible {
|
|||
--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.5rem rgba(0, 0, 0, 0.25);
|
||||
--pico-switch-thumb-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
|
||||
--pico-range-border-color: #202632;
|
||||
--pico-range-active-border-color: #2a3140;
|
||||
--pico-range-thumb-border-color: var(--pico-background-color);
|
||||
|
@ -523,7 +527,7 @@ nav details.dropdown summary:focus-visible {
|
|||
}
|
||||
:root:not([data-theme]) .pico details summary[role=button]:not(.outline, .contrast, .secondary)::after,
|
||||
:host(:not([data-theme])) .pico details summary[role=button]:not(.outline, .contrast, .secondary)::after {
|
||||
filter: brightness(100) invert(1);
|
||||
filter: brightness(100) invert(0);
|
||||
}
|
||||
:root:not([data-theme]) .pico details summary.secondary[role=button]::after,
|
||||
:host(:not([data-theme])) .pico details summary.secondary[role=button]::after {
|
||||
|
@ -535,26 +539,26 @@ nav details.dropdown summary:focus-visible {
|
|||
}
|
||||
:root:not([data-theme]) .pico [aria-busy=true]:not(input, select, textarea, html, form):is(button, [type=submit], [type=button], [type=reset], [role=button]):not(.outline)::before,
|
||||
:host(:not([data-theme])) .pico [aria-busy=true]:not(input, select, textarea, html, form):is(button, [type=submit], [type=button], [type=reset], [role=button]):not(.outline)::before {
|
||||
filter: brightness(100) invert(0);
|
||||
filter: brightness(100) invert(1);
|
||||
}
|
||||
}
|
||||
[data-theme=dark] {
|
||||
color-scheme: dark;
|
||||
--pico-background-color: rgb(19, 22.5, 30.5);
|
||||
--pico-color: #c2c7d0;
|
||||
--pico-text-selection-color: rgba(199, 148, 0, 0.1875);
|
||||
--pico-text-selection-color: rgba(137, 153, 249, 0.1875);
|
||||
--pico-muted-color: #7b8495;
|
||||
--pico-muted-border-color: #202632;
|
||||
--pico-primary: #c79400;
|
||||
--pico-primary-background: #ffbf00;
|
||||
--pico-primary: #8999f9;
|
||||
--pico-primary-background: #2060df;
|
||||
--pico-primary-border: var(--pico-primary-background);
|
||||
--pico-primary-underline: rgba(199, 148, 0, 0.5);
|
||||
--pico-primary-hover: #e8ae01;
|
||||
--pico-primary-hover-background: #fecc63;
|
||||
--pico-primary-underline: rgba(137, 153, 249, 0.5);
|
||||
--pico-primary-hover: #aeb5fb;
|
||||
--pico-primary-hover-background: #3c71f7;
|
||||
--pico-primary-hover-border: var(--pico-primary-hover-background);
|
||||
--pico-primary-hover-underline: var(--pico-primary-hover);
|
||||
--pico-primary-focus: rgba(199, 148, 0, 0.375);
|
||||
--pico-primary-inverse: #000;
|
||||
--pico-primary-focus: rgba(137, 153, 249, 0.375);
|
||||
--pico-primary-inverse: #fff;
|
||||
--pico-secondary: #969eaf;
|
||||
--pico-secondary-background: #525f7a;
|
||||
--pico-secondary-border: var(--pico-secondary-background);
|
||||
|
@ -618,7 +622,7 @@ nav details.dropdown summary:focus-visible {
|
|||
--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.5rem rgba(0, 0, 0, 0.25);
|
||||
--pico-switch-thumb-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
|
||||
--pico-range-border-color: #202632;
|
||||
--pico-range-active-border-color: #2a3140;
|
||||
--pico-range-thumb-border-color: var(--pico-background-color);
|
||||
|
@ -666,7 +670,7 @@ nav details.dropdown summary:focus-visible {
|
|||
--pico-form-element-focus-color: var(--pico-primary-focus);
|
||||
}
|
||||
[data-theme=dark] .pico details summary[role=button]:not(.outline, .contrast, .secondary)::after {
|
||||
filter: brightness(100) invert(1);
|
||||
filter: brightness(100) invert(0);
|
||||
}
|
||||
[data-theme=dark] .pico details summary.secondary[role=button]::after {
|
||||
filter: brightness(100) invert(0);
|
||||
|
@ -675,7 +679,7 @@ nav details.dropdown summary:focus-visible {
|
|||
filter: brightness(100) invert(1);
|
||||
}
|
||||
[data-theme=dark] .pico [aria-busy=true]:not(input, select, textarea, html, form):is(button, [type=submit], [type=button], [type=reset], [role=button]):not(.outline)::before {
|
||||
filter: brightness(100) invert(0);
|
||||
filter: brightness(100) invert(1);
|
||||
}
|
||||
|
||||
.pico progress,
|
||||
|
@ -1732,8 +1736,8 @@ main {
|
|||
text-indent: 0;
|
||||
}
|
||||
|
||||
.pico th,
|
||||
.pico td {
|
||||
.pico table th,
|
||||
.pico 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);
|
||||
|
@ -1743,15 +1747,73 @@ main {
|
|||
text-align: start;
|
||||
}
|
||||
|
||||
.pico tfoot th,
|
||||
.pico tfoot td {
|
||||
.pico 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;
|
||||
}
|
||||
|
||||
.pico table > tfoot th,
|
||||
.pico table > tfoot td {
|
||||
border-top: var(--pico-border-width) solid var(--pico-table-border-color);
|
||||
border-bottom: 0;
|
||||
}
|
||||
|
||||
.pico table.striped tbody tr:nth-child(odd of :not([hidden])) th,
|
||||
.pico table.striped tbody tr:nth-child(odd of :not([hidden])) td {
|
||||
.pico 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;
|
||||
}
|
||||
|
||||
.pico table.striped > tbody > tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr:nth-child(odd) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr:nth-child(even) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] {
|
||||
display: none;
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr:nth-child(odd) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr:nth-child(even) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -134,6 +134,10 @@ h6 {
|
|||
--pico-typography-spacing-top: 1.5rem;
|
||||
}
|
||||
|
||||
table > caption {
|
||||
--pico-font-weight: 600;
|
||||
}
|
||||
|
||||
thead th,
|
||||
thead td,
|
||||
tfoot th,
|
||||
|
@ -1732,8 +1736,8 @@ main {
|
|||
text-indent: 0;
|
||||
}
|
||||
|
||||
.pico th,
|
||||
.pico td {
|
||||
.pico table th,
|
||||
.pico 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);
|
||||
|
@ -1743,15 +1747,73 @@ main {
|
|||
text-align: start;
|
||||
}
|
||||
|
||||
.pico tfoot th,
|
||||
.pico tfoot td {
|
||||
.pico 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;
|
||||
}
|
||||
|
||||
.pico table > tfoot th,
|
||||
.pico table > tfoot td {
|
||||
border-top: var(--pico-border-width) solid var(--pico-table-border-color);
|
||||
border-bottom: 0;
|
||||
}
|
||||
|
||||
.pico table.striped tbody tr:nth-child(odd of :not([hidden])) th,
|
||||
.pico table.striped tbody tr:nth-child(odd of :not([hidden])) td {
|
||||
.pico 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;
|
||||
}
|
||||
|
||||
.pico table.striped > tbody > tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr:nth-child(odd) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr:nth-child(even) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] {
|
||||
display: none;
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr:nth-child(odd) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr:nth-child(even) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
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
|
@ -134,6 +134,10 @@ h6 {
|
|||
--pico-typography-spacing-top: 1.5rem;
|
||||
}
|
||||
|
||||
table > caption {
|
||||
--pico-font-weight: 600;
|
||||
}
|
||||
|
||||
thead th,
|
||||
thead td,
|
||||
tfoot th,
|
||||
|
@ -1732,8 +1736,8 @@ main {
|
|||
text-indent: 0;
|
||||
}
|
||||
|
||||
.pico th,
|
||||
.pico td {
|
||||
.pico table th,
|
||||
.pico 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);
|
||||
|
@ -1743,15 +1747,73 @@ main {
|
|||
text-align: start;
|
||||
}
|
||||
|
||||
.pico tfoot th,
|
||||
.pico tfoot td {
|
||||
.pico 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;
|
||||
}
|
||||
|
||||
.pico table > tfoot th,
|
||||
.pico table > tfoot td {
|
||||
border-top: var(--pico-border-width) solid var(--pico-table-border-color);
|
||||
border-bottom: 0;
|
||||
}
|
||||
|
||||
.pico table.striped tbody tr:nth-child(odd of :not([hidden])) th,
|
||||
.pico table.striped tbody tr:nth-child(odd of :not([hidden])) td {
|
||||
.pico 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;
|
||||
}
|
||||
|
||||
.pico table.striped > tbody > tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr:nth-child(odd) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr:nth-child(even) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] {
|
||||
display: none;
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr:nth-child(odd) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr:nth-child(even) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
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
|
@ -134,6 +134,10 @@ h6 {
|
|||
--pico-typography-spacing-top: 1.5rem;
|
||||
}
|
||||
|
||||
table > caption {
|
||||
--pico-font-weight: 600;
|
||||
}
|
||||
|
||||
thead th,
|
||||
thead td,
|
||||
tfoot th,
|
||||
|
@ -1732,8 +1736,8 @@ main {
|
|||
text-indent: 0;
|
||||
}
|
||||
|
||||
.pico th,
|
||||
.pico td {
|
||||
.pico table th,
|
||||
.pico 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);
|
||||
|
@ -1743,15 +1747,73 @@ main {
|
|||
text-align: start;
|
||||
}
|
||||
|
||||
.pico tfoot th,
|
||||
.pico tfoot td {
|
||||
.pico 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;
|
||||
}
|
||||
|
||||
.pico table > tfoot th,
|
||||
.pico table > tfoot td {
|
||||
border-top: var(--pico-border-width) solid var(--pico-table-border-color);
|
||||
border-bottom: 0;
|
||||
}
|
||||
|
||||
.pico table.striped tbody tr:nth-child(odd of :not([hidden])) th,
|
||||
.pico table.striped tbody tr:nth-child(odd of :not([hidden])) td {
|
||||
.pico 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;
|
||||
}
|
||||
|
||||
.pico table.striped > tbody > tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr:nth-child(odd) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr:nth-child(even) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] {
|
||||
display: none;
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr:nth-child(odd) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr:nth-child(even) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(odd) > td {
|
||||
background: var(--pico-table-row-stripped-background-color);
|
||||
}
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > th,
|
||||
.pico table.striped > tbody > tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr[hidden] ~ tr:nth-child(even) > td {
|
||||
background: var(--pico-background-color);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue