@eightshift/ui-components 6.0.3 → 6.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/assets/style-admin.css +116 -37
- package/dist/assets/style-editor.css +80 -37
- package/dist/assets/style.css +80 -37
- package/dist/{color-swatch-CFIuSPcO.js → color-swatch-BEBLRxTy.js} +1 -1
- package/dist/components/animated-visibility/animated-visibility.js +1 -1
- package/dist/components/base-control/base-control.js +1 -1
- package/dist/components/base-control/container.js +1 -1
- package/dist/components/breakpoint-preview/breakpoint-preview.js +1 -1
- package/dist/components/button/button.js +1 -1
- package/dist/components/checkbox/checkbox.js +1 -1
- package/dist/components/color-pickers/color-picker.js +2 -2
- package/dist/components/color-pickers/color-swatch.js +2 -2
- package/dist/components/color-pickers/gradient-editor.js +4 -4
- package/dist/components/color-pickers/solid-color-picker.js +4 -3
- package/dist/components/component-toggle/component-toggle.js +1 -1
- package/dist/components/container-panel/container-panel.js +1 -1
- package/dist/components/draggable/draggable-handle.js +2 -2
- package/dist/components/draggable/draggable.js +2 -2
- package/dist/components/draggable-list/draggable-list-item.js +2 -2
- package/dist/components/expandable/expandable.js +1 -1
- package/dist/components/index.js +1 -1
- package/dist/components/input-field/input-field.js +3 -3
- package/dist/components/layout/hstack.js +1 -1
- package/dist/components/layout/vstack.js +1 -1
- package/dist/components/link-input/link-input.js +13 -8
- package/dist/components/matrix-align/matrix-align.js +1 -1
- package/dist/components/menu/menu.js +1 -1
- package/dist/components/modal/modal.js +1 -1
- package/dist/components/notice/notice.js +1 -1
- package/dist/components/number-picker/number-picker.js +2 -2
- package/dist/components/options-panel/options-panel.js +1 -1
- package/dist/components/placeholders/file-picker-shell.js +12 -9
- package/dist/components/placeholders/file-placeholder.js +1 -2
- package/dist/components/popover/popover.js +1 -1
- package/dist/components/radio/radio.js +5 -5
- package/dist/components/repeater/repeater-item.js +1 -1
- package/dist/components/repeater/repeater.js +2 -2
- package/dist/components/responsive/mini-responsive.js +1 -1
- package/dist/components/responsive/responsive-legacy.js +1 -1
- package/dist/components/responsive/responsive.js +1 -1
- package/dist/components/rich-label/rich-label.js +1 -1
- package/dist/components/select/async-multi-select.js +22 -14
- package/dist/components/select/async-select.js +22 -14
- package/dist/components/select/multi-select.js +23 -15
- package/dist/components/select/shared.js +2 -2
- package/dist/components/select/single-select.js +23 -15
- package/dist/components/slider/column-config-slider.js +8 -5
- package/dist/components/smart-image/smart-image.js +30 -4
- package/dist/components/spacer/spacer.js +1 -1
- package/dist/components/tabs/tabs.js +2 -2
- package/dist/components/toggle/switch.js +1 -1
- package/dist/components/toggle/toggle.js +1 -1
- package/dist/components/toggle-button/toggle-button.js +0 -1
- package/dist/components/tooltip/tooltip.js +1 -1
- package/dist/{general-lYMgCPqJ.js → general-ChNQK6O9.js} +4 -4
- package/dist/icons/spinner.js +1 -1
- package/dist/index.js +1 -1
- package/dist/utilities/general.js +5 -5
- package/dist/utilities/hash.js +9 -0
- package/dist/utilities/index.js +14 -8
- package/dist/workers/image-analysis.worker.js +1 -1
- package/package.json +7 -7
- package/dist/lite-DVmmD_-j.js +0 -7
- package/dist/{shared-DwjRce5e.js → shared-DOxXagm0.js} +1 -1
|
@@ -1395,6 +1395,38 @@ input[data-rac]::-webkit-search-cancel-button {
|
|
|
1395
1395
|
display: none !important;
|
|
1396
1396
|
}
|
|
1397
1397
|
|
|
1398
|
+
:where(.es\:css-reset) {
|
|
1399
|
+
font-family: var(--es-font-sans);
|
|
1400
|
+
}
|
|
1401
|
+
|
|
1402
|
+
:where(.es\:css-reset) ::selection {
|
|
1403
|
+
background-color: var(--es-color-accent-600);
|
|
1404
|
+
}
|
|
1405
|
+
|
|
1406
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1407
|
+
:where(.es\:css-reset) ::selection {
|
|
1408
|
+
background-color: color-mix(in oklab, var(--es-color-accent-600) 15%, transparent);
|
|
1409
|
+
}
|
|
1410
|
+
}
|
|
1411
|
+
|
|
1412
|
+
:where(.es\:css-reset)::selection {
|
|
1413
|
+
background-color: var(--es-color-accent-600);
|
|
1414
|
+
}
|
|
1415
|
+
|
|
1416
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1417
|
+
:where(.es\:css-reset)::selection {
|
|
1418
|
+
background-color: color-mix(in oklab, var(--es-color-accent-600) 15%, transparent);
|
|
1419
|
+
}
|
|
1420
|
+
}
|
|
1421
|
+
|
|
1422
|
+
:where(.es\:css-reset) ::selection {
|
|
1423
|
+
color: var(--es-color-accent-950);
|
|
1424
|
+
}
|
|
1425
|
+
|
|
1426
|
+
:where(.es\:css-reset)::selection {
|
|
1427
|
+
color: var(--es-color-accent-950);
|
|
1428
|
+
}
|
|
1429
|
+
|
|
1398
1430
|
:is(body, body #wpwrap) .es\:\@container {
|
|
1399
1431
|
container-type: inline-size;
|
|
1400
1432
|
}
|
|
@@ -1759,8 +1791,8 @@ input[data-rac]::-webkit-search-cancel-button {
|
|
|
1759
1791
|
margin-right: calc(var(--es-spacing) * 1.25);
|
|
1760
1792
|
}
|
|
1761
1793
|
|
|
1762
|
-
:is(body, body #wpwrap) .es\:mr-
|
|
1763
|
-
margin-right: calc(var(--es-spacing) *
|
|
1794
|
+
:is(body, body #wpwrap) .es\:mr-1\.75 {
|
|
1795
|
+
margin-right: calc(var(--es-spacing) * 1.75);
|
|
1764
1796
|
}
|
|
1765
1797
|
|
|
1766
1798
|
:is(body, body #wpwrap) .es\:mr-auto {
|
|
@@ -1803,8 +1835,8 @@ input[data-rac]::-webkit-search-cancel-button {
|
|
|
1803
1835
|
margin-left: calc(var(--es-spacing) * 1.25);
|
|
1804
1836
|
}
|
|
1805
1837
|
|
|
1806
|
-
:is(body, body #wpwrap) .es\:ml-
|
|
1807
|
-
margin-left: calc(var(--es-spacing) *
|
|
1838
|
+
:is(body, body #wpwrap) .es\:ml-1\.75 {
|
|
1839
|
+
margin-left: calc(var(--es-spacing) * 1.75);
|
|
1808
1840
|
}
|
|
1809
1841
|
|
|
1810
1842
|
:is(body, body #wpwrap) .es\:ml-auto {
|
|
@@ -2389,11 +2421,6 @@ input[data-rac]::-webkit-search-cancel-button {
|
|
|
2389
2421
|
transform-origin: top;
|
|
2390
2422
|
}
|
|
2391
2423
|
|
|
2392
|
-
:is(body, body #wpwrap) .es\:-translate-x-0\.25 {
|
|
2393
|
-
--tw-translate-x: calc(var(--es-spacing) * -.25);
|
|
2394
|
-
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
2395
|
-
}
|
|
2396
|
-
|
|
2397
2424
|
:is(body, body #wpwrap) .es\:-translate-x-1 {
|
|
2398
2425
|
--tw-translate-x: calc(var(--es-spacing) * -1);
|
|
2399
2426
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
@@ -2414,13 +2441,13 @@ input[data-rac]::-webkit-search-cancel-button {
|
|
|
2414
2441
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
2415
2442
|
}
|
|
2416
2443
|
|
|
2417
|
-
:is(body, body #wpwrap) .es
|
|
2418
|
-
--tw-translate-x:
|
|
2444
|
+
:is(body, body #wpwrap) .es\:-translate-x-px {
|
|
2445
|
+
--tw-translate-x: -1px;
|
|
2419
2446
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
2420
2447
|
}
|
|
2421
2448
|
|
|
2422
|
-
:is(body, body #wpwrap) .es\:translate-x-0
|
|
2423
|
-
--tw-translate-x: calc(var(--es-spacing) *
|
|
2449
|
+
:is(body, body #wpwrap) .es\:translate-x-0 {
|
|
2450
|
+
--tw-translate-x: calc(var(--es-spacing) * 0);
|
|
2424
2451
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
2425
2452
|
}
|
|
2426
2453
|
|
|
@@ -2449,6 +2476,11 @@ input[data-rac]::-webkit-search-cancel-button {
|
|
|
2449
2476
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
2450
2477
|
}
|
|
2451
2478
|
|
|
2479
|
+
:is(body, body #wpwrap) .es\:translate-x-px {
|
|
2480
|
+
--tw-translate-x: 1px;
|
|
2481
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
2482
|
+
}
|
|
2483
|
+
|
|
2452
2484
|
:is(body, body #wpwrap) .es\:-translate-y-1\/2 {
|
|
2453
2485
|
--tw-translate-y: calc(calc(1 / 2 * 100%) * -1);
|
|
2454
2486
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
@@ -2464,6 +2496,11 @@ input[data-rac]::-webkit-search-cancel-button {
|
|
|
2464
2496
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
2465
2497
|
}
|
|
2466
2498
|
|
|
2499
|
+
:is(body, body #wpwrap) .es\:-translate-y-4 {
|
|
2500
|
+
--tw-translate-y: calc(var(--es-spacing) * -4);
|
|
2501
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
2502
|
+
}
|
|
2503
|
+
|
|
2467
2504
|
:is(body, body #wpwrap) .es\:translate-y-0 {
|
|
2468
2505
|
--tw-translate-y: calc(var(--es-spacing) * 0);
|
|
2469
2506
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
@@ -2734,10 +2771,6 @@ input[data-rac]::-webkit-search-cancel-button {
|
|
|
2734
2771
|
cursor: not-allowed;
|
|
2735
2772
|
}
|
|
2736
2773
|
|
|
2737
|
-
:is(body, body #wpwrap) .es\:cursor-pointer {
|
|
2738
|
-
cursor: pointer;
|
|
2739
|
-
}
|
|
2740
|
-
|
|
2741
2774
|
:is(body, body #wpwrap) .es\:cursor-wait {
|
|
2742
2775
|
cursor: wait;
|
|
2743
2776
|
}
|
|
@@ -3070,6 +3103,10 @@ input[data-rac]::-webkit-search-cancel-button {
|
|
|
3070
3103
|
justify-self: flex-end;
|
|
3071
3104
|
}
|
|
3072
3105
|
|
|
3106
|
+
:is(body, body #wpwrap) .es\:justify-self-start {
|
|
3107
|
+
justify-self: flex-start;
|
|
3108
|
+
}
|
|
3109
|
+
|
|
3073
3110
|
:is(body, body #wpwrap) .es\:overflow-clip {
|
|
3074
3111
|
overflow: clip;
|
|
3075
3112
|
}
|
|
@@ -5860,11 +5897,21 @@ input[data-rac]::-webkit-search-cancel-button {
|
|
|
5860
5897
|
line-height: var(--tw-leading, var(--es-text-12--line-height));
|
|
5861
5898
|
}
|
|
5862
5899
|
|
|
5900
|
+
:is(body, body #wpwrap) .es\:text-12\! {
|
|
5901
|
+
font-size: var(--es-text-12) !important;
|
|
5902
|
+
line-height: var(--tw-leading, var(--es-text-12--line-height)) !important;
|
|
5903
|
+
}
|
|
5904
|
+
|
|
5863
5905
|
:is(body, body #wpwrap) .es\:text-13 {
|
|
5864
5906
|
font-size: var(--es-text-13);
|
|
5865
5907
|
line-height: var(--tw-leading, var(--es-text-13--line-height));
|
|
5866
5908
|
}
|
|
5867
5909
|
|
|
5910
|
+
:is(body, body #wpwrap) .es\:text-13\! {
|
|
5911
|
+
font-size: var(--es-text-13) !important;
|
|
5912
|
+
line-height: var(--tw-leading, var(--es-text-13--line-height)) !important;
|
|
5913
|
+
}
|
|
5914
|
+
|
|
5868
5915
|
:is(body, body #wpwrap) .es\:text-14 {
|
|
5869
5916
|
font-size: var(--es-text-14);
|
|
5870
5917
|
line-height: var(--tw-leading, var(--es-text-14--line-height));
|
|
@@ -6318,6 +6365,11 @@ input[data-rac]::-webkit-search-cancel-button {
|
|
|
6318
6365
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
6319
6366
|
}
|
|
6320
6367
|
|
|
6368
|
+
:is(body, body #wpwrap) .es\:shadow-xs\! {
|
|
6369
|
+
--tw-shadow: 0 1px 2px 0 var(--tw-shadow-color, #0000000d) !important;
|
|
6370
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow) !important;
|
|
6371
|
+
}
|
|
6372
|
+
|
|
6321
6373
|
:is(body, body #wpwrap) .es\:ring, :is(body, body #wpwrap) .es\:ring-1 {
|
|
6322
6374
|
--tw-ring-shadow: var(--tw-ring-inset, ) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
|
|
6323
6375
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
@@ -6343,6 +6395,11 @@ input[data-rac]::-webkit-search-cancel-button {
|
|
|
6343
6395
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
6344
6396
|
}
|
|
6345
6397
|
|
|
6398
|
+
:is(body, body #wpwrap) .es\:inset-ring\! {
|
|
6399
|
+
--tw-inset-ring-shadow: inset 0 0 0 1px var(--tw-inset-ring-color, currentcolor) !important;
|
|
6400
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow) !important;
|
|
6401
|
+
}
|
|
6402
|
+
|
|
6346
6403
|
:is(body, body #wpwrap) .es\:shadow-accent-600\/25 {
|
|
6347
6404
|
--tw-shadow-color: var(--es-color-accent-600);
|
|
6348
6405
|
}
|
|
@@ -7223,6 +7280,18 @@ input[data-rac]::-webkit-search-cancel-button {
|
|
|
7223
7280
|
}
|
|
7224
7281
|
}
|
|
7225
7282
|
|
|
7283
|
+
:is(body, body #wpwrap) .es\:outline-hidden\! {
|
|
7284
|
+
--tw-outline-style: none !important;
|
|
7285
|
+
outline-style: none !important;
|
|
7286
|
+
}
|
|
7287
|
+
|
|
7288
|
+
@media (forced-colors: active) {
|
|
7289
|
+
:is(body, body #wpwrap) .es\:outline-hidden\! {
|
|
7290
|
+
outline-offset: 2px !important;
|
|
7291
|
+
outline: 2px solid #0000 !important;
|
|
7292
|
+
}
|
|
7293
|
+
}
|
|
7294
|
+
|
|
7226
7295
|
:is(body, body #wpwrap) .es\:outline {
|
|
7227
7296
|
outline-style: var(--tw-outline-style);
|
|
7228
7297
|
outline-width: 1px;
|
|
@@ -7796,10 +7865,6 @@ input[data-rac]::-webkit-search-cancel-button {
|
|
|
7796
7865
|
border-bottom-left-radius: var(--es-radius-md);
|
|
7797
7866
|
}
|
|
7798
7867
|
|
|
7799
|
-
:is(body, body #wpwrap) .es\:not-disabled\:cursor-pointer:not(:is(:disabled, [data-rac][data-disabled])) {
|
|
7800
|
-
cursor: pointer;
|
|
7801
|
-
}
|
|
7802
|
-
|
|
7803
7868
|
:is(body, body #wpwrap) .es\:not-has-any-icon\:aspect-5\/3:not(:has(* svg)) {
|
|
7804
7869
|
aspect-ratio: 5 / 3;
|
|
7805
7870
|
}
|
|
@@ -8365,11 +8430,6 @@ input[data-rac]::-webkit-search-cancel-button {
|
|
|
8365
8430
|
border-bottom-left-radius: var(--es-radius-2xl);
|
|
8366
8431
|
}
|
|
8367
8432
|
|
|
8368
|
-
:is(body, body #wpwrap) .es\:first\:rounded-l-xl:first-child {
|
|
8369
|
-
border-top-left-radius: var(--es-radius-xl);
|
|
8370
|
-
border-bottom-left-radius: var(--es-radius-xl);
|
|
8371
|
-
}
|
|
8372
|
-
|
|
8373
8433
|
:is(body, body #wpwrap) .es\:first\:pt-2:first-child {
|
|
8374
8434
|
padding-top: calc(var(--es-spacing) * 2);
|
|
8375
8435
|
}
|
|
@@ -8383,11 +8443,6 @@ input[data-rac]::-webkit-search-cancel-button {
|
|
|
8383
8443
|
border-bottom-right-radius: var(--es-radius-2xl);
|
|
8384
8444
|
}
|
|
8385
8445
|
|
|
8386
|
-
:is(body, body #wpwrap) .es\:last\:rounded-r-xl:last-child {
|
|
8387
|
-
border-top-right-radius: var(--es-radius-xl);
|
|
8388
|
-
border-bottom-right-radius: var(--es-radius-xl);
|
|
8389
|
-
}
|
|
8390
|
-
|
|
8391
8446
|
:is(body, body #wpwrap) .es\:last\:rounded-b-2xl:last-child {
|
|
8392
8447
|
border-bottom-right-radius: var(--es-radius-2xl);
|
|
8393
8448
|
border-bottom-left-radius: var(--es-radius-2xl);
|
|
@@ -8465,6 +8520,16 @@ input[data-rac]::-webkit-search-cancel-button {
|
|
|
8465
8520
|
}
|
|
8466
8521
|
}
|
|
8467
8522
|
|
|
8523
|
+
:is(body, body #wpwrap) .es\:hover\:rounded-18:where([data-rac])[data-hovered] {
|
|
8524
|
+
border-radius: var(--es-radius-18);
|
|
8525
|
+
}
|
|
8526
|
+
|
|
8527
|
+
@media (hover: hover) {
|
|
8528
|
+
:is(body, body #wpwrap) .es\:hover\:rounded-18:where(:not([data-rac])):hover {
|
|
8529
|
+
border-radius: var(--es-radius-18);
|
|
8530
|
+
}
|
|
8531
|
+
}
|
|
8532
|
+
|
|
8468
8533
|
:is(body, body #wpwrap) .es\:hover\:rounded-lg:where([data-rac])[data-hovered] {
|
|
8469
8534
|
border-radius: var(--es-radius-lg);
|
|
8470
8535
|
}
|
|
@@ -11192,9 +11257,14 @@ input[data-rac]::-webkit-search-cancel-button {
|
|
|
11192
11257
|
border-bottom-left-radius: var(--es-radius-20) !important;
|
|
11193
11258
|
}
|
|
11194
11259
|
|
|
11195
|
-
:is(body, body #wpwrap) .es\:before-current\:rounded-
|
|
11196
|
-
border-top-
|
|
11197
|
-
border-bottom-
|
|
11260
|
+
:is(body, body #wpwrap) .es\:before-current\:rounded-r-2xl:has( + :where(:pressed, :active, [data-selected="true"], [data-focus-visible="true"], [data-hovered="true"], [aria-expanded="true"], [data-expanded="true"])) {
|
|
11261
|
+
border-top-right-radius: var(--es-radius-2xl);
|
|
11262
|
+
border-bottom-right-radius: var(--es-radius-2xl);
|
|
11263
|
+
}
|
|
11264
|
+
|
|
11265
|
+
:is(body, body #wpwrap) .es\:before-current\:rounded-b-2xl:has( + :where(:pressed, :active, [data-selected="true"], [data-focus-visible="true"], [data-hovered="true"], [aria-expanded="true"], [data-expanded="true"])) {
|
|
11266
|
+
border-bottom-right-radius: var(--es-radius-2xl);
|
|
11267
|
+
border-bottom-left-radius: var(--es-radius-2xl);
|
|
11198
11268
|
}
|
|
11199
11269
|
|
|
11200
11270
|
:is(body, body #wpwrap) .es\:before-current\:rounded-b-lg:has( + :where(:pressed, :active, [data-selected="true"], [data-focus-visible="true"], [data-hovered="true"], [aria-expanded="true"], [data-expanded="true"])) {
|
|
@@ -11207,6 +11277,11 @@ input[data-rac]::-webkit-search-cancel-button {
|
|
|
11207
11277
|
border-bottom-left-radius: var(--es-radius-xl);
|
|
11208
11278
|
}
|
|
11209
11279
|
|
|
11280
|
+
:where(:pressed, :active, [data-selected="true"], [data-focus-visible="true"], [data-hovered="true"], [aria-expanded="true"], [data-expanded="true"]) + :is(:is(body, body #wpwrap) .es\:after-current\:rounded-t-2xl) {
|
|
11281
|
+
border-top-left-radius: var(--es-radius-2xl);
|
|
11282
|
+
border-top-right-radius: var(--es-radius-2xl);
|
|
11283
|
+
}
|
|
11284
|
+
|
|
11210
11285
|
:where(:pressed, :active, [data-selected="true"], [data-focus-visible="true"], [data-hovered="true"], [aria-expanded="true"], [data-expanded="true"]) + :is(:is(body, body #wpwrap) .es\:after-current\:rounded-t-lg) {
|
|
11211
11286
|
border-top-left-radius: var(--es-radius-lg);
|
|
11212
11287
|
border-top-right-radius: var(--es-radius-lg);
|
|
@@ -11217,9 +11292,9 @@ input[data-rac]::-webkit-search-cancel-button {
|
|
|
11217
11292
|
border-top-right-radius: var(--es-radius-xl);
|
|
11218
11293
|
}
|
|
11219
11294
|
|
|
11220
|
-
:where(:pressed, :active, [data-selected="true"], [data-focus-visible="true"], [data-hovered="true"], [aria-expanded="true"], [data-expanded="true"]) + :is(:is(body, body #wpwrap) .es\:after-current\:rounded-
|
|
11221
|
-
border-top-
|
|
11222
|
-
border-bottom-
|
|
11295
|
+
:where(:pressed, :active, [data-selected="true"], [data-focus-visible="true"], [data-hovered="true"], [aria-expanded="true"], [data-expanded="true"]) + :is(:is(body, body #wpwrap) .es\:after-current\:rounded-l-2xl) {
|
|
11296
|
+
border-top-left-radius: var(--es-radius-2xl);
|
|
11297
|
+
border-bottom-left-radius: var(--es-radius-2xl);
|
|
11223
11298
|
}
|
|
11224
11299
|
|
|
11225
11300
|
:is(body, body #wpwrap) .es\:before-selected\:rounded-b-md:has( + :where([data-selected="true"])) {
|
|
@@ -11302,6 +11377,10 @@ input[data-rac]::-webkit-search-cancel-button {
|
|
|
11302
11377
|
border-bottom-left-radius: var(--es-radius-2xl);
|
|
11303
11378
|
}
|
|
11304
11379
|
|
|
11380
|
+
:is(body, body #wpwrap):has(.es\:css-reset) {
|
|
11381
|
+
background-color: var(--es-color-white) !important;
|
|
11382
|
+
}
|
|
11383
|
+
|
|
11305
11384
|
@layer base {
|
|
11306
11385
|
@property --motion-bounce {
|
|
11307
11386
|
syntax: "*"; inherits: false; initial-value: linear(0, .004, .016, .035, .063, .098, .141 13.6%, .25, .391, .563, .765, 1, .891 40.9%, .848, .813, .785, .766, .754, .75, .754, .766, .785, .813, .848, .891 68.2%, 1 72.7%, .973, .953, .941, .938, .941, .953, .973, 1, .988, .984, .988, 1) ;
|
|
@@ -1759,8 +1759,8 @@ button, input:where([type="button"], [type="reset"], [type="submit"]) {
|
|
|
1759
1759
|
margin-right: calc(var(--es-spacing) * 1.25);
|
|
1760
1760
|
}
|
|
1761
1761
|
|
|
1762
|
-
:is(body, #wpwrap #editor) .es\:mr-
|
|
1763
|
-
margin-right: calc(var(--es-spacing) *
|
|
1762
|
+
:is(body, #wpwrap #editor) .es\:mr-1\.75 {
|
|
1763
|
+
margin-right: calc(var(--es-spacing) * 1.75);
|
|
1764
1764
|
}
|
|
1765
1765
|
|
|
1766
1766
|
:is(body, #wpwrap #editor) .es\:mr-auto {
|
|
@@ -1803,8 +1803,8 @@ button, input:where([type="button"], [type="reset"], [type="submit"]) {
|
|
|
1803
1803
|
margin-left: calc(var(--es-spacing) * 1.25);
|
|
1804
1804
|
}
|
|
1805
1805
|
|
|
1806
|
-
:is(body, #wpwrap #editor) .es\:ml-
|
|
1807
|
-
margin-left: calc(var(--es-spacing) *
|
|
1806
|
+
:is(body, #wpwrap #editor) .es\:ml-1\.75 {
|
|
1807
|
+
margin-left: calc(var(--es-spacing) * 1.75);
|
|
1808
1808
|
}
|
|
1809
1809
|
|
|
1810
1810
|
:is(body, #wpwrap #editor) .es\:ml-auto {
|
|
@@ -2389,11 +2389,6 @@ button, input:where([type="button"], [type="reset"], [type="submit"]) {
|
|
|
2389
2389
|
transform-origin: top;
|
|
2390
2390
|
}
|
|
2391
2391
|
|
|
2392
|
-
:is(body, #wpwrap #editor) .es\:-translate-x-0\.25 {
|
|
2393
|
-
--tw-translate-x: calc(var(--es-spacing) * -.25);
|
|
2394
|
-
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
2395
|
-
}
|
|
2396
|
-
|
|
2397
2392
|
:is(body, #wpwrap #editor) .es\:-translate-x-1 {
|
|
2398
2393
|
--tw-translate-x: calc(var(--es-spacing) * -1);
|
|
2399
2394
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
@@ -2414,13 +2409,13 @@ button, input:where([type="button"], [type="reset"], [type="submit"]) {
|
|
|
2414
2409
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
2415
2410
|
}
|
|
2416
2411
|
|
|
2417
|
-
:is(body, #wpwrap #editor) .es
|
|
2418
|
-
--tw-translate-x:
|
|
2412
|
+
:is(body, #wpwrap #editor) .es\:-translate-x-px {
|
|
2413
|
+
--tw-translate-x: -1px;
|
|
2419
2414
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
2420
2415
|
}
|
|
2421
2416
|
|
|
2422
|
-
:is(body, #wpwrap #editor) .es\:translate-x-0
|
|
2423
|
-
--tw-translate-x: calc(var(--es-spacing) *
|
|
2417
|
+
:is(body, #wpwrap #editor) .es\:translate-x-0 {
|
|
2418
|
+
--tw-translate-x: calc(var(--es-spacing) * 0);
|
|
2424
2419
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
2425
2420
|
}
|
|
2426
2421
|
|
|
@@ -2449,6 +2444,11 @@ button, input:where([type="button"], [type="reset"], [type="submit"]) {
|
|
|
2449
2444
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
2450
2445
|
}
|
|
2451
2446
|
|
|
2447
|
+
:is(body, #wpwrap #editor) .es\:translate-x-px {
|
|
2448
|
+
--tw-translate-x: 1px;
|
|
2449
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
2450
|
+
}
|
|
2451
|
+
|
|
2452
2452
|
:is(body, #wpwrap #editor) .es\:-translate-y-1\/2 {
|
|
2453
2453
|
--tw-translate-y: calc(calc(1 / 2 * 100%) * -1);
|
|
2454
2454
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
@@ -2464,6 +2464,11 @@ button, input:where([type="button"], [type="reset"], [type="submit"]) {
|
|
|
2464
2464
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
2465
2465
|
}
|
|
2466
2466
|
|
|
2467
|
+
:is(body, #wpwrap #editor) .es\:-translate-y-4 {
|
|
2468
|
+
--tw-translate-y: calc(var(--es-spacing) * -4);
|
|
2469
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
2470
|
+
}
|
|
2471
|
+
|
|
2467
2472
|
:is(body, #wpwrap #editor) .es\:translate-y-0 {
|
|
2468
2473
|
--tw-translate-y: calc(var(--es-spacing) * 0);
|
|
2469
2474
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
@@ -2734,10 +2739,6 @@ button, input:where([type="button"], [type="reset"], [type="submit"]) {
|
|
|
2734
2739
|
cursor: not-allowed;
|
|
2735
2740
|
}
|
|
2736
2741
|
|
|
2737
|
-
:is(body, #wpwrap #editor) .es\:cursor-pointer {
|
|
2738
|
-
cursor: pointer;
|
|
2739
|
-
}
|
|
2740
|
-
|
|
2741
2742
|
:is(body, #wpwrap #editor) .es\:cursor-wait {
|
|
2742
2743
|
cursor: wait;
|
|
2743
2744
|
}
|
|
@@ -3070,6 +3071,10 @@ button, input:where([type="button"], [type="reset"], [type="submit"]) {
|
|
|
3070
3071
|
justify-self: flex-end;
|
|
3071
3072
|
}
|
|
3072
3073
|
|
|
3074
|
+
:is(body, #wpwrap #editor) .es\:justify-self-start {
|
|
3075
|
+
justify-self: flex-start;
|
|
3076
|
+
}
|
|
3077
|
+
|
|
3073
3078
|
:is(body, #wpwrap #editor) .es\:overflow-clip {
|
|
3074
3079
|
overflow: clip;
|
|
3075
3080
|
}
|
|
@@ -5860,11 +5865,21 @@ button, input:where([type="button"], [type="reset"], [type="submit"]) {
|
|
|
5860
5865
|
line-height: var(--tw-leading, var(--es-text-12--line-height));
|
|
5861
5866
|
}
|
|
5862
5867
|
|
|
5868
|
+
:is(body, #wpwrap #editor) .es\:text-12\! {
|
|
5869
|
+
font-size: var(--es-text-12) !important;
|
|
5870
|
+
line-height: var(--tw-leading, var(--es-text-12--line-height)) !important;
|
|
5871
|
+
}
|
|
5872
|
+
|
|
5863
5873
|
:is(body, #wpwrap #editor) .es\:text-13 {
|
|
5864
5874
|
font-size: var(--es-text-13);
|
|
5865
5875
|
line-height: var(--tw-leading, var(--es-text-13--line-height));
|
|
5866
5876
|
}
|
|
5867
5877
|
|
|
5878
|
+
:is(body, #wpwrap #editor) .es\:text-13\! {
|
|
5879
|
+
font-size: var(--es-text-13) !important;
|
|
5880
|
+
line-height: var(--tw-leading, var(--es-text-13--line-height)) !important;
|
|
5881
|
+
}
|
|
5882
|
+
|
|
5868
5883
|
:is(body, #wpwrap #editor) .es\:text-14 {
|
|
5869
5884
|
font-size: var(--es-text-14);
|
|
5870
5885
|
line-height: var(--tw-leading, var(--es-text-14--line-height));
|
|
@@ -6318,6 +6333,11 @@ button, input:where([type="button"], [type="reset"], [type="submit"]) {
|
|
|
6318
6333
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
6319
6334
|
}
|
|
6320
6335
|
|
|
6336
|
+
:is(body, #wpwrap #editor) .es\:shadow-xs\! {
|
|
6337
|
+
--tw-shadow: 0 1px 2px 0 var(--tw-shadow-color, #0000000d) !important;
|
|
6338
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow) !important;
|
|
6339
|
+
}
|
|
6340
|
+
|
|
6321
6341
|
:is(body, #wpwrap #editor) .es\:ring, :is(body, #wpwrap #editor) .es\:ring-1 {
|
|
6322
6342
|
--tw-ring-shadow: var(--tw-ring-inset, ) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
|
|
6323
6343
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
@@ -6343,6 +6363,11 @@ button, input:where([type="button"], [type="reset"], [type="submit"]) {
|
|
|
6343
6363
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
6344
6364
|
}
|
|
6345
6365
|
|
|
6366
|
+
:is(body, #wpwrap #editor) .es\:inset-ring\! {
|
|
6367
|
+
--tw-inset-ring-shadow: inset 0 0 0 1px var(--tw-inset-ring-color, currentcolor) !important;
|
|
6368
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow) !important;
|
|
6369
|
+
}
|
|
6370
|
+
|
|
6346
6371
|
:is(body, #wpwrap #editor) .es\:shadow-accent-600\/25 {
|
|
6347
6372
|
--tw-shadow-color: var(--es-color-accent-600);
|
|
6348
6373
|
}
|
|
@@ -7223,6 +7248,18 @@ button, input:where([type="button"], [type="reset"], [type="submit"]) {
|
|
|
7223
7248
|
}
|
|
7224
7249
|
}
|
|
7225
7250
|
|
|
7251
|
+
:is(body, #wpwrap #editor) .es\:outline-hidden\! {
|
|
7252
|
+
--tw-outline-style: none !important;
|
|
7253
|
+
outline-style: none !important;
|
|
7254
|
+
}
|
|
7255
|
+
|
|
7256
|
+
@media (forced-colors: active) {
|
|
7257
|
+
:is(body, #wpwrap #editor) .es\:outline-hidden\! {
|
|
7258
|
+
outline-offset: 2px !important;
|
|
7259
|
+
outline: 2px solid #0000 !important;
|
|
7260
|
+
}
|
|
7261
|
+
}
|
|
7262
|
+
|
|
7226
7263
|
:is(body, #wpwrap #editor) .es\:outline {
|
|
7227
7264
|
outline-style: var(--tw-outline-style);
|
|
7228
7265
|
outline-width: 1px;
|
|
@@ -7796,10 +7833,6 @@ button, input:where([type="button"], [type="reset"], [type="submit"]) {
|
|
|
7796
7833
|
border-bottom-left-radius: var(--es-radius-md);
|
|
7797
7834
|
}
|
|
7798
7835
|
|
|
7799
|
-
:is(body, #wpwrap #editor) .es\:not-disabled\:cursor-pointer:not(:is(:disabled, [data-rac][data-disabled])) {
|
|
7800
|
-
cursor: pointer;
|
|
7801
|
-
}
|
|
7802
|
-
|
|
7803
7836
|
:is(body, #wpwrap #editor) .es\:not-has-any-icon\:aspect-5\/3:not(:has(* svg)) {
|
|
7804
7837
|
aspect-ratio: 5 / 3;
|
|
7805
7838
|
}
|
|
@@ -8365,11 +8398,6 @@ button, input:where([type="button"], [type="reset"], [type="submit"]) {
|
|
|
8365
8398
|
border-bottom-left-radius: var(--es-radius-2xl);
|
|
8366
8399
|
}
|
|
8367
8400
|
|
|
8368
|
-
:is(body, #wpwrap #editor) .es\:first\:rounded-l-xl:first-child {
|
|
8369
|
-
border-top-left-radius: var(--es-radius-xl);
|
|
8370
|
-
border-bottom-left-radius: var(--es-radius-xl);
|
|
8371
|
-
}
|
|
8372
|
-
|
|
8373
8401
|
:is(body, #wpwrap #editor) .es\:first\:pt-2:first-child {
|
|
8374
8402
|
padding-top: calc(var(--es-spacing) * 2);
|
|
8375
8403
|
}
|
|
@@ -8383,11 +8411,6 @@ button, input:where([type="button"], [type="reset"], [type="submit"]) {
|
|
|
8383
8411
|
border-bottom-right-radius: var(--es-radius-2xl);
|
|
8384
8412
|
}
|
|
8385
8413
|
|
|
8386
|
-
:is(body, #wpwrap #editor) .es\:last\:rounded-r-xl:last-child {
|
|
8387
|
-
border-top-right-radius: var(--es-radius-xl);
|
|
8388
|
-
border-bottom-right-radius: var(--es-radius-xl);
|
|
8389
|
-
}
|
|
8390
|
-
|
|
8391
8414
|
:is(body, #wpwrap #editor) .es\:last\:rounded-b-2xl:last-child {
|
|
8392
8415
|
border-bottom-right-radius: var(--es-radius-2xl);
|
|
8393
8416
|
border-bottom-left-radius: var(--es-radius-2xl);
|
|
@@ -8465,6 +8488,16 @@ button, input:where([type="button"], [type="reset"], [type="submit"]) {
|
|
|
8465
8488
|
}
|
|
8466
8489
|
}
|
|
8467
8490
|
|
|
8491
|
+
:is(body, #wpwrap #editor) .es\:hover\:rounded-18:where([data-rac])[data-hovered] {
|
|
8492
|
+
border-radius: var(--es-radius-18);
|
|
8493
|
+
}
|
|
8494
|
+
|
|
8495
|
+
@media (hover: hover) {
|
|
8496
|
+
:is(body, #wpwrap #editor) .es\:hover\:rounded-18:where(:not([data-rac])):hover {
|
|
8497
|
+
border-radius: var(--es-radius-18);
|
|
8498
|
+
}
|
|
8499
|
+
}
|
|
8500
|
+
|
|
8468
8501
|
:is(body, #wpwrap #editor) .es\:hover\:rounded-lg:where([data-rac])[data-hovered] {
|
|
8469
8502
|
border-radius: var(--es-radius-lg);
|
|
8470
8503
|
}
|
|
@@ -11192,9 +11225,14 @@ button, input:where([type="button"], [type="reset"], [type="submit"]) {
|
|
|
11192
11225
|
border-bottom-left-radius: var(--es-radius-20) !important;
|
|
11193
11226
|
}
|
|
11194
11227
|
|
|
11195
|
-
:is(body, #wpwrap #editor) .es\:before-current\:rounded-
|
|
11196
|
-
border-top-
|
|
11197
|
-
border-bottom-
|
|
11228
|
+
:is(body, #wpwrap #editor) .es\:before-current\:rounded-r-2xl:has( + :where(:pressed, :active, [data-selected="true"], [data-focus-visible="true"], [data-hovered="true"], [aria-expanded="true"], [data-expanded="true"])) {
|
|
11229
|
+
border-top-right-radius: var(--es-radius-2xl);
|
|
11230
|
+
border-bottom-right-radius: var(--es-radius-2xl);
|
|
11231
|
+
}
|
|
11232
|
+
|
|
11233
|
+
:is(body, #wpwrap #editor) .es\:before-current\:rounded-b-2xl:has( + :where(:pressed, :active, [data-selected="true"], [data-focus-visible="true"], [data-hovered="true"], [aria-expanded="true"], [data-expanded="true"])) {
|
|
11234
|
+
border-bottom-right-radius: var(--es-radius-2xl);
|
|
11235
|
+
border-bottom-left-radius: var(--es-radius-2xl);
|
|
11198
11236
|
}
|
|
11199
11237
|
|
|
11200
11238
|
:is(body, #wpwrap #editor) .es\:before-current\:rounded-b-lg:has( + :where(:pressed, :active, [data-selected="true"], [data-focus-visible="true"], [data-hovered="true"], [aria-expanded="true"], [data-expanded="true"])) {
|
|
@@ -11207,6 +11245,11 @@ button, input:where([type="button"], [type="reset"], [type="submit"]) {
|
|
|
11207
11245
|
border-bottom-left-radius: var(--es-radius-xl);
|
|
11208
11246
|
}
|
|
11209
11247
|
|
|
11248
|
+
:where(:pressed, :active, [data-selected="true"], [data-focus-visible="true"], [data-hovered="true"], [aria-expanded="true"], [data-expanded="true"]) + :is(:is(body, #wpwrap #editor) .es\:after-current\:rounded-t-2xl) {
|
|
11249
|
+
border-top-left-radius: var(--es-radius-2xl);
|
|
11250
|
+
border-top-right-radius: var(--es-radius-2xl);
|
|
11251
|
+
}
|
|
11252
|
+
|
|
11210
11253
|
:where(:pressed, :active, [data-selected="true"], [data-focus-visible="true"], [data-hovered="true"], [aria-expanded="true"], [data-expanded="true"]) + :is(:is(body, #wpwrap #editor) .es\:after-current\:rounded-t-lg) {
|
|
11211
11254
|
border-top-left-radius: var(--es-radius-lg);
|
|
11212
11255
|
border-top-right-radius: var(--es-radius-lg);
|
|
@@ -11217,9 +11260,9 @@ button, input:where([type="button"], [type="reset"], [type="submit"]) {
|
|
|
11217
11260
|
border-top-right-radius: var(--es-radius-xl);
|
|
11218
11261
|
}
|
|
11219
11262
|
|
|
11220
|
-
:where(:pressed, :active, [data-selected="true"], [data-focus-visible="true"], [data-hovered="true"], [aria-expanded="true"], [data-expanded="true"]) + :is(:is(body, #wpwrap #editor) .es\:after-current\:rounded-
|
|
11221
|
-
border-top-
|
|
11222
|
-
border-bottom-
|
|
11263
|
+
:where(:pressed, :active, [data-selected="true"], [data-focus-visible="true"], [data-hovered="true"], [aria-expanded="true"], [data-expanded="true"]) + :is(:is(body, #wpwrap #editor) .es\:after-current\:rounded-l-2xl) {
|
|
11264
|
+
border-top-left-radius: var(--es-radius-2xl);
|
|
11265
|
+
border-bottom-left-radius: var(--es-radius-2xl);
|
|
11223
11266
|
}
|
|
11224
11267
|
|
|
11225
11268
|
:is(body, #wpwrap #editor) .es\:before-selected\:rounded-b-md:has( + :where([data-selected="true"])) {
|