@odx/ui 2.10.1 → 2.11.1
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/CHANGELOG.md +14 -0
- package/ag-grid-theme.css +10 -4
- package/charts-theme.css +1 -1
- package/core-theme.css +303 -143
- package/package.json +1 -1
- package/scss/3rdparty/ag-grid/theme.scss +1 -1
- package/scss/abstract/_motion.scss +4 -2
- package/scss/charts/theme.scss +1 -1
- package/scss/components/badge.component.scss +4 -1
- package/scss/components/button.component.scss +2 -0
- package/scss/components/expandable-list-item.component.scss +29 -52
- package/scss/components/form-field.component.scss +1 -0
- package/scss/components/inline-message.component.scss +2 -1
- package/scss/components/list-item.component.scss +20 -25
- package/scss/components/list.component.scss +24 -0
- package/scss/components/main-menu.component.scss +2 -0
- package/scss/layout/_typography.scss +4 -4
- package/scss/variables/_typography.scss +1 -0
package/core-theme.css
CHANGED
|
@@ -284,6 +284,7 @@ body {
|
|
|
284
284
|
|
|
285
285
|
/* stylelint-disable block-closing-brace-newline-after */
|
|
286
286
|
:root {
|
|
287
|
+
--odx-typography-font-family: "PangeaText", "Arial", sans-serif;
|
|
287
288
|
--odx-typography-base-size: 1.6rem;
|
|
288
289
|
--odx-typography-base-line-height: 1.5;
|
|
289
290
|
--odx-typography-font-weight-normal: normal;
|
|
@@ -530,19 +531,19 @@ body,
|
|
|
530
531
|
}
|
|
531
532
|
|
|
532
533
|
@font-face {
|
|
533
|
-
font-family:
|
|
534
|
+
font-family: PangeaText;
|
|
534
535
|
font-style: normal;
|
|
535
536
|
font-weight: normal;
|
|
536
537
|
src: url(5eabf29514e9649c8c73.woff2) format("woff2");
|
|
537
538
|
}
|
|
538
539
|
@font-face {
|
|
539
|
-
font-family:
|
|
540
|
+
font-family: PangeaText;
|
|
540
541
|
font-style: normal;
|
|
541
542
|
font-weight: 500;
|
|
542
543
|
src: url(24031beb1b96a58f519c.woff2) format("woff2");
|
|
543
544
|
}
|
|
544
545
|
@font-face {
|
|
545
|
-
font-family:
|
|
546
|
+
font-family: PangeaText;
|
|
546
547
|
font-style: normal;
|
|
547
548
|
font-weight: bold;
|
|
548
549
|
src: url(eb2051d1f9da906e0b3e.woff2) format("woff2");
|
|
@@ -559,7 +560,7 @@ html body {
|
|
|
559
560
|
font-weight: var(--odx-typography-font-weight-normal);
|
|
560
561
|
letter-spacing: var(--odx-typography-font-weight-normal-letter-spacing);
|
|
561
562
|
color: var(--odx-c-text);
|
|
562
|
-
font-family:
|
|
563
|
+
font-family: var(--odx-typography-font-family);
|
|
563
564
|
}
|
|
564
565
|
|
|
565
566
|
.odx-title, .odx-header__title, .odx-area-header__title, .odx-error-page__title, .odx-content h1, .odx-content h2, .odx-content h3, .odx-content h4, .odx-content h5, .odx-content h6, .odx-subtitle, .odx-area-header__subtitle, .odx-error-page__description,
|
|
@@ -2030,8 +2031,10 @@ html body .odx-fs-italic {
|
|
|
2030
2031
|
CDK
|
|
2031
2032
|
*/
|
|
2032
2033
|
.odx-cdk-active-indicator {
|
|
2033
|
-
transition:
|
|
2034
|
+
transition-delay: 0ms;
|
|
2035
|
+
transition-duration: var(--odx-v-transition-duration);
|
|
2034
2036
|
transition-property: all;
|
|
2037
|
+
transition-timing-function: var(--odx-v-transition-easing-fn);
|
|
2035
2038
|
opacity: 0;
|
|
2036
2039
|
pointer-events: none;
|
|
2037
2040
|
position: absolute;
|
|
@@ -2051,8 +2054,10 @@ html body .odx-fs-italic {
|
|
|
2051
2054
|
}
|
|
2052
2055
|
|
|
2053
2056
|
.odx-cdk-connected-overlay {
|
|
2054
|
-
transition:
|
|
2057
|
+
transition-delay: 0ms;
|
|
2058
|
+
transition-duration: var(--odx-v-transition-duration);
|
|
2055
2059
|
transition-property: opacity, visibility;
|
|
2060
|
+
transition-timing-function: var(--odx-v-transition-easing-fn);
|
|
2056
2061
|
display: block;
|
|
2057
2062
|
position: fixed;
|
|
2058
2063
|
z-index: var(--odx-v-layer-4);
|
|
@@ -2134,8 +2139,10 @@ html body .odx-fs-italic {
|
|
|
2134
2139
|
}
|
|
2135
2140
|
|
|
2136
2141
|
.odx-accordion-item {
|
|
2137
|
-
transition:
|
|
2142
|
+
transition-delay: 0ms;
|
|
2143
|
+
transition-duration: var(--odx-v-transition-duration);
|
|
2138
2144
|
transition-property: color;
|
|
2145
|
+
transition-timing-function: var(--odx-v-transition-easing-fn);
|
|
2139
2146
|
padding-top: calc(var(--odx-vertical-rythm-base-size) * 0.25);
|
|
2140
2147
|
padding-bottom: calc(var(--odx-vertical-rythm-base-size) * 0.2084);
|
|
2141
2148
|
border-bottom: 1px solid var(--odx-input-control-outline-color);
|
|
@@ -2147,8 +2154,10 @@ html body .odx-fs-italic {
|
|
|
2147
2154
|
padding-top: calc(var(--odx-vertical-rythm-base-size) * 0.25);
|
|
2148
2155
|
padding-bottom: calc(var(--odx-vertical-rythm-base-size) * 0.25);
|
|
2149
2156
|
line-height: calc(var(--odx-vertical-rythm-base-size) * 1);
|
|
2150
|
-
transition:
|
|
2157
|
+
transition-delay: 0ms;
|
|
2158
|
+
transition-duration: var(--odx-v-transition-duration);
|
|
2151
2159
|
transition-property: background-color, outline-color;
|
|
2160
|
+
transition-timing-function: var(--odx-v-transition-easing-fn);
|
|
2152
2161
|
outline: var(--odx-v-outline-width) solid transparent;
|
|
2153
2162
|
outline-offset: calc(-1 * var(--odx-v-outline-width));
|
|
2154
2163
|
cursor: pointer;
|
|
@@ -2184,8 +2193,10 @@ html body .odx-fs-italic {
|
|
|
2184
2193
|
letter-spacing: var(--odx-typography-font-weight-medium-letter-spacing);
|
|
2185
2194
|
}
|
|
2186
2195
|
.odx-accordion-item__icon {
|
|
2187
|
-
transition:
|
|
2196
|
+
transition-delay: 0ms;
|
|
2197
|
+
transition-duration: var(--odx-v-transition-duration);
|
|
2188
2198
|
transition-property: transform;
|
|
2199
|
+
transition-timing-function: var(--odx-v-transition-easing-fn);
|
|
2189
2200
|
transform: rotate(0deg);
|
|
2190
2201
|
}
|
|
2191
2202
|
.odx-accordion-item--expanded .odx-accordion-item__icon {
|
|
@@ -2348,8 +2359,10 @@ html body .odx-fs-italic {
|
|
|
2348
2359
|
height: calc(var(--odx-vertical-rythm-base-size) * 1.5);
|
|
2349
2360
|
padding-right: calc(var(--odx-vertical-rythm-base-size) * 0.5);
|
|
2350
2361
|
padding-left: calc(var(--odx-vertical-rythm-base-size) * 0.5);
|
|
2351
|
-
transition:
|
|
2362
|
+
transition-delay: 0ms;
|
|
2363
|
+
transition-duration: var(--odx-v-transition-duration);
|
|
2352
2364
|
transition-property: background-color, color, outline;
|
|
2365
|
+
transition-timing-function: var(--odx-v-transition-easing-fn);
|
|
2353
2366
|
font-size: calc(var(--odx-typography-base-size) * 1);
|
|
2354
2367
|
font-weight: var(--odx-typography-font-weight-medium);
|
|
2355
2368
|
letter-spacing: var(--odx-typography-font-weight-medium-letter-spacing);
|
|
@@ -2468,7 +2481,7 @@ html body .odx-fs-italic {
|
|
|
2468
2481
|
background-color: var(--odx-c-secondary-hover);
|
|
2469
2482
|
}
|
|
2470
2483
|
}
|
|
2471
|
-
.odx-button--secondary.odx-dropdown-host[aria-expanded=true], .odx-dropdown-host[aria-expanded=true].odx-button, .odx-button--secondary:active, .odx-button:active {
|
|
2484
|
+
.odx-button--secondary.odx-dropdown-host[aria-expanded=true], .odx-dropdown-host[aria-expanded=true].odx-button, .odx-button--secondary.is-active, .is-active.odx-button, .odx-button--secondary:active, .odx-button:active {
|
|
2472
2485
|
background-color: var(--odx-c-secondary-active);
|
|
2473
2486
|
}
|
|
2474
2487
|
.odx-button--secondary:disabled, .odx-button:disabled, .odx-button--secondary.is-disabled, .is-disabled.odx-button {
|
|
@@ -2484,7 +2497,7 @@ html body .odx-fs-italic {
|
|
|
2484
2497
|
background-color: var(--odx-c-primary-hover);
|
|
2485
2498
|
}
|
|
2486
2499
|
}
|
|
2487
|
-
.odx-button--primary.odx-dropdown-host[aria-expanded=true], .odx-button--primary:active {
|
|
2500
|
+
.odx-button--primary.odx-dropdown-host[aria-expanded=true], .odx-button--primary.is-active, .odx-button--primary:active {
|
|
2488
2501
|
background-color: var(--odx-c-primary-active);
|
|
2489
2502
|
}
|
|
2490
2503
|
.odx-button--primary:disabled, .odx-button--primary.is-disabled {
|
|
@@ -2500,7 +2513,7 @@ html body .odx-fs-italic {
|
|
|
2500
2513
|
background-color: var(--odx-c-highlight-hover);
|
|
2501
2514
|
}
|
|
2502
2515
|
}
|
|
2503
|
-
.odx-button--highlight.odx-dropdown-host[aria-expanded=true], .odx-button--highlight:active {
|
|
2516
|
+
.odx-button--highlight.odx-dropdown-host[aria-expanded=true], .odx-button--highlight.is-active, .odx-button--highlight:active {
|
|
2504
2517
|
background-color: var(--odx-c-highlight-active);
|
|
2505
2518
|
}
|
|
2506
2519
|
.odx-button--highlight:disabled, .odx-button--highlight.is-disabled {
|
|
@@ -2516,7 +2529,7 @@ html body .odx-fs-italic {
|
|
|
2516
2529
|
background-color: var(--odx-c-success-hover);
|
|
2517
2530
|
}
|
|
2518
2531
|
}
|
|
2519
|
-
.odx-button--success.odx-dropdown-host[aria-expanded=true], .odx-button--success:active {
|
|
2532
|
+
.odx-button--success.odx-dropdown-host[aria-expanded=true], .odx-button--success.is-active, .odx-button--success:active {
|
|
2520
2533
|
background-color: var(--odx-c-success-active);
|
|
2521
2534
|
}
|
|
2522
2535
|
.odx-button--success:disabled, .odx-button--success.is-disabled {
|
|
@@ -2532,7 +2545,7 @@ html body .odx-fs-italic {
|
|
|
2532
2545
|
background-color: var(--odx-c-danger-hover);
|
|
2533
2546
|
}
|
|
2534
2547
|
}
|
|
2535
|
-
.odx-button--danger.odx-dropdown-host[aria-expanded=true], .odx-button--danger:active {
|
|
2548
|
+
.odx-button--danger.odx-dropdown-host[aria-expanded=true], .odx-button--danger.is-active, .odx-button--danger:active {
|
|
2536
2549
|
background-color: var(--odx-c-danger-active);
|
|
2537
2550
|
}
|
|
2538
2551
|
.odx-button--danger:disabled, .odx-button--danger.is-disabled {
|
|
@@ -2548,7 +2561,7 @@ html body .odx-fs-italic {
|
|
|
2548
2561
|
background-color: var(--odx-c-confirmation-hover);
|
|
2549
2562
|
}
|
|
2550
2563
|
}
|
|
2551
|
-
.odx-button--confirmation.odx-dropdown-host[aria-expanded=true], .odx-button--confirmation:active {
|
|
2564
|
+
.odx-button--confirmation.odx-dropdown-host[aria-expanded=true], .odx-button--confirmation.is-active, .odx-button--confirmation:active {
|
|
2552
2565
|
background-color: var(--odx-c-confirmation-active);
|
|
2553
2566
|
}
|
|
2554
2567
|
.odx-button--confirmation:disabled, .odx-button--confirmation.is-disabled {
|
|
@@ -2570,7 +2583,7 @@ html body .odx-fs-italic {
|
|
|
2570
2583
|
.odx-button--ghost:active, .odx-main-menu__close:active, .odx-main-menu-button:active, .odx-action-group > .odx-button:active:not(.odx-button--primary, .odx-button--success, .odx-button--danger, .odx-button--confirmation, .odx-auth-sign-in) {
|
|
2571
2584
|
color: var(--odx-c-link-active);
|
|
2572
2585
|
}
|
|
2573
|
-
.odx-button--ghost.odx-dropdown-host[aria-expanded=true], .odx-dropdown-host[aria-expanded=true].odx-main-menu__close, .odx-dropdown-host[aria-expanded=true].odx-main-menu-button, .odx-action-group > .odx-dropdown-host[aria-expanded=true].odx-button:not(.odx-button--primary, .odx-button--success, .odx-button--danger, .odx-button--confirmation, .odx-auth-sign-in), .odx-button--ghost:focus-visible, .odx-main-menu__close:focus-visible, .odx-main-menu-button:focus-visible, .odx-action-group > .odx-button:focus-visible:not(.odx-button--primary, .odx-button--success, .odx-button--danger, .odx-button--confirmation, .odx-auth-sign-in), .odx-button--ghost:active, .odx-main-menu__close:active, .odx-main-menu-button:active, .odx-action-group > .odx-button:active:not(.odx-button--primary, .odx-button--success, .odx-button--danger, .odx-button--confirmation, .odx-auth-sign-in) {
|
|
2586
|
+
.odx-button--ghost.odx-dropdown-host[aria-expanded=true], .odx-dropdown-host[aria-expanded=true].odx-main-menu__close, .odx-dropdown-host[aria-expanded=true].odx-main-menu-button, .odx-action-group > .odx-dropdown-host[aria-expanded=true].odx-button:not(.odx-button--primary, .odx-button--success, .odx-button--danger, .odx-button--confirmation, .odx-auth-sign-in), .odx-button--ghost.is-active, .is-active.odx-main-menu__close, .is-active.odx-main-menu-button, .odx-action-group > .is-active.odx-button:not(.odx-button--primary, .odx-button--success, .odx-button--danger, .odx-button--confirmation, .odx-auth-sign-in), .odx-button--ghost:focus-visible, .odx-main-menu__close:focus-visible, .odx-main-menu-button:focus-visible, .odx-action-group > .odx-button:focus-visible:not(.odx-button--primary, .odx-button--success, .odx-button--danger, .odx-button--confirmation, .odx-auth-sign-in), .odx-button--ghost:active, .odx-main-menu__close:active, .odx-main-menu-button:active, .odx-action-group > .odx-button:active:not(.odx-button--primary, .odx-button--success, .odx-button--danger, .odx-button--confirmation, .odx-auth-sign-in) {
|
|
2574
2587
|
background-color: var(--odx-c-focus);
|
|
2575
2588
|
}
|
|
2576
2589
|
.odx-button--ghost:disabled, .odx-main-menu__close:disabled, .odx-main-menu-button:disabled, .odx-action-group > .odx-button:disabled:not(.odx-button--primary, .odx-button--success, .odx-button--danger, .odx-button--confirmation, .odx-auth-sign-in), .odx-button--ghost.is-disabled, .is-disabled.odx-main-menu__close, .is-disabled.odx-main-menu-button, .odx-action-group > .is-disabled.odx-button:not(.odx-button--primary, .odx-button--success, .odx-button--danger, .odx-button--confirmation, .odx-auth-sign-in) {
|
|
@@ -2752,6 +2765,10 @@ body {
|
|
|
2752
2765
|
--odx-badge-contrast-color: var(--odx-c-background-content);
|
|
2753
2766
|
}
|
|
2754
2767
|
|
|
2768
|
+
.odx-badge-overlay {
|
|
2769
|
+
z-index: var(--odx-v-layer-1);
|
|
2770
|
+
}
|
|
2771
|
+
|
|
2755
2772
|
.odx-badge {
|
|
2756
2773
|
padding-right: calc(var(--odx-vertical-rythm-base-size) * 0.125);
|
|
2757
2774
|
padding-left: calc(var(--odx-vertical-rythm-base-size) * 0.125);
|
|
@@ -2768,7 +2785,6 @@ body {
|
|
|
2768
2785
|
min-width: calc(var(--odx-vertical-rythm-base-size) * 0.6667);
|
|
2769
2786
|
outline: 1px solid transparent;
|
|
2770
2787
|
vertical-align: middle;
|
|
2771
|
-
z-index: var(--odx-v-layer-1);
|
|
2772
2788
|
}
|
|
2773
2789
|
.odx-badge, .odx-badge--highlight {
|
|
2774
2790
|
background-color: var(--odx-c-highlight);
|
|
@@ -2820,8 +2836,10 @@ body[odxTheme=dark], body.odx-theme-dark {
|
|
|
2820
2836
|
width: max-content;
|
|
2821
2837
|
}
|
|
2822
2838
|
.odx-bar-button {
|
|
2823
|
-
transition:
|
|
2839
|
+
transition-delay: 0ms;
|
|
2840
|
+
transition-duration: var(--odx-v-transition-duration);
|
|
2824
2841
|
transition-property: background-color, color, outline;
|
|
2842
|
+
transition-timing-function: var(--odx-v-transition-easing-fn);
|
|
2825
2843
|
outline-offset: calc(-1 * var(--odx-v-outline-width-bold));
|
|
2826
2844
|
outline-width: var(--odx-v-outline-width-bold);
|
|
2827
2845
|
align-items: center;
|
|
@@ -2996,8 +3014,10 @@ body {
|
|
|
2996
3014
|
}
|
|
2997
3015
|
|
|
2998
3016
|
.odx-card {
|
|
2999
|
-
transition:
|
|
3017
|
+
transition-delay: 0ms;
|
|
3018
|
+
transition-duration: var(--odx-v-transition-duration);
|
|
3000
3019
|
transition-property: box-shadow, outline-color, color;
|
|
3020
|
+
transition-timing-function: var(--odx-v-transition-easing-fn);
|
|
3001
3021
|
outline: var(--odx-v-outline-width) solid transparent;
|
|
3002
3022
|
outline-offset: calc(-1 * var(--odx-v-outline-width));
|
|
3003
3023
|
cursor: pointer;
|
|
@@ -3157,8 +3177,10 @@ body {
|
|
|
3157
3177
|
max-height: inherit;
|
|
3158
3178
|
}
|
|
3159
3179
|
.odx-calendar-header {
|
|
3160
|
-
transition:
|
|
3180
|
+
transition-delay: 0ms;
|
|
3181
|
+
transition-duration: var(--odx-v-transition-duration);
|
|
3161
3182
|
transition-property: background-color, outline-color, color, border-radius;
|
|
3183
|
+
transition-timing-function: var(--odx-v-transition-easing-fn);
|
|
3162
3184
|
display: flex;
|
|
3163
3185
|
align-items: center;
|
|
3164
3186
|
font-weight: var(--odx-typography-font-weight-normal);
|
|
@@ -3179,8 +3201,10 @@ body {
|
|
|
3179
3201
|
margin-bottom: calc(var(--odx-vertical-rythm-base-size) * 0);
|
|
3180
3202
|
height: calc(var(--odx-vertical-rythm-base-size) * 1.5);
|
|
3181
3203
|
width: calc(var(--odx-vertical-rythm-base-size) * 1.5);
|
|
3182
|
-
transition:
|
|
3204
|
+
transition-delay: 0ms;
|
|
3205
|
+
transition-duration: var(--odx-v-transition-duration);
|
|
3183
3206
|
transition-property: background-color, outline-color, color, border-radius;
|
|
3207
|
+
transition-timing-function: var(--odx-v-transition-easing-fn);
|
|
3184
3208
|
outline: var(--odx-v-outline-width) solid transparent;
|
|
3185
3209
|
outline-offset: calc(-1 * var(--odx-v-outline-width));
|
|
3186
3210
|
cursor: pointer;
|
|
@@ -3321,8 +3345,10 @@ body {
|
|
|
3321
3345
|
padding-top: calc(var(--odx-vertical-rythm-base-size) * 0);
|
|
3322
3346
|
padding-bottom: calc(var(--odx-vertical-rythm-base-size) * 0);
|
|
3323
3347
|
line-height: calc(var(--odx-vertical-rythm-base-size) * 1);
|
|
3324
|
-
transition:
|
|
3348
|
+
transition-delay: 0ms;
|
|
3349
|
+
transition-duration: var(--odx-v-transition-duration);
|
|
3325
3350
|
transition-property: background-color, color, outline-color;
|
|
3351
|
+
transition-timing-function: var(--odx-v-transition-easing-fn);
|
|
3326
3352
|
font-size: calc(var(--odx-typography-base-size) * 1);
|
|
3327
3353
|
outline: var(--odx-v-outline-width) solid transparent;
|
|
3328
3354
|
outline-offset: calc(-1 * var(--odx-v-outline-width));
|
|
@@ -3379,8 +3405,10 @@ body {
|
|
|
3379
3405
|
margin-bottom: calc(var(--odx-vertical-rythm-base-size) * 0.0834);
|
|
3380
3406
|
height: calc(var(--odx-vertical-rythm-base-size) * 0.8334);
|
|
3381
3407
|
width: calc(var(--odx-vertical-rythm-base-size) * 0.8334);
|
|
3382
|
-
transition:
|
|
3408
|
+
transition-delay: 0ms;
|
|
3409
|
+
transition-duration: var(--odx-v-transition-duration);
|
|
3383
3410
|
transition-property: background-color, color, outline-color;
|
|
3411
|
+
transition-timing-function: var(--odx-v-transition-easing-fn);
|
|
3384
3412
|
display: inline-flex;
|
|
3385
3413
|
align-items: center;
|
|
3386
3414
|
justify-content: center;
|
|
@@ -3398,8 +3426,10 @@ body {
|
|
|
3398
3426
|
margin-bottom: calc(var(--odx-vertical-rythm-base-size) * 0);
|
|
3399
3427
|
height: calc(var(--odx-vertical-rythm-base-size) * 0.75);
|
|
3400
3428
|
width: calc(var(--odx-vertical-rythm-base-size) * 0.75);
|
|
3401
|
-
transition:
|
|
3429
|
+
transition-delay: 0ms;
|
|
3430
|
+
transition-duration: var(--odx-v-transition-duration);
|
|
3402
3431
|
transition-property: opacity;
|
|
3432
|
+
transition-timing-function: var(--odx-v-transition-easing-fn);
|
|
3403
3433
|
font-size: calc(var(--odx-vertical-rythm-base-size) * 0.75);
|
|
3404
3434
|
opacity: 0;
|
|
3405
3435
|
}
|
|
@@ -3448,8 +3478,10 @@ body {
|
|
|
3448
3478
|
.odx-chip {
|
|
3449
3479
|
font-weight: var(--odx-typography-font-weight-medium);
|
|
3450
3480
|
letter-spacing: var(--odx-typography-font-weight-medium-letter-spacing);
|
|
3451
|
-
transition:
|
|
3481
|
+
transition-delay: 0ms;
|
|
3482
|
+
transition-duration: var(--odx-v-transition-duration);
|
|
3452
3483
|
transition-property: background-color, color;
|
|
3484
|
+
transition-timing-function: var(--odx-v-transition-easing-fn);
|
|
3453
3485
|
display: inline-flex;
|
|
3454
3486
|
gap: calc(var(--odx-vertical-rythm-base-size) * 0.1667);
|
|
3455
3487
|
-webkit-user-select: none;
|
|
@@ -3465,8 +3497,10 @@ body {
|
|
|
3465
3497
|
display: flex;
|
|
3466
3498
|
align-items: center;
|
|
3467
3499
|
justify-content: center;
|
|
3468
|
-
transition:
|
|
3500
|
+
transition-delay: 0ms;
|
|
3501
|
+
transition-duration: var(--odx-v-transition-duration);
|
|
3469
3502
|
transition-property: background-color, color, outline;
|
|
3503
|
+
transition-timing-function: var(--odx-v-transition-easing-fn);
|
|
3470
3504
|
border-radius: 50%;
|
|
3471
3505
|
margin: 0;
|
|
3472
3506
|
}
|
|
@@ -3559,8 +3593,10 @@ body {
|
|
|
3559
3593
|
stroke: var(--gray-100);
|
|
3560
3594
|
}
|
|
3561
3595
|
.odx-circular-progress__indicator {
|
|
3562
|
-
transition:
|
|
3596
|
+
transition-delay: 0ms;
|
|
3597
|
+
transition-duration: var(--odx-v-transition-duration);
|
|
3563
3598
|
transition-property: stroke-dashoffset;
|
|
3599
|
+
transition-timing-function: var(--odx-v-transition-easing-fn);
|
|
3564
3600
|
stroke: var(--odx-c-highlight);
|
|
3565
3601
|
transform: rotate(-90deg);
|
|
3566
3602
|
transform-origin: 50% 50%;
|
|
@@ -3662,65 +3698,39 @@ body {
|
|
|
3662
3698
|
max-height: 359px;
|
|
3663
3699
|
}
|
|
3664
3700
|
|
|
3665
|
-
.odx-expandable-list-
|
|
3701
|
+
.odx-expandable-list-item__header {
|
|
3666
3702
|
display: block;
|
|
3667
3703
|
position: relative;
|
|
3668
3704
|
}
|
|
3669
|
-
.odx-expandable-list-item
|
|
3670
|
-
|
|
3671
|
-
transition-property: border-color;
|
|
3672
|
-
border-bottom: 1px solid var(--gray-200);
|
|
3673
|
-
content: "";
|
|
3674
|
-
display: block;
|
|
3675
|
-
left: calc(var(--odx-vertical-rythm-base-size) * 0.3334);
|
|
3676
|
-
position: absolute;
|
|
3677
|
-
top: 0;
|
|
3678
|
-
width: calc(100% - calc(var(--odx-vertical-rythm-base-size) * 0.5834));
|
|
3679
|
-
}
|
|
3680
|
-
.odx-expandable-list-item:focus-visible::before, .odx-expandable-list-item:first-child::before {
|
|
3681
|
-
border-bottom-color: transparent;
|
|
3682
|
-
}
|
|
3683
|
-
@media (hover: hover){
|
|
3684
|
-
.odx-expandable-list-item:hover::before {
|
|
3685
|
-
border-bottom-color: transparent;
|
|
3686
|
-
}
|
|
3687
|
-
}
|
|
3688
|
-
.odx-expandable-list-item--danger+.odx-expandable-list-item::before {
|
|
3689
|
-
border-color: transparent;
|
|
3690
|
-
}
|
|
3691
|
-
@media (hover: hover){
|
|
3692
|
-
.odx-expandable-list-item:hover+.odx-expandable-list-item::before {
|
|
3693
|
-
border-color: transparent;
|
|
3705
|
+
.odx-expandable-list-item__header > .odx-list-item {
|
|
3706
|
+
padding-right: calc(var(--odx-vertical-rythm-base-size) * 2.1667);
|
|
3694
3707
|
}
|
|
3708
|
+
.odx-expandable-list-item__action {
|
|
3709
|
+
margin: 0;
|
|
3710
|
+
position: absolute;
|
|
3711
|
+
right: calc(var(--odx-vertical-rythm-base-size) * 0.3334);
|
|
3712
|
+
top: 50%;
|
|
3713
|
+
transform: translateY(-50%);
|
|
3695
3714
|
}
|
|
3696
|
-
.odx-expandable-list-
|
|
3697
|
-
|
|
3715
|
+
.odx-expandable-list-item__action .odx-icon {
|
|
3716
|
+
transition-delay: 0ms;
|
|
3717
|
+
transition-duration: var(--odx-v-transition-duration);
|
|
3718
|
+
transition-property: transform;
|
|
3719
|
+
transition-timing-function: var(--odx-v-transition-easing-fn);
|
|
3698
3720
|
}
|
|
3699
|
-
.odx-expandable-list-item
|
|
3700
|
-
|
|
3721
|
+
.odx-expandable-list-item__slot .odx-list .odx-expandable-list-item:first-child > .odx-expandable-list-item__header .odx-list-item,
|
|
3722
|
+
.odx-expandable-list-item__slot .odx-list .odx-list-item:first-child {
|
|
3723
|
+
--separator-color: var(--odx-c-separator);
|
|
3701
3724
|
}
|
|
3702
|
-
.odx-expandable-list-
|
|
3703
|
-
|
|
3725
|
+
.odx-expandable-list-item:has(> .odx-expandable-list-item__header .odx-list-item--danger) .odx-expandable-list-item__action .odx-button {
|
|
3726
|
+
color: var(--odx-c-danger-text);
|
|
3704
3727
|
}
|
|
3705
|
-
.odx-expandable-list-
|
|
3706
|
-
|
|
3707
|
-
transition-property: transform;
|
|
3708
|
-
position: relative;
|
|
3728
|
+
.odx-expandable-list-item:first-child > .odx-expandable-list-item__header .odx-list-item {
|
|
3729
|
+
--separator-color: transparent;
|
|
3709
3730
|
}
|
|
3710
|
-
.odx-expandable-list-item--expanded .odx-expandable-list-
|
|
3731
|
+
.odx-expandable-list-item--expanded > .odx-expandable-list-item__header .odx-expandable-list-item__action .odx-button .odx-icon {
|
|
3711
3732
|
transform: scaleY(-1);
|
|
3712
3733
|
}
|
|
3713
|
-
.odx-expandable-list-item:last-child .odx-expandable-list-item__slot .odx-list-item:last-child::after {
|
|
3714
|
-
border-bottom: 1px solid var(--gray-200);
|
|
3715
|
-
bottom: 0;
|
|
3716
|
-
content: "";
|
|
3717
|
-
display: block;
|
|
3718
|
-
position: absolute;
|
|
3719
|
-
width: calc(100% - calc(var(--odx-vertical-rythm-base-size) * 0.5834));
|
|
3720
|
-
}
|
|
3721
|
-
.odx-expandable-list-item__slot .odx-list-item__content {
|
|
3722
|
-
padding-left: calc(var(--odx-vertical-rythm-base-size) * 1.5);
|
|
3723
|
-
}
|
|
3724
3734
|
|
|
3725
3735
|
body {
|
|
3726
3736
|
--odx-form-field-hint-color: var(--gray-500);
|
|
@@ -3750,8 +3760,10 @@ body {
|
|
|
3750
3760
|
margin-top: calc(var(--odx-vertical-rythm-base-size) * 0);
|
|
3751
3761
|
margin-bottom: calc(var(--odx-vertical-rythm-base-size) * 0);
|
|
3752
3762
|
height: calc(var(--odx-vertical-rythm-base-size) * 1.5);
|
|
3753
|
-
transition:
|
|
3763
|
+
transition-delay: 0ms;
|
|
3764
|
+
transition-duration: var(--odx-v-transition-duration);
|
|
3754
3765
|
transition-property: color;
|
|
3766
|
+
transition-timing-function: var(--odx-v-transition-easing-fn);
|
|
3755
3767
|
display: inline-flex;
|
|
3756
3768
|
align-items: center;
|
|
3757
3769
|
flex: 0 0 auto;
|
|
@@ -3795,8 +3807,10 @@ body {
|
|
|
3795
3807
|
margin-top: calc(var(--odx-vertical-rythm-base-size) * 0);
|
|
3796
3808
|
margin-bottom: calc(var(--odx-vertical-rythm-base-size) * 0);
|
|
3797
3809
|
min-height: calc(var(--odx-vertical-rythm-base-size) * 1.5);
|
|
3798
|
-
transition:
|
|
3810
|
+
transition-delay: 0ms;
|
|
3811
|
+
transition-duration: var(--odx-v-transition-duration);
|
|
3799
3812
|
transition-property: background-color, color, outline-color;
|
|
3813
|
+
transition-timing-function: var(--odx-v-transition-easing-fn);
|
|
3800
3814
|
outline: var(--odx-v-outline-width) solid transparent;
|
|
3801
3815
|
outline-offset: calc(-1 * var(--odx-v-outline-width));
|
|
3802
3816
|
background-color: var(--odx-input-control-background-color);
|
|
@@ -3828,9 +3842,22 @@ body {
|
|
|
3828
3842
|
background-color: var(--odx-c-focus);
|
|
3829
3843
|
}
|
|
3830
3844
|
}
|
|
3845
|
+
.odx-form-field__control:focus-within:has(.odx-select:focus-visible) {
|
|
3846
|
+
outline-color: var(--odx-c-focus-outline);
|
|
3847
|
+
}
|
|
3848
|
+
.odx-form-field__control:focus-within:has(.odx-select:focus-visible) {
|
|
3849
|
+
background-color: var(--odx-c-focus);
|
|
3850
|
+
}
|
|
3851
|
+
@media (hover: hover){
|
|
3852
|
+
.odx-form-field__control:focus-within:has(.odx-select:focus-visible):hover {
|
|
3853
|
+
background-color: var(--odx-c-focus);
|
|
3854
|
+
}
|
|
3855
|
+
}
|
|
3831
3856
|
.odx-form-field__control::after {
|
|
3832
|
-
transition:
|
|
3857
|
+
transition-delay: 0ms;
|
|
3858
|
+
transition-duration: var(--odx-v-transition-duration);
|
|
3833
3859
|
transition-property: background-color;
|
|
3860
|
+
transition-timing-function: var(--odx-v-transition-easing-fn);
|
|
3834
3861
|
background-color: transparent;
|
|
3835
3862
|
bottom: 0;
|
|
3836
3863
|
content: "";
|
|
@@ -3930,8 +3957,10 @@ body {
|
|
|
3930
3957
|
padding-top: calc(var(--odx-vertical-rythm-base-size) * 0);
|
|
3931
3958
|
padding-bottom: calc(var(--odx-vertical-rythm-base-size) * 0);
|
|
3932
3959
|
line-height: calc(var(--odx-vertical-rythm-base-size) * 0.6667);
|
|
3933
|
-
transition:
|
|
3960
|
+
transition-delay: 0ms;
|
|
3961
|
+
transition-duration: var(--odx-v-transition-duration);
|
|
3934
3962
|
transition-property: opacity;
|
|
3963
|
+
transition-timing-function: var(--odx-v-transition-easing-fn);
|
|
3935
3964
|
font-size: calc(var(--odx-typography-base-size) * (1*1/var(--odx-typography-negative-font-scaling-factor)*1/var(--odx-typography-negative-font-scaling-factor)));
|
|
3936
3965
|
color: var(--odx-form-field-hint-color);
|
|
3937
3966
|
text-align: right;
|
|
@@ -4016,10 +4045,10 @@ body {
|
|
|
4016
4045
|
--odx-c-warning: var(--yellow-50);
|
|
4017
4046
|
--odx-c-danger: var(--red-00);
|
|
4018
4047
|
--odx-c-success: var(--green-00);
|
|
4019
|
-
padding-top: calc(var(--odx-vertical-rythm-base-size) * 0.4167);
|
|
4020
4048
|
padding-right: calc(var(--odx-vertical-rythm-base-size) * 0.4167);
|
|
4021
|
-
padding-bottom: calc(var(--odx-vertical-rythm-base-size) * 0.4167);
|
|
4022
4049
|
padding-left: calc(var(--odx-vertical-rythm-base-size) * 0.4167);
|
|
4050
|
+
padding-top: calc(var(--odx-vertical-rythm-base-size) * 0.5);
|
|
4051
|
+
padding-bottom: calc(var(--odx-vertical-rythm-base-size) * 0.5);
|
|
4023
4052
|
display: flex;
|
|
4024
4053
|
gap: calc(var(--odx-vertical-rythm-base-size) * 0.4167);
|
|
4025
4054
|
}
|
|
@@ -4050,8 +4079,10 @@ body[odxTheme=dark], body.odx-theme-dark {
|
|
|
4050
4079
|
}
|
|
4051
4080
|
|
|
4052
4081
|
.odx-link {
|
|
4053
|
-
transition:
|
|
4082
|
+
transition-delay: 0ms;
|
|
4083
|
+
transition-duration: var(--odx-v-transition-duration);
|
|
4054
4084
|
transition-property: color, background-color, outline;
|
|
4085
|
+
transition-timing-function: var(--odx-v-transition-easing-fn);
|
|
4055
4086
|
outline: var(--odx-v-outline-width) solid transparent;
|
|
4056
4087
|
outline-offset: calc(-1 * var(--odx-v-outline-width));
|
|
4057
4088
|
cursor: pointer;
|
|
@@ -4082,8 +4113,10 @@ body[odxTheme=dark], body.odx-theme-dark {
|
|
|
4082
4113
|
pointer-events: none;
|
|
4083
4114
|
}
|
|
4084
4115
|
.odx-link::before {
|
|
4085
|
-
transition:
|
|
4116
|
+
transition-delay: 0ms;
|
|
4117
|
+
transition-duration: var(--odx-v-transition-duration);
|
|
4086
4118
|
transition-property: width;
|
|
4119
|
+
transition-timing-function: var(--odx-v-transition-easing-fn);
|
|
4087
4120
|
background-color: currentcolor;
|
|
4088
4121
|
bottom: 1px;
|
|
4089
4122
|
content: "";
|
|
@@ -4118,21 +4151,89 @@ body[odxTheme=dark], body.odx-theme-dark {
|
|
|
4118
4151
|
.odx-list {
|
|
4119
4152
|
display: block;
|
|
4120
4153
|
}
|
|
4154
|
+
.odx-list .odx-list .odx-list-item {
|
|
4155
|
+
padding-left: calc(var(--odx-vertical-rythm-base-size) * 1.6667);
|
|
4156
|
+
}
|
|
4157
|
+
.odx-list .odx-list .odx-list-item:first-child {
|
|
4158
|
+
--separator-color: var(--odx-c-separator);
|
|
4159
|
+
}
|
|
4160
|
+
.odx-list .odx-list .odx-list .odx-list-item {
|
|
4161
|
+
padding-left: calc(var(--odx-vertical-rythm-base-size) * 3);
|
|
4162
|
+
}
|
|
4163
|
+
.odx-list .odx-list .odx-list .odx-list-item:first-child {
|
|
4164
|
+
--separator-color: var(--odx-c-separator);
|
|
4165
|
+
}
|
|
4166
|
+
.odx-list .odx-list .odx-list .odx-list .odx-list-item {
|
|
4167
|
+
padding-left: calc(var(--odx-vertical-rythm-base-size) * 4.3334);
|
|
4168
|
+
}
|
|
4169
|
+
.odx-list .odx-list .odx-list .odx-list .odx-list-item:first-child {
|
|
4170
|
+
--separator-color: var(--odx-c-separator);
|
|
4171
|
+
}
|
|
4172
|
+
.odx-list .odx-list .odx-list .odx-list .odx-list .odx-list-item {
|
|
4173
|
+
padding-left: calc(var(--odx-vertical-rythm-base-size) * 5.6667);
|
|
4174
|
+
}
|
|
4175
|
+
.odx-list .odx-list .odx-list .odx-list .odx-list .odx-list-item:first-child {
|
|
4176
|
+
--separator-color: var(--odx-c-separator);
|
|
4177
|
+
}
|
|
4178
|
+
.odx-list .odx-list .odx-list .odx-list .odx-list .odx-list .odx-list-item {
|
|
4179
|
+
padding-left: calc(var(--odx-vertical-rythm-base-size) * 7);
|
|
4180
|
+
}
|
|
4181
|
+
.odx-list .odx-list .odx-list .odx-list .odx-list .odx-list .odx-list-item:first-child {
|
|
4182
|
+
--separator-color: var(--odx-c-separator);
|
|
4183
|
+
}
|
|
4184
|
+
.odx-list .odx-list .odx-list .odx-list .odx-list .odx-list .odx-list .odx-list-item {
|
|
4185
|
+
padding-left: calc(var(--odx-vertical-rythm-base-size) * 8.3334);
|
|
4186
|
+
}
|
|
4187
|
+
.odx-list .odx-list .odx-list .odx-list .odx-list .odx-list .odx-list .odx-list-item:first-child {
|
|
4188
|
+
--separator-color: var(--odx-c-separator);
|
|
4189
|
+
}
|
|
4190
|
+
.odx-list .odx-list .odx-list .odx-list .odx-list .odx-list .odx-list .odx-list .odx-list-item {
|
|
4191
|
+
padding-left: calc(var(--odx-vertical-rythm-base-size) * 9.6667);
|
|
4192
|
+
}
|
|
4193
|
+
.odx-list .odx-list .odx-list .odx-list .odx-list .odx-list .odx-list .odx-list .odx-list-item:first-child {
|
|
4194
|
+
--separator-color: var(--odx-c-separator);
|
|
4195
|
+
}
|
|
4196
|
+
.odx-list .odx-list .odx-list .odx-list .odx-list .odx-list .odx-list .odx-list .odx-list .odx-list-item {
|
|
4197
|
+
padding-left: calc(var(--odx-vertical-rythm-base-size) * 11);
|
|
4198
|
+
}
|
|
4199
|
+
.odx-list .odx-list .odx-list .odx-list .odx-list .odx-list .odx-list .odx-list .odx-list .odx-list-item:first-child {
|
|
4200
|
+
--separator-color: var(--odx-c-separator);
|
|
4201
|
+
}
|
|
4202
|
+
.odx-list .odx-list .odx-list .odx-list .odx-list .odx-list .odx-list .odx-list .odx-list .odx-list .odx-list-item {
|
|
4203
|
+
padding-left: calc(var(--odx-vertical-rythm-base-size) * 12.3334);
|
|
4204
|
+
}
|
|
4205
|
+
.odx-list .odx-list .odx-list .odx-list .odx-list .odx-list .odx-list .odx-list .odx-list .odx-list .odx-list-item:first-child {
|
|
4206
|
+
--separator-color: var(--odx-c-separator);
|
|
4207
|
+
}
|
|
4208
|
+
.odx-list .odx-list .odx-list .odx-list .odx-list .odx-list .odx-list .odx-list .odx-list .odx-list .odx-list .odx-list-item {
|
|
4209
|
+
padding-left: calc(var(--odx-vertical-rythm-base-size) * 13.6667);
|
|
4210
|
+
}
|
|
4211
|
+
.odx-list .odx-list .odx-list .odx-list .odx-list .odx-list .odx-list .odx-list .odx-list .odx-list .odx-list .odx-list-item:first-child {
|
|
4212
|
+
--separator-color: var(--odx-c-separator);
|
|
4213
|
+
}
|
|
4214
|
+
.odx-list > .odx-list-item:first-child {
|
|
4215
|
+
--separator-color: transparent;
|
|
4216
|
+
}
|
|
4121
4217
|
|
|
4122
4218
|
.odx-list-item {
|
|
4219
|
+
--separator-color: var(--odx-c-separator);
|
|
4123
4220
|
padding-right: calc(var(--odx-vertical-rythm-base-size) * 0.3334);
|
|
4124
4221
|
padding-left: calc(var(--odx-vertical-rythm-base-size) * 0.3334);
|
|
4125
4222
|
padding-top: calc(var(--odx-vertical-rythm-base-size) * 0.5);
|
|
4126
4223
|
padding-bottom: calc(var(--odx-vertical-rythm-base-size) * 0.5);
|
|
4127
4224
|
line-height: calc(var(--odx-vertical-rythm-base-size) * 1);
|
|
4128
|
-
transition:
|
|
4225
|
+
transition-delay: 0ms;
|
|
4226
|
+
transition-duration: var(--odx-v-transition-duration);
|
|
4129
4227
|
transition-property: border-bottom-color, background-color, outline-color, color;
|
|
4228
|
+
transition-timing-function: var(--odx-v-transition-easing-fn);
|
|
4130
4229
|
outline: var(--odx-v-outline-width) solid transparent;
|
|
4131
4230
|
outline-offset: calc(-1 * var(--odx-v-outline-width));
|
|
4132
4231
|
cursor: pointer;
|
|
4133
4232
|
-webkit-user-select: none;
|
|
4134
4233
|
-moz-user-select: none;
|
|
4135
4234
|
user-select: none;
|
|
4235
|
+
outline-offset: calc(-1 * var(--odx-v-outline-width-bold));
|
|
4236
|
+
outline-width: var(--odx-v-outline-width-bold);
|
|
4136
4237
|
display: flex;
|
|
4137
4238
|
align-items: center;
|
|
4138
4239
|
background-color: transparent;
|
|
@@ -4147,28 +4248,32 @@ body[odxTheme=dark], body.odx-theme-dark {
|
|
|
4147
4248
|
outline-color: transparent;
|
|
4148
4249
|
pointer-events: none;
|
|
4149
4250
|
}
|
|
4150
|
-
.odx-list-item > [odxListSuffix]
|
|
4251
|
+
.odx-list-item > [odxListSuffix],
|
|
4252
|
+
.odx-list-item > [odxListItemSuffix] {
|
|
4151
4253
|
margin-left: auto;
|
|
4152
4254
|
}
|
|
4153
4255
|
.odx-list-item:not(.is-disabled) {
|
|
4154
4256
|
cursor: pointer;
|
|
4155
4257
|
}
|
|
4156
4258
|
.odx-list-item::before {
|
|
4157
|
-
transition:
|
|
4259
|
+
transition-delay: 0ms;
|
|
4260
|
+
transition-duration: var(--odx-v-transition-duration);
|
|
4158
4261
|
transition-property: border-color;
|
|
4159
|
-
|
|
4262
|
+
transition-timing-function: var(--odx-v-transition-easing-fn);
|
|
4263
|
+
border-bottom: 1px solid var(--separator-color);
|
|
4160
4264
|
content: "";
|
|
4161
4265
|
display: block;
|
|
4162
4266
|
position: absolute;
|
|
4267
|
+
right: calc(var(--odx-vertical-rythm-base-size) * 0.3334);
|
|
4163
4268
|
top: 0;
|
|
4164
|
-
width: calc(100% - calc(var(--odx-vertical-rythm-base-size) * 0.
|
|
4269
|
+
width: calc(100% - calc(var(--odx-vertical-rythm-base-size) * 0.6667));
|
|
4165
4270
|
}
|
|
4166
|
-
.odx-list-item:focus-visible
|
|
4167
|
-
|
|
4271
|
+
.odx-list-item:focus-visible {
|
|
4272
|
+
--separator-color: transparent !important;
|
|
4168
4273
|
}
|
|
4169
4274
|
@media (hover: hover){
|
|
4170
|
-
.odx-list-item:hover
|
|
4171
|
-
|
|
4275
|
+
.odx-list-item:hover {
|
|
4276
|
+
--separator-color: transparent !important;
|
|
4172
4277
|
}
|
|
4173
4278
|
}
|
|
4174
4279
|
@media (hover: hover){
|
|
@@ -4176,12 +4281,12 @@ body[odxTheme=dark], body.odx-theme-dark {
|
|
|
4176
4281
|
background-color: var(--odx-c-ghost-hover);
|
|
4177
4282
|
}
|
|
4178
4283
|
}
|
|
4179
|
-
.odx-list-item--danger+.odx-list-item
|
|
4180
|
-
|
|
4284
|
+
.odx-list-item--danger+.odx-list-item, .odx-list-item.is-selected+.odx-list-item {
|
|
4285
|
+
--separator-color: transparent !important;
|
|
4181
4286
|
}
|
|
4182
4287
|
@media (hover: hover){
|
|
4183
|
-
.odx-list-item:hover+.odx-list-item
|
|
4184
|
-
|
|
4288
|
+
.odx-list-item:hover+.odx-list-item {
|
|
4289
|
+
--separator-color: transparent !important;
|
|
4185
4290
|
}
|
|
4186
4291
|
}
|
|
4187
4292
|
.odx-list-item.is-disabled {
|
|
@@ -4190,14 +4295,10 @@ body[odxTheme=dark], body.odx-theme-dark {
|
|
|
4190
4295
|
}
|
|
4191
4296
|
.odx-list-item--danger {
|
|
4192
4297
|
--odx-c-focus: var(--odx-c-danger);
|
|
4193
|
-
|
|
4194
|
-
outline-width: var(--odx-v-outline-width-bold);
|
|
4298
|
+
--separator-color: transparent !important;
|
|
4195
4299
|
background-color: var(--odx-c-danger);
|
|
4196
4300
|
color: var(--odx-c-danger-text);
|
|
4197
4301
|
}
|
|
4198
|
-
.odx-list-item--danger::before {
|
|
4199
|
-
border-bottom-color: transparent;
|
|
4200
|
-
}
|
|
4201
4302
|
@media (hover: hover){
|
|
4202
4303
|
.odx-list-item--danger:hover {
|
|
4203
4304
|
background-color: var(--odx-c-danger-hover);
|
|
@@ -4206,26 +4307,24 @@ body[odxTheme=dark], body.odx-theme-dark {
|
|
|
4206
4307
|
.odx-list-item--danger.is-disabled {
|
|
4207
4308
|
color: var(--odx-c-danger-text-disabled);
|
|
4208
4309
|
}
|
|
4209
|
-
.odx-list-item
|
|
4310
|
+
.odx-list-item.is-selected {
|
|
4311
|
+
--separator-color: transparent !important;
|
|
4210
4312
|
background-color: var(--odx-c-selected);
|
|
4211
4313
|
}
|
|
4212
|
-
.odx-list-item--selected::before {
|
|
4213
|
-
border-bottom-color: transparent;
|
|
4214
|
-
}
|
|
4215
4314
|
@media (hover: hover){
|
|
4216
|
-
.odx-list-item
|
|
4315
|
+
.odx-list-item.is-selected:hover {
|
|
4217
4316
|
background-color: var(--odx-c-selected-hover);
|
|
4218
4317
|
}
|
|
4219
4318
|
}
|
|
4220
|
-
.odx-list-item
|
|
4319
|
+
.odx-list-item.is-selected.odx-list-item--danger {
|
|
4221
4320
|
background-color: var(--odx-c-danger-active);
|
|
4222
4321
|
}
|
|
4223
4322
|
@media (hover: hover){
|
|
4224
|
-
.odx-list-item
|
|
4323
|
+
.odx-list-item.is-selected.odx-list-item--danger:hover {
|
|
4225
4324
|
background-color: var(--red-800);
|
|
4226
4325
|
}
|
|
4227
4326
|
}
|
|
4228
|
-
.odx-list-item
|
|
4327
|
+
.odx-list-item.is-selected.odx-list-item--danger.is-disabled {
|
|
4229
4328
|
color: var(--odx-c-danger-text);
|
|
4230
4329
|
}
|
|
4231
4330
|
|
|
@@ -4253,8 +4352,10 @@ body[odxTheme=dark] .odx-button, body.odx-theme-dark .odx-button {
|
|
|
4253
4352
|
z-index: var(--odx-v-layer-2);
|
|
4254
4353
|
}
|
|
4255
4354
|
.odx-loading-spinner__backdrop {
|
|
4256
|
-
transition:
|
|
4355
|
+
transition-delay: 0ms;
|
|
4356
|
+
transition-duration: var(--odx-v-transition-duration);
|
|
4257
4357
|
transition-property: background-color;
|
|
4358
|
+
transition-timing-function: var(--odx-v-transition-easing-fn);
|
|
4258
4359
|
background-color: transparent;
|
|
4259
4360
|
opacity: 0.8;
|
|
4260
4361
|
}
|
|
@@ -4460,8 +4561,10 @@ body[odxTheme=dark], body.odx-theme-dark {
|
|
|
4460
4561
|
height: calc(var(--odx-vertical-rythm-base-size) * 2.3334);
|
|
4461
4562
|
padding-right: calc(var(--odx-vertical-rythm-base-size) * 0.6667);
|
|
4462
4563
|
padding-left: calc(var(--odx-vertical-rythm-base-size) * 0.6667);
|
|
4463
|
-
transition:
|
|
4564
|
+
transition-delay: 0ms;
|
|
4565
|
+
transition-duration: var(--odx-v-transition-duration);
|
|
4464
4566
|
transition-property: color, background-color, outline;
|
|
4567
|
+
transition-timing-function: var(--odx-v-transition-easing-fn);
|
|
4465
4568
|
outline: var(--odx-v-outline-width) solid transparent;
|
|
4466
4569
|
outline-offset: calc(-1 * var(--odx-v-outline-width));
|
|
4467
4570
|
cursor: pointer;
|
|
@@ -4526,6 +4629,7 @@ body[odxTheme=dark], body.odx-theme-dark {
|
|
|
4526
4629
|
.odx-main-menu {
|
|
4527
4630
|
--odx-area-header-title-color: var(--odx-main-menu-highlight-color);
|
|
4528
4631
|
--odx-area-header-subtitle-color: var(--odx-c-text-inverse);
|
|
4632
|
+
z-index: var(--odx-v-layer-5);
|
|
4529
4633
|
}
|
|
4530
4634
|
.odx-main-menu__inner {
|
|
4531
4635
|
background-color: var(--odx-main-menu-background-color);
|
|
@@ -4820,8 +4924,10 @@ body[odxTheme=dark], body.odx-theme-dark {
|
|
|
4820
4924
|
border-radius: var(--odx-v-border-radius-controls);
|
|
4821
4925
|
height: calc(var(--odx-vertical-rythm-base-size) * 1.5);
|
|
4822
4926
|
width: calc(var(--odx-vertical-rythm-base-size) * 1.5);
|
|
4823
|
-
transition:
|
|
4927
|
+
transition-delay: 0ms;
|
|
4928
|
+
transition-duration: var(--odx-v-transition-duration);
|
|
4824
4929
|
transition-property: background-color, outline;
|
|
4930
|
+
transition-timing-function: var(--odx-v-transition-easing-fn);
|
|
4825
4931
|
display: inline-flex;
|
|
4826
4932
|
align-items: center;
|
|
4827
4933
|
justify-content: center;
|
|
@@ -4864,8 +4970,10 @@ body[odxTheme=dark], body.odx-theme-dark {
|
|
|
4864
4970
|
margin-bottom: calc(var(--odx-vertical-rythm-base-size) * 0.1667);
|
|
4865
4971
|
padding-right: calc(var(--odx-vertical-rythm-base-size) * 0.5);
|
|
4866
4972
|
padding-left: calc(var(--odx-vertical-rythm-base-size) * 0.5);
|
|
4867
|
-
transition:
|
|
4973
|
+
transition-delay: 0ms;
|
|
4974
|
+
transition-duration: var(--odx-v-transition-duration);
|
|
4868
4975
|
transition-property: background-color, color, outline-color;
|
|
4976
|
+
transition-timing-function: var(--odx-v-transition-easing-fn);
|
|
4869
4977
|
font-weight: var(--odx-typography-font-weight-normal);
|
|
4870
4978
|
letter-spacing: var(--odx-typography-font-weight-normal-letter-spacing);
|
|
4871
4979
|
border-radius: var(--odx-v-border-radius-controls);
|
|
@@ -4916,8 +5024,10 @@ body[odxTheme=dark], body.odx-theme-dark {
|
|
|
4916
5024
|
position: relative;
|
|
4917
5025
|
}
|
|
4918
5026
|
.odx-progress__indicator {
|
|
4919
|
-
transition:
|
|
5027
|
+
transition-delay: 0ms;
|
|
5028
|
+
transition-duration: var(--odx-v-transition-duration);
|
|
4920
5029
|
transition-property: transform;
|
|
5030
|
+
transition-timing-function: var(--odx-v-transition-easing-fn);
|
|
4921
5031
|
background-color: var(--odx-c-highlight);
|
|
4922
5032
|
display: block;
|
|
4923
5033
|
height: 100%;
|
|
@@ -4946,8 +5056,10 @@ body[odxTheme=dark], body.odx-theme-dark {
|
|
|
4946
5056
|
padding-top: calc(var(--odx-vertical-rythm-base-size) * 0);
|
|
4947
5057
|
padding-bottom: calc(var(--odx-vertical-rythm-base-size) * 0);
|
|
4948
5058
|
line-height: calc(var(--odx-vertical-rythm-base-size) * 1);
|
|
4949
|
-
transition:
|
|
5059
|
+
transition-delay: 0ms;
|
|
5060
|
+
transition-duration: var(--odx-v-transition-duration);
|
|
4950
5061
|
transition-property: background-color, color, outline;
|
|
5062
|
+
transition-timing-function: var(--odx-v-transition-easing-fn);
|
|
4951
5063
|
font-size: calc(var(--odx-typography-base-size) * 1);
|
|
4952
5064
|
outline: var(--odx-v-outline-width) solid transparent;
|
|
4953
5065
|
outline-offset: calc(-1 * var(--odx-v-outline-width));
|
|
@@ -5008,8 +5120,10 @@ body[odxTheme=dark], body.odx-theme-dark {
|
|
|
5008
5120
|
margin-bottom: calc(var(--odx-vertical-rythm-base-size) * 0.0834);
|
|
5009
5121
|
height: calc(var(--odx-vertical-rythm-base-size) * 0.8334);
|
|
5010
5122
|
width: calc(var(--odx-vertical-rythm-base-size) * 0.8334);
|
|
5011
|
-
transition:
|
|
5123
|
+
transition-delay: 0ms;
|
|
5124
|
+
transition-duration: var(--odx-v-transition-duration);
|
|
5012
5125
|
transition-property: background-color, color, outline-color;
|
|
5126
|
+
transition-timing-function: var(--odx-v-transition-easing-fn);
|
|
5013
5127
|
display: flex;
|
|
5014
5128
|
align-items: center;
|
|
5015
5129
|
justify-content: center;
|
|
@@ -5027,8 +5141,10 @@ body[odxTheme=dark], body.odx-theme-dark {
|
|
|
5027
5141
|
margin-bottom: calc(var(--odx-vertical-rythm-base-size) * 0);
|
|
5028
5142
|
height: calc(var(--odx-vertical-rythm-base-size) * 0.1667);
|
|
5029
5143
|
width: calc(var(--odx-vertical-rythm-base-size) * 0.1667);
|
|
5030
|
-
transition:
|
|
5144
|
+
transition-delay: 0ms;
|
|
5145
|
+
transition-duration: var(--odx-v-transition-duration);
|
|
5031
5146
|
transition-property: transform;
|
|
5147
|
+
transition-timing-function: var(--odx-v-transition-easing-fn);
|
|
5032
5148
|
background-color: currentcolor;
|
|
5033
5149
|
border-radius: 50%;
|
|
5034
5150
|
content: "";
|
|
@@ -5113,8 +5229,10 @@ body[odxTheme=dark], body.odx-theme-dark {
|
|
|
5113
5229
|
width: 100%;
|
|
5114
5230
|
}
|
|
5115
5231
|
.odx-rail-navigation__expand > .odx-icon {
|
|
5116
|
-
transition:
|
|
5232
|
+
transition-delay: 0ms;
|
|
5233
|
+
transition-duration: var(--odx-v-transition-duration);
|
|
5117
5234
|
transition-property: transform;
|
|
5235
|
+
transition-timing-function: var(--odx-v-transition-easing-fn);
|
|
5118
5236
|
}
|
|
5119
5237
|
.odx-rail-navigation.is-open .odx-rail-navigation__expand > .odx-icon {
|
|
5120
5238
|
transform: rotateY(180deg);
|
|
@@ -5130,8 +5248,10 @@ body[odxTheme=dark], body.odx-theme-dark {
|
|
|
5130
5248
|
}
|
|
5131
5249
|
|
|
5132
5250
|
.odx-rail-navigation-item {
|
|
5133
|
-
transition:
|
|
5251
|
+
transition-delay: 0ms;
|
|
5252
|
+
transition-duration: var(--odx-v-transition-duration);
|
|
5134
5253
|
transition-property: outline-color, background-color, color;
|
|
5254
|
+
transition-timing-function: var(--odx-v-transition-easing-fn);
|
|
5135
5255
|
padding-top: calc(var(--odx-vertical-rythm-base-size) * 0.3334);
|
|
5136
5256
|
padding-right: calc(var(--odx-vertical-rythm-base-size) * 0.3334);
|
|
5137
5257
|
padding-bottom: calc(var(--odx-vertical-rythm-base-size) * 0.3334);
|
|
@@ -5179,8 +5299,10 @@ body[odxTheme=dark], body.odx-theme-dark {
|
|
|
5179
5299
|
overflow: hidden;
|
|
5180
5300
|
text-overflow: ellipsis;
|
|
5181
5301
|
white-space: nowrap;
|
|
5182
|
-
transition:
|
|
5302
|
+
transition-delay: 0ms;
|
|
5303
|
+
transition-duration: var(--odx-v-transition-duration);
|
|
5183
5304
|
transition-property: width, padding-left, opacity;
|
|
5305
|
+
transition-timing-function: var(--odx-v-transition-easing-fn);
|
|
5184
5306
|
opacity: 0;
|
|
5185
5307
|
width: 0;
|
|
5186
5308
|
}
|
|
@@ -5236,8 +5358,10 @@ body[odxTheme=dark], body.odx-theme-dark {
|
|
|
5236
5358
|
}
|
|
5237
5359
|
|
|
5238
5360
|
.odx-rich-list-item {
|
|
5239
|
-
transition:
|
|
5361
|
+
transition-delay: 0ms;
|
|
5362
|
+
transition-duration: var(--odx-v-transition-duration);
|
|
5240
5363
|
transition-property: color;
|
|
5364
|
+
transition-timing-function: var(--odx-v-transition-easing-fn);
|
|
5241
5365
|
border-bottom: 1px solid var(--odx-input-control-outline-color);
|
|
5242
5366
|
display: block;
|
|
5243
5367
|
}
|
|
@@ -5246,8 +5370,10 @@ body[odxTheme=dark], body.odx-theme-dark {
|
|
|
5246
5370
|
padding-left: calc(var(--odx-vertical-rythm-base-size) * 2.6667);
|
|
5247
5371
|
padding-top: calc(var(--odx-vertical-rythm-base-size) * 0.6667);
|
|
5248
5372
|
padding-bottom: calc(var(--odx-vertical-rythm-base-size) * 0.6667);
|
|
5249
|
-
transition:
|
|
5373
|
+
transition-delay: 0ms;
|
|
5374
|
+
transition-duration: var(--odx-v-transition-duration);
|
|
5250
5375
|
transition-property: background-color, outline-color;
|
|
5376
|
+
transition-timing-function: var(--odx-v-transition-easing-fn);
|
|
5251
5377
|
outline: var(--odx-v-outline-width) solid transparent;
|
|
5252
5378
|
outline-offset: calc(-1 * var(--odx-v-outline-width));
|
|
5253
5379
|
cursor: pointer;
|
|
@@ -5270,8 +5396,10 @@ body[odxTheme=dark], body.odx-theme-dark {
|
|
|
5270
5396
|
}
|
|
5271
5397
|
}
|
|
5272
5398
|
.odx-rich-list-item__icon {
|
|
5273
|
-
transition:
|
|
5399
|
+
transition-delay: 0ms;
|
|
5400
|
+
transition-duration: var(--odx-v-transition-duration);
|
|
5274
5401
|
transition-property: transform;
|
|
5402
|
+
transition-timing-function: var(--odx-v-transition-easing-fn);
|
|
5275
5403
|
left: calc(var(--odx-vertical-rythm-base-size) * 0.6667);
|
|
5276
5404
|
position: absolute;
|
|
5277
5405
|
top: calc(var(--odx-vertical-rythm-base-size) * 0.6667);
|
|
@@ -5335,8 +5463,10 @@ body {
|
|
|
5335
5463
|
width: 100%;
|
|
5336
5464
|
}
|
|
5337
5465
|
.odx-select__indicator {
|
|
5338
|
-
transition:
|
|
5466
|
+
transition-delay: 0ms;
|
|
5467
|
+
transition-duration: var(--odx-v-transition-duration);
|
|
5339
5468
|
transition-property: transform, opacity;
|
|
5469
|
+
transition-timing-function: var(--odx-v-transition-easing-fn);
|
|
5340
5470
|
margin-right: calc(var(--odx-vertical-rythm-base-size) * -0.0833);
|
|
5341
5471
|
margin-left: auto;
|
|
5342
5472
|
}
|
|
@@ -5383,10 +5513,11 @@ body {
|
|
|
5383
5513
|
background: var(--odx-control-background-color-selected);
|
|
5384
5514
|
}
|
|
5385
5515
|
.odx-slider::-webkit-slider-thumb {
|
|
5386
|
-
-
|
|
5387
|
-
transition:
|
|
5516
|
+
transition-delay: 0ms;
|
|
5517
|
+
transition-duration: var(--odx-v-transition-duration);
|
|
5388
5518
|
-webkit-transition-property: background-color, outline-color;
|
|
5389
5519
|
transition-property: background-color, outline-color;
|
|
5520
|
+
transition-timing-function: var(--odx-v-transition-easing-fn);
|
|
5390
5521
|
-webkit-appearance: none;
|
|
5391
5522
|
appearance: none;
|
|
5392
5523
|
background-color: var(--odx-control-background-color-selected);
|
|
@@ -5398,10 +5529,11 @@ body {
|
|
|
5398
5529
|
position: relative;
|
|
5399
5530
|
}
|
|
5400
5531
|
.odx-slider::-moz-range-thumb {
|
|
5401
|
-
-
|
|
5402
|
-
transition:
|
|
5532
|
+
transition-delay: 0ms;
|
|
5533
|
+
transition-duration: var(--odx-v-transition-duration);
|
|
5403
5534
|
-moz-transition-property: background-color, outline-color;
|
|
5404
5535
|
transition-property: background-color, outline-color;
|
|
5536
|
+
transition-timing-function: var(--odx-v-transition-easing-fn);
|
|
5405
5537
|
-moz-appearance: none;
|
|
5406
5538
|
appearance: none;
|
|
5407
5539
|
background-color: var(--odx-control-background-color-selected);
|
|
@@ -5505,8 +5637,10 @@ body {
|
|
|
5505
5637
|
appearance: none;
|
|
5506
5638
|
}
|
|
5507
5639
|
.odx-spinbox__input, .odx-spinbox__action {
|
|
5508
|
-
transition:
|
|
5640
|
+
transition-delay: 0ms;
|
|
5641
|
+
transition-duration: var(--odx-v-transition-duration);
|
|
5509
5642
|
transition-property: background-color, border-color, color;
|
|
5643
|
+
transition-timing-function: var(--odx-v-transition-easing-fn);
|
|
5510
5644
|
background-color: var(--odx-input-control-background-color);
|
|
5511
5645
|
border: 1px solid var(--odx-input-control-outline-color);
|
|
5512
5646
|
}
|
|
@@ -5580,8 +5714,10 @@ body {
|
|
|
5580
5714
|
padding-top: calc(var(--odx-vertical-rythm-base-size) * 0);
|
|
5581
5715
|
padding-bottom: calc(var(--odx-vertical-rythm-base-size) * 0);
|
|
5582
5716
|
line-height: calc(var(--odx-vertical-rythm-base-size) * 1);
|
|
5583
|
-
transition:
|
|
5717
|
+
transition-delay: 0ms;
|
|
5718
|
+
transition-duration: var(--odx-v-transition-duration);
|
|
5584
5719
|
transition-property: background-color, color, outline-color;
|
|
5720
|
+
transition-timing-function: var(--odx-v-transition-easing-fn);
|
|
5585
5721
|
font-size: calc(var(--odx-typography-base-size) * 1);
|
|
5586
5722
|
outline: var(--odx-v-outline-width) solid transparent;
|
|
5587
5723
|
outline-offset: calc(-1 * var(--odx-v-outline-width));
|
|
@@ -5644,8 +5780,10 @@ body {
|
|
|
5644
5780
|
outline-color: var(--odx-c-focus);
|
|
5645
5781
|
}
|
|
5646
5782
|
.odx-switch__indicator {
|
|
5647
|
-
transition:
|
|
5783
|
+
transition-delay: 0ms;
|
|
5784
|
+
transition-duration: var(--odx-v-transition-duration);
|
|
5648
5785
|
transition-property: background-color, color, outline-color;
|
|
5786
|
+
transition-timing-function: var(--odx-v-transition-easing-fn);
|
|
5649
5787
|
background-color: var(--odx-control-background-color);
|
|
5650
5788
|
border: 1px solid var(--odx-control-outline-color);
|
|
5651
5789
|
border-radius: calc(calc(var(--odx-vertical-rythm-base-size) * 0.1667) / 2);
|
|
@@ -5655,8 +5793,10 @@ body {
|
|
|
5655
5793
|
width: calc(var(--odx-vertical-rythm-base-size) * 1.5);
|
|
5656
5794
|
}
|
|
5657
5795
|
.odx-switch__indicator::before {
|
|
5658
|
-
transition:
|
|
5796
|
+
transition-delay: 0ms;
|
|
5797
|
+
transition-duration: var(--odx-v-transition-duration);
|
|
5659
5798
|
transition-property: background-color, transform, border-color, outline-color;
|
|
5799
|
+
transition-timing-function: var(--odx-v-transition-easing-fn);
|
|
5660
5800
|
background-color: var(--odx-control-background-color);
|
|
5661
5801
|
border: 1px solid var(--odx-control-outline-color);
|
|
5662
5802
|
border-radius: 50%;
|
|
@@ -5739,8 +5879,10 @@ body {
|
|
|
5739
5879
|
align-items: center;
|
|
5740
5880
|
outline: var(--odx-v-outline-width) solid transparent;
|
|
5741
5881
|
outline-offset: calc(-1 * var(--odx-v-outline-width));
|
|
5742
|
-
transition:
|
|
5882
|
+
transition-delay: 0ms;
|
|
5883
|
+
transition-duration: var(--odx-v-transition-duration);
|
|
5743
5884
|
transition-property: background-color, outline-color;
|
|
5885
|
+
transition-timing-function: var(--odx-v-transition-easing-fn);
|
|
5744
5886
|
align-items: center;
|
|
5745
5887
|
background-color: transparent;
|
|
5746
5888
|
border-radius: var(--odx-v-border-radius-controls);
|
|
@@ -5767,8 +5909,10 @@ body {
|
|
|
5767
5909
|
margin-left: 0;
|
|
5768
5910
|
}
|
|
5769
5911
|
.odx-tab-bar-item .odx-icon:last-child:not(:first-child) {
|
|
5770
|
-
transition:
|
|
5912
|
+
transition-delay: 0ms;
|
|
5913
|
+
transition-duration: var(--odx-v-transition-duration);
|
|
5771
5914
|
transition-property: color;
|
|
5915
|
+
transition-timing-function: var(--odx-v-transition-easing-fn);
|
|
5772
5916
|
margin-right: 0;
|
|
5773
5917
|
}
|
|
5774
5918
|
@media (hover: hover){
|
|
@@ -5811,8 +5955,10 @@ body {
|
|
|
5811
5955
|
mask-image: linear-gradient(to right, transparent calc(var(--odx-vertical-rythm-base-size) * 1), #000000 calc(var(--odx-vertical-rythm-base-size) * 3), #000000 calc(100% - var(--odx-vertical-rythm-base-size) * 3), transparent calc(100% - var(--odx-vertical-rythm-base-size) * 1));
|
|
5812
5956
|
}
|
|
5813
5957
|
.odx-tab-bar__panel {
|
|
5814
|
-
transition:
|
|
5958
|
+
transition-delay: 0ms;
|
|
5959
|
+
transition-duration: var(--odx-v-transition-duration);
|
|
5815
5960
|
transition-property: transform;
|
|
5961
|
+
transition-timing-function: var(--odx-v-transition-easing-fn);
|
|
5816
5962
|
padding-right: calc(var(--odx-vertical-rythm-base-size) * 0.5);
|
|
5817
5963
|
padding-left: calc(var(--odx-vertical-rythm-base-size) * 0.5);
|
|
5818
5964
|
display: flex;
|
|
@@ -5824,8 +5970,10 @@ body {
|
|
|
5824
5970
|
margin-top: calc(var(--odx-vertical-rythm-base-size) * 0);
|
|
5825
5971
|
margin-bottom: calc(var(--odx-vertical-rythm-base-size) * 0);
|
|
5826
5972
|
height: calc(var(--odx-vertical-rythm-base-size) * 2);
|
|
5827
|
-
transition:
|
|
5973
|
+
transition-delay: 0ms;
|
|
5974
|
+
transition-duration: var(--odx-v-transition-duration);
|
|
5828
5975
|
transition-property: opacity, width, padding;
|
|
5976
|
+
transition-timing-function: var(--odx-v-transition-easing-fn);
|
|
5829
5977
|
display: flex;
|
|
5830
5978
|
align-items: center;
|
|
5831
5979
|
justify-content: center;
|
|
@@ -5952,8 +6100,10 @@ body {
|
|
|
5952
6100
|
/* stylelint-disable-next-line no-descending-specificity */
|
|
5953
6101
|
}
|
|
5954
6102
|
.odx-table__body .odx-table__row {
|
|
5955
|
-
transition:
|
|
6103
|
+
transition-delay: 0ms;
|
|
6104
|
+
transition-duration: var(--odx-v-transition-duration);
|
|
5956
6105
|
transition-property: background-color;
|
|
6106
|
+
transition-timing-function: var(--odx-v-transition-easing-fn);
|
|
5957
6107
|
}
|
|
5958
6108
|
@media (hover: hover){
|
|
5959
6109
|
.odx-table__body .odx-table__row:hover {
|
|
@@ -6080,8 +6230,10 @@ body {
|
|
|
6080
6230
|
padding-top: calc(var(--odx-vertical-rythm-base-size) * 0.25);
|
|
6081
6231
|
padding-bottom: calc(var(--odx-vertical-rythm-base-size) * 0.25);
|
|
6082
6232
|
line-height: calc(var(--odx-vertical-rythm-base-size) * 1);
|
|
6083
|
-
transition:
|
|
6233
|
+
transition-delay: 0ms;
|
|
6234
|
+
transition-duration: var(--odx-v-transition-duration);
|
|
6084
6235
|
transition-property: color;
|
|
6236
|
+
transition-timing-function: var(--odx-v-transition-easing-fn);
|
|
6085
6237
|
font-size: calc(var(--odx-typography-base-size) * 1);
|
|
6086
6238
|
font-weight: var(--odx-typography-font-weight-medium);
|
|
6087
6239
|
letter-spacing: var(--odx-typography-font-weight-medium-letter-spacing);
|
|
@@ -6109,8 +6261,10 @@ body {
|
|
|
6109
6261
|
}
|
|
6110
6262
|
.odx-toggle-button__indicator {
|
|
6111
6263
|
border-radius: var(--odx-toggle-button-border-radius);
|
|
6112
|
-
transition:
|
|
6264
|
+
transition-delay: 0ms;
|
|
6265
|
+
transition-duration: var(--odx-v-transition-duration);
|
|
6113
6266
|
transition-property: background-color, outline-color;
|
|
6267
|
+
transition-timing-function: var(--odx-v-transition-easing-fn);
|
|
6114
6268
|
padding-right: calc(var(--odx-vertical-rythm-base-size) * 0.3334);
|
|
6115
6269
|
padding-left: calc(var(--odx-vertical-rythm-base-size) * 0.3334);
|
|
6116
6270
|
}
|
|
@@ -6166,8 +6320,10 @@ body {
|
|
|
6166
6320
|
height: calc(var(--odx-vertical-rythm-base-size) * 1.5);
|
|
6167
6321
|
padding-right: calc(var(--odx-vertical-rythm-base-size) * 0.25);
|
|
6168
6322
|
padding-left: calc(var(--odx-vertical-rythm-base-size) * 0.25);
|
|
6169
|
-
transition:
|
|
6323
|
+
transition-delay: 0ms;
|
|
6324
|
+
transition-duration: var(--odx-v-transition-duration);
|
|
6170
6325
|
transition-property: background-color, outline-color;
|
|
6326
|
+
transition-timing-function: var(--odx-v-transition-easing-fn);
|
|
6171
6327
|
display: inline-flex;
|
|
6172
6328
|
align-items: center;
|
|
6173
6329
|
justify-content: center;
|
|
@@ -6296,8 +6452,10 @@ body {
|
|
|
6296
6452
|
white-space: nowrap;
|
|
6297
6453
|
outline: var(--odx-v-outline-width) solid transparent;
|
|
6298
6454
|
outline-offset: calc(-1 * var(--odx-v-outline-width));
|
|
6299
|
-
transition:
|
|
6455
|
+
transition-delay: 0ms;
|
|
6456
|
+
transition-duration: outline-color;
|
|
6300
6457
|
transition-property: background-color;
|
|
6458
|
+
transition-timing-function: var(--odx-v-transition-easing-fn);
|
|
6301
6459
|
align-self: center;
|
|
6302
6460
|
border-radius: var(--odx-v-border-radius-controls);
|
|
6303
6461
|
color: var(--odx-c-secondary-disabled);
|
|
@@ -6411,8 +6569,10 @@ body {
|
|
|
6411
6569
|
height: 100%;
|
|
6412
6570
|
}
|
|
6413
6571
|
.odx-wizard-step__circle {
|
|
6414
|
-
transition:
|
|
6572
|
+
transition-delay: 0ms;
|
|
6573
|
+
transition-duration: color;
|
|
6415
6574
|
transition-property: background-color;
|
|
6575
|
+
transition-timing-function: var(--odx-v-transition-easing-fn);
|
|
6416
6576
|
align-items: center;
|
|
6417
6577
|
border: calc(var(--odx-vertical-rythm-base-size) * 0.0834) solid var(--odx-c-secondary-disabled);
|
|
6418
6578
|
border-radius: 50%;
|