Skip to content

Commit f9c3a34

Browse files
Build CSS
1 parent d20ea65 commit f9c3a34

File tree

92 files changed

+2032
-184
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

92 files changed

+2032
-184
lines changed

css/pico.amber.css

+44
Original file line numberDiff line numberDiff line change
@@ -3058,6 +3058,7 @@ details.dropdown > summary:not([role]) {
30583058
background-color: var(--pico-form-element-background-color);
30593059
color: var(--pico-form-element-placeholder-color);
30603060
line-height: inherit;
3061+
text-align: inherit;
30613062
cursor: pointer;
30623063
-webkit-user-select: none;
30633064
-moz-user-select: none;
@@ -3091,6 +3092,7 @@ details.dropdown > summary + ul {
30913092
left: 0;
30923093
flex-direction: column;
30933094
width: 100%;
3095+
min-width: 200px;
30943096
min-width: -moz-fit-content;
30953097
min-width: fit-content;
30963098
margin: 0;
@@ -3122,6 +3124,7 @@ details.dropdown > summary + ul li:last-of-type {
31223124
margin-bottom: calc(var(--pico-form-element-spacing-vertical) * 0.5);
31233125
}
31243126
details.dropdown > summary + ul li details {
3127+
width: 100%;
31253128
margin-bottom: 0;
31263129
}
31273130
details.dropdown > summary + ul li details > summary {
@@ -3643,6 +3646,47 @@ dialog:not([open]) article, dialog[open=false] article {
36433646
touch-action: auto;
36443647
}
36453648

3649+
dialog.modal-sm > article {
3650+
width: 90vw;
3651+
max-width: 400px;
3652+
}
3653+
dialog.modal-md > article {
3654+
width: 90vw;
3655+
max-width: 600px;
3656+
}
3657+
dialog.modal-lg > article {
3658+
width: 90vw;
3659+
max-width: 800px;
3660+
}
3661+
dialog.modal-xlg > article {
3662+
width: 95vw;
3663+
max-width: 1000px;
3664+
}
3665+
dialog.modal-fs {
3666+
padding: 0;
3667+
}
3668+
dialog.modal-fs > article {
3669+
display: flex;
3670+
flex-direction: column;
3671+
justify-content: space-between;
3672+
width: 100vw;
3673+
max-width: 100vw;
3674+
height: 100vh;
3675+
max-height: 100vh;
3676+
margin: 0;
3677+
overflow-y: auto;
3678+
}
3679+
dialog.modal-fs > article > footer {
3680+
display: flex;
3681+
justify-content: flex-end;
3682+
margin-top: auto;
3683+
}
3684+
@media (max-width: 576px) {
3685+
dialog:not(.modal-fs) > article {
3686+
width: 95vw;
3687+
}
3688+
}
3689+
36463690
body:has(dialog[open]) {
36473691
overflow: hidden;
36483692
}

css/pico.amber.min.css

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

css/pico.azure.css

+44
Original file line numberDiff line numberDiff line change
@@ -3058,6 +3058,7 @@ details.dropdown > summary:not([role]) {
30583058
background-color: var(--pico-form-element-background-color);
30593059
color: var(--pico-form-element-placeholder-color);
30603060
line-height: inherit;
3061+
text-align: inherit;
30613062
cursor: pointer;
30623063
-webkit-user-select: none;
30633064
-moz-user-select: none;
@@ -3091,6 +3092,7 @@ details.dropdown > summary + ul {
30913092
left: 0;
30923093
flex-direction: column;
30933094
width: 100%;
3095+
min-width: 200px;
30943096
min-width: -moz-fit-content;
30953097
min-width: fit-content;
30963098
margin: 0;
@@ -3122,6 +3124,7 @@ details.dropdown > summary + ul li:last-of-type {
31223124
margin-bottom: calc(var(--pico-form-element-spacing-vertical) * 0.5);
31233125
}
31243126
details.dropdown > summary + ul li details {
3127+
width: 100%;
31253128
margin-bottom: 0;
31263129
}
31273130
details.dropdown > summary + ul li details > summary {
@@ -3643,6 +3646,47 @@ dialog:not([open]) article, dialog[open=false] article {
36433646
touch-action: auto;
36443647
}
36453648

3649+
dialog.modal-sm > article {
3650+
width: 90vw;
3651+
max-width: 400px;
3652+
}
3653+
dialog.modal-md > article {
3654+
width: 90vw;
3655+
max-width: 600px;
3656+
}
3657+
dialog.modal-lg > article {
3658+
width: 90vw;
3659+
max-width: 800px;
3660+
}
3661+
dialog.modal-xlg > article {
3662+
width: 95vw;
3663+
max-width: 1000px;
3664+
}
3665+
dialog.modal-fs {
3666+
padding: 0;
3667+
}
3668+
dialog.modal-fs > article {
3669+
display: flex;
3670+
flex-direction: column;
3671+
justify-content: space-between;
3672+
width: 100vw;
3673+
max-width: 100vw;
3674+
height: 100vh;
3675+
max-height: 100vh;
3676+
margin: 0;
3677+
overflow-y: auto;
3678+
}
3679+
dialog.modal-fs > article > footer {
3680+
display: flex;
3681+
justify-content: flex-end;
3682+
margin-top: auto;
3683+
}
3684+
@media (max-width: 576px) {
3685+
dialog:not(.modal-fs) > article {
3686+
width: 95vw;
3687+
}
3688+
}
3689+
36463690
body:has(dialog[open]) {
36473691
overflow: hidden;
36483692
}

css/pico.azure.min.css

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

css/pico.blue.css

+44
Original file line numberDiff line numberDiff line change
@@ -3058,6 +3058,7 @@ details.dropdown > summary:not([role]) {
30583058
background-color: var(--pico-form-element-background-color);
30593059
color: var(--pico-form-element-placeholder-color);
30603060
line-height: inherit;
3061+
text-align: inherit;
30613062
cursor: pointer;
30623063
-webkit-user-select: none;
30633064
-moz-user-select: none;
@@ -3091,6 +3092,7 @@ details.dropdown > summary + ul {
30913092
left: 0;
30923093
flex-direction: column;
30933094
width: 100%;
3095+
min-width: 200px;
30943096
min-width: -moz-fit-content;
30953097
min-width: fit-content;
30963098
margin: 0;
@@ -3122,6 +3124,7 @@ details.dropdown > summary + ul li:last-of-type {
31223124
margin-bottom: calc(var(--pico-form-element-spacing-vertical) * 0.5);
31233125
}
31243126
details.dropdown > summary + ul li details {
3127+
width: 100%;
31253128
margin-bottom: 0;
31263129
}
31273130
details.dropdown > summary + ul li details > summary {
@@ -3643,6 +3646,47 @@ dialog:not([open]) article, dialog[open=false] article {
36433646
touch-action: auto;
36443647
}
36453648

3649+
dialog.modal-sm > article {
3650+
width: 90vw;
3651+
max-width: 400px;
3652+
}
3653+
dialog.modal-md > article {
3654+
width: 90vw;
3655+
max-width: 600px;
3656+
}
3657+
dialog.modal-lg > article {
3658+
width: 90vw;
3659+
max-width: 800px;
3660+
}
3661+
dialog.modal-xlg > article {
3662+
width: 95vw;
3663+
max-width: 1000px;
3664+
}
3665+
dialog.modal-fs {
3666+
padding: 0;
3667+
}
3668+
dialog.modal-fs > article {
3669+
display: flex;
3670+
flex-direction: column;
3671+
justify-content: space-between;
3672+
width: 100vw;
3673+
max-width: 100vw;
3674+
height: 100vh;
3675+
max-height: 100vh;
3676+
margin: 0;
3677+
overflow-y: auto;
3678+
}
3679+
dialog.modal-fs > article > footer {
3680+
display: flex;
3681+
justify-content: flex-end;
3682+
margin-top: auto;
3683+
}
3684+
@media (max-width: 576px) {
3685+
dialog:not(.modal-fs) > article {
3686+
width: 95vw;
3687+
}
3688+
}
3689+
36463690
body:has(dialog[open]) {
36473691
overflow: hidden;
36483692
}

css/pico.blue.min.css

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

css/pico.classless.css

+33-33
Original file line numberDiff line numberDiff line change
@@ -199,19 +199,19 @@ input:not([type=submit],
199199
color-scheme: light;
200200
--pico-background-color: #fff;
201201
--pico-color: #373c44;
202-
--pico-text-selection-color: rgba(246, 84, 126, 0.25);
202+
--pico-text-selection-color: rgba(149, 144, 130, 0.25);
203203
--pico-muted-color: #646b79;
204204
--pico-muted-border-color: rgb(231, 234, 239.5);
205-
--pico-primary: #c72259;
206-
--pico-primary-background: #d92662;
205+
--pico-primary: #6e6a60;
206+
--pico-primary-background: #ccc6b4;
207207
--pico-primary-border: var(--pico-primary-background);
208-
--pico-primary-underline: rgba(199, 34, 89, 0.5);
209-
--pico-primary-hover: #9d1945;
210-
--pico-primary-hover-background: #c72259;
208+
--pico-primary-underline: rgba(110, 106, 96, 0.5);
209+
--pico-primary-hover: #55524a;
210+
--pico-primary-hover-background: #beb8a7;
211211
--pico-primary-hover-border: var(--pico-primary-hover-background);
212212
--pico-primary-hover-underline: var(--pico-primary-hover);
213-
--pico-primary-focus: rgba(246, 84, 126, 0.5);
214-
--pico-primary-inverse: #fff;
213+
--pico-primary-focus: rgba(149, 144, 130, 0.5);
214+
--pico-primary-inverse: #000;
215215
--pico-secondary: #5d6b89;
216216
--pico-secondary-background: #525f7a;
217217
--pico-secondary-border: var(--pico-secondary-background);
@@ -275,7 +275,7 @@ input:not([type=submit],
275275
--pico-switch-background-color: #bfc7d9;
276276
--pico-switch-checked-background-color: var(--pico-primary-background);
277277
--pico-switch-color: #fff;
278-
--pico-switch-thumb-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
278+
--pico-switch-thumb-box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.25);
279279
--pico-range-border-color: #dfe3eb;
280280
--pico-range-active-border-color: #bfc7d9;
281281
--pico-range-thumb-border-color: var(--pico-background-color);
@@ -305,12 +305,12 @@ input:not([type=submit],
305305
[data-theme=light] details summary[role=button]::after,
306306
:root:not([data-theme=dark]) details summary[role=button]::after,
307307
:host(:not([data-theme=dark])) details summary[role=button]::after {
308-
filter: brightness(100) invert(0);
308+
filter: brightness(100) invert(1);
309309
}
310310
[data-theme=light] [aria-busy=true]:not(input, select, textarea, html, form):is(button, [type=submit], [type=button], [type=reset], [role=button])::before,
311311
:root:not([data-theme=dark]) [aria-busy=true]:not(input, select, textarea, html, form):is(button, [type=submit], [type=button], [type=reset], [role=button])::before,
312312
:host(:not([data-theme=dark])) [aria-busy=true]:not(input, select, textarea, html, form):is(button, [type=submit], [type=button], [type=reset], [role=button])::before {
313-
filter: brightness(100) invert(0);
313+
filter: brightness(0) invert(1);
314314
}
315315
[data-theme=light] input:is([type=submit],
316316
[type=button],
@@ -339,19 +339,19 @@ input:not([type=submit],
339339
color-scheme: dark;
340340
--pico-background-color: rgb(19, 22.5, 30.5);
341341
--pico-color: #c2c7d0;
342-
--pico-text-selection-color: rgba(247, 112, 142, 0.1875);
342+
--pico-text-selection-color: rgba(163, 158, 143, 0.1875);
343343
--pico-muted-color: #7b8495;
344344
--pico-muted-border-color: #202632;
345-
--pico-primary: #f7708e;
346-
--pico-primary-background: #d92662;
345+
--pico-primary: #a39e8f;
346+
--pico-primary-background: #ccc6b4;
347347
--pico-primary-border: var(--pico-primary-background);
348-
--pico-primary-underline: rgba(247, 112, 142, 0.5);
349-
--pico-primary-hover: #f99eae;
350-
--pico-primary-hover-background: #f42c6f;
348+
--pico-primary-underline: rgba(163, 158, 143, 0.5);
349+
--pico-primary-hover: #beb8a7;
350+
--pico-primary-hover-background: #dad4c2;
351351
--pico-primary-hover-border: var(--pico-primary-hover-background);
352352
--pico-primary-hover-underline: var(--pico-primary-hover);
353-
--pico-primary-focus: rgba(247, 112, 142, 0.375);
354-
--pico-primary-inverse: #fff;
353+
--pico-primary-focus: rgba(163, 158, 143, 0.375);
354+
--pico-primary-inverse: #000;
355355
--pico-secondary: #969eaf;
356356
--pico-secondary-background: #525f7a;
357357
--pico-secondary-border: var(--pico-secondary-background);
@@ -415,7 +415,7 @@ input:not([type=submit],
415415
--pico-switch-background-color: #333c4e;
416416
--pico-switch-checked-background-color: var(--pico-primary-background);
417417
--pico-switch-color: #fff;
418-
--pico-switch-thumb-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
418+
--pico-switch-thumb-box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.25);
419419
--pico-range-border-color: #202632;
420420
--pico-range-active-border-color: #2a3140;
421421
--pico-range-thumb-border-color: var(--pico-background-color);
@@ -458,30 +458,30 @@ input:not([type=submit],
458458
}
459459
:root:not([data-theme]) details summary[role=button]::after,
460460
:host(:not([data-theme])) details summary[role=button]::after {
461-
filter: brightness(100) invert(0);
461+
filter: brightness(100) invert(1);
462462
}
463463
:root:not([data-theme]) [aria-busy=true]:not(input, select, textarea, html, form):is(button, [type=submit], [type=button], [type=reset], [role=button])::before,
464464
:host(:not([data-theme])) [aria-busy=true]:not(input, select, textarea, html, form):is(button, [type=submit], [type=button], [type=reset], [role=button])::before {
465-
filter: brightness(100) invert(1);
465+
filter: brightness(100) invert(0);
466466
}
467467
}
468468
[data-theme=dark] {
469469
color-scheme: dark;
470470
--pico-background-color: rgb(19, 22.5, 30.5);
471471
--pico-color: #c2c7d0;
472-
--pico-text-selection-color: rgba(247, 112, 142, 0.1875);
472+
--pico-text-selection-color: rgba(163, 158, 143, 0.1875);
473473
--pico-muted-color: #7b8495;
474474
--pico-muted-border-color: #202632;
475-
--pico-primary: #f7708e;
476-
--pico-primary-background: #d92662;
475+
--pico-primary: #a39e8f;
476+
--pico-primary-background: #ccc6b4;
477477
--pico-primary-border: var(--pico-primary-background);
478-
--pico-primary-underline: rgba(247, 112, 142, 0.5);
479-
--pico-primary-hover: #f99eae;
480-
--pico-primary-hover-background: #f42c6f;
478+
--pico-primary-underline: rgba(163, 158, 143, 0.5);
479+
--pico-primary-hover: #beb8a7;
480+
--pico-primary-hover-background: #dad4c2;
481481
--pico-primary-hover-border: var(--pico-primary-hover-background);
482482
--pico-primary-hover-underline: var(--pico-primary-hover);
483-
--pico-primary-focus: rgba(247, 112, 142, 0.375);
484-
--pico-primary-inverse: #fff;
483+
--pico-primary-focus: rgba(163, 158, 143, 0.375);
484+
--pico-primary-inverse: #000;
485485
--pico-secondary: #969eaf;
486486
--pico-secondary-background: #525f7a;
487487
--pico-secondary-border: var(--pico-secondary-background);
@@ -545,7 +545,7 @@ input:not([type=submit],
545545
--pico-switch-background-color: #333c4e;
546546
--pico-switch-checked-background-color: var(--pico-primary-background);
547547
--pico-switch-color: #fff;
548-
--pico-switch-thumb-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
548+
--pico-switch-thumb-box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.25);
549549
--pico-range-border-color: #202632;
550550
--pico-range-active-border-color: #2a3140;
551551
--pico-range-thumb-border-color: var(--pico-background-color);
@@ -581,10 +581,10 @@ input:not([type=submit],
581581
--pico-form-element-focus-color: var(--pico-primary-focus);
582582
}
583583
[data-theme=dark] details summary[role=button]::after {
584-
filter: brightness(100) invert(0);
584+
filter: brightness(100) invert(1);
585585
}
586586
[data-theme=dark] [aria-busy=true]:not(input, select, textarea, html, form):is(button, [type=submit], [type=button], [type=reset], [role=button])::before {
587-
filter: brightness(100) invert(1);
587+
filter: brightness(100) invert(0);
588588
}
589589

590590
progress,

css/pico.classless.min.css

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)