@dialpad/dialtone-css 8.56.0 → 8.57.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/lib/build/less/components/button.less +17 -0
- package/lib/build/less/components/description-list.less +2 -2
- package/lib/build/less/dialtone-reset.less +2 -0
- package/lib/build/less/recipes/ivr_node.less +1 -1
- package/lib/build/less/utilities/sizing.less +9 -0
- package/lib/dist/dialtone-default-theme.css +63 -7
- package/lib/dist/dialtone-default-theme.min.css +1 -1
- package/lib/dist/dialtone-docs.json +1 -1
- package/lib/dist/dialtone.css +59 -3
- package/lib/dist/dialtone.min.css +1 -1
- package/lib/dist/tokens/tokens-base-dark.css +1 -1
- package/lib/dist/tokens/tokens-base-deca-dark.css +1 -1
- package/lib/dist/tokens/tokens-base-deca-light.css +1 -1
- package/lib/dist/tokens/tokens-base-light.css +1 -1
- package/lib/dist/tokens/tokens-debug-base.css +1 -1
- package/lib/dist/tokens/tokens-debug-dp.css +3 -3
- package/lib/dist/tokens/tokens-deca-dark.css +27 -27
- package/lib/dist/tokens/tokens-deca-light.css +3 -3
- package/lib/dist/tokens/tokens-dp-dark.css +27 -27
- package/lib/dist/tokens/tokens-dp-light.css +3 -3
- package/lib/dist/tokens/tokens-expressive-dark.css +27 -27
- package/lib/dist/tokens/tokens-expressive-light.css +3 -3
- package/lib/dist/tokens/tokens-expressive-sm-dark.css +27 -27
- package/lib/dist/tokens/tokens-expressive-sm-light.css +3 -3
- package/lib/dist/tokens/tokens-tmo-dark.css +27 -27
- package/lib/dist/tokens/tokens-tmo-light.css +3 -3
- package/lib/dist/tokens-docs.json +1 -1
- package/package.json +2 -2
|
@@ -127,6 +127,23 @@
|
|
|
127
127
|
}
|
|
128
128
|
}
|
|
129
129
|
|
|
130
|
+
.d-btn--unstyled {
|
|
131
|
+
/* stylelint-disable */
|
|
132
|
+
all: unset; // Must be first!
|
|
133
|
+
/* stylelint-enable */
|
|
134
|
+
display: inline-flex;
|
|
135
|
+
align-content: center;
|
|
136
|
+
align-items: center;
|
|
137
|
+
color: inherit;
|
|
138
|
+
font: inherit;
|
|
139
|
+
cursor: pointer;
|
|
140
|
+
|
|
141
|
+
&:focus-visible {
|
|
142
|
+
outline: none;
|
|
143
|
+
box-shadow: var(--dt-shadow-focus);
|
|
144
|
+
}
|
|
145
|
+
}
|
|
146
|
+
|
|
130
147
|
// ============================================================================
|
|
131
148
|
// $ SIZES
|
|
132
149
|
// ----------------------------------------------------------------------------
|
|
@@ -3,8 +3,7 @@
|
|
|
3
3
|
flex-flow: row wrap;
|
|
4
4
|
gap: var(--description-list-gap);
|
|
5
5
|
align-items: flex-start;
|
|
6
|
-
font
|
|
7
|
-
line-height: var(--dt-font-line-height-300);
|
|
6
|
+
font: var(--dt-typography-body-sm);
|
|
8
7
|
|
|
9
8
|
--description-list-gap: var(--dt-space-400);
|
|
10
9
|
each(range(0, 600, 100), {
|
|
@@ -20,6 +19,7 @@
|
|
|
20
19
|
&__term {
|
|
21
20
|
flex: 0 1 40%;
|
|
22
21
|
color: var(--dt-color-foreground-tertiary);
|
|
22
|
+
font: var(--dt-typography-label-sm);
|
|
23
23
|
}
|
|
24
24
|
|
|
25
25
|
&__description {
|
|
@@ -186,6 +186,7 @@ optgroup,
|
|
|
186
186
|
select,
|
|
187
187
|
textarea {
|
|
188
188
|
margin: 0; /* 2 */
|
|
189
|
+
color: inherit;
|
|
189
190
|
font-size: 100%; /* 1 */
|
|
190
191
|
font-family: inherit; /* 1 */
|
|
191
192
|
line-height: 1.15; /* 1 */
|
|
@@ -282,6 +283,7 @@ progress {
|
|
|
282
283
|
|
|
283
284
|
textarea {
|
|
284
285
|
overflow: auto;
|
|
286
|
+
color: inherit;
|
|
285
287
|
}
|
|
286
288
|
|
|
287
289
|
/**
|
|
@@ -103,7 +103,7 @@
|
|
|
103
103
|
width: var(--dt-size-550);
|
|
104
104
|
height: var(--dt-size-550);
|
|
105
105
|
margin-bottom: var(--dt-space-450-negative);
|
|
106
|
-
color: var(--dt-color-
|
|
106
|
+
color: var(--dt-color-foreground-primary-inverted);
|
|
107
107
|
font-size: var(--dt-font-size-200);
|
|
108
108
|
|
|
109
109
|
.d-recipe-ivr-node__connector--selected {
|
|
@@ -71,12 +71,21 @@
|
|
|
71
71
|
.d-h100vh { height: 100vh !important; }
|
|
72
72
|
.d-h-auto { height: auto !important; }
|
|
73
73
|
.d-h-unset { height: unset !important; }
|
|
74
|
+
.d-h-fit-content { height: fit-content !important; }
|
|
75
|
+
.d-h-max-content { height: max-content !important; }
|
|
76
|
+
.d-h-min-content { height: min-content !important; }
|
|
74
77
|
|
|
75
78
|
.d-hmn-auto { min-height: auto !important; }
|
|
76
79
|
.d-hmn-unset { min-height: unset !important; }
|
|
80
|
+
.d-hmn-fit-content { min-height: fit-content !important; }
|
|
81
|
+
.d-hmn-max-content { min-height: max-content !important; }
|
|
82
|
+
.d-hmn-min-content { min-height: min-content !important; }
|
|
77
83
|
|
|
78
84
|
.d-hmx-auto { max-height: auto !important; }
|
|
79
85
|
.d-hmx-unset { max-height: unset !important; }
|
|
86
|
+
.d-hmx-fit-content { max-height: fit-content !important; }
|
|
87
|
+
.d-hmx-max-content { max-height: max-content !important; }
|
|
88
|
+
.d-hmx-min-content { max-height: min-content !important; }
|
|
80
89
|
|
|
81
90
|
|
|
82
91
|
// ============================================================================
|
|
@@ -163,6 +163,7 @@ select,
|
|
|
163
163
|
textarea {
|
|
164
164
|
margin: 0;
|
|
165
165
|
/* 2 */
|
|
166
|
+
color: inherit;
|
|
166
167
|
font-size: 100%;
|
|
167
168
|
/* 1 */
|
|
168
169
|
font-family: inherit;
|
|
@@ -251,6 +252,7 @@ progress {
|
|
|
251
252
|
*/
|
|
252
253
|
textarea {
|
|
253
254
|
overflow: auto;
|
|
255
|
+
color: inherit;
|
|
254
256
|
}
|
|
255
257
|
/**
|
|
256
258
|
* 1. Add the correct box sizing in IE 10.
|
|
@@ -1509,6 +1511,21 @@ template {
|
|
|
1509
1511
|
cursor: not-allowed;
|
|
1510
1512
|
transition: none;
|
|
1511
1513
|
}
|
|
1514
|
+
.d-btn--unstyled {
|
|
1515
|
+
/* stylelint-disable */
|
|
1516
|
+
all: unset;
|
|
1517
|
+
/* stylelint-enable */
|
|
1518
|
+
display: inline-flex;
|
|
1519
|
+
align-content: center;
|
|
1520
|
+
align-items: center;
|
|
1521
|
+
color: inherit;
|
|
1522
|
+
font: inherit;
|
|
1523
|
+
cursor: pointer;
|
|
1524
|
+
}
|
|
1525
|
+
.d-btn--unstyled:focus-visible {
|
|
1526
|
+
outline: none;
|
|
1527
|
+
box-shadow: var(--dt-shadow-focus);
|
|
1528
|
+
}
|
|
1512
1529
|
.d-btn--xs {
|
|
1513
1530
|
--button-typography: var(--dt-typography-button-xs);
|
|
1514
1531
|
--button-padding-y: var(--button-padding-y-xs);
|
|
@@ -2320,8 +2337,7 @@ template {
|
|
|
2320
2337
|
flex-flow: row wrap;
|
|
2321
2338
|
gap: var(--description-list-gap);
|
|
2322
2339
|
align-items: flex-start;
|
|
2323
|
-
font
|
|
2324
|
-
line-height: var(--dt-font-line-height-300);
|
|
2340
|
+
font: var(--dt-typography-body-sm);
|
|
2325
2341
|
--description-list-gap: var(--dt-space-400);
|
|
2326
2342
|
}
|
|
2327
2343
|
.d-description-list--gap-0 {
|
|
@@ -2351,6 +2367,7 @@ template {
|
|
|
2351
2367
|
.d-description-list__term {
|
|
2352
2368
|
flex: 0 1 40%;
|
|
2353
2369
|
color: var(--dt-color-foreground-tertiary);
|
|
2370
|
+
font: var(--dt-typography-label-sm);
|
|
2354
2371
|
}
|
|
2355
2372
|
.d-description-list__description {
|
|
2356
2373
|
flex: 1 1 50%;
|
|
@@ -7487,18 +7504,57 @@ legend .d-label--md {
|
|
|
7487
7504
|
.d-h-unset {
|
|
7488
7505
|
height: unset !important;
|
|
7489
7506
|
}
|
|
7507
|
+
.d-h-fit-content {
|
|
7508
|
+
height: -webkit-fit-content !important;
|
|
7509
|
+
height: -moz-fit-content !important;
|
|
7510
|
+
height: fit-content !important;
|
|
7511
|
+
}
|
|
7512
|
+
.d-h-max-content {
|
|
7513
|
+
height: -webkit-max-content !important;
|
|
7514
|
+
height: max-content !important;
|
|
7515
|
+
}
|
|
7516
|
+
.d-h-min-content {
|
|
7517
|
+
height: -webkit-min-content !important;
|
|
7518
|
+
height: min-content !important;
|
|
7519
|
+
}
|
|
7490
7520
|
.d-hmn-auto {
|
|
7491
7521
|
min-height: auto !important;
|
|
7492
7522
|
}
|
|
7493
7523
|
.d-hmn-unset {
|
|
7494
7524
|
min-height: unset !important;
|
|
7495
7525
|
}
|
|
7526
|
+
.d-hmn-fit-content {
|
|
7527
|
+
min-height: -webkit-fit-content !important;
|
|
7528
|
+
min-height: -moz-fit-content !important;
|
|
7529
|
+
min-height: fit-content !important;
|
|
7530
|
+
}
|
|
7531
|
+
.d-hmn-max-content {
|
|
7532
|
+
min-height: -webkit-max-content !important;
|
|
7533
|
+
min-height: max-content !important;
|
|
7534
|
+
}
|
|
7535
|
+
.d-hmn-min-content {
|
|
7536
|
+
min-height: -webkit-min-content !important;
|
|
7537
|
+
min-height: min-content !important;
|
|
7538
|
+
}
|
|
7496
7539
|
.d-hmx-auto {
|
|
7497
7540
|
max-height: auto !important;
|
|
7498
7541
|
}
|
|
7499
7542
|
.d-hmx-unset {
|
|
7500
7543
|
max-height: unset !important;
|
|
7501
7544
|
}
|
|
7545
|
+
.d-hmx-fit-content {
|
|
7546
|
+
max-height: -webkit-fit-content !important;
|
|
7547
|
+
max-height: -moz-fit-content !important;
|
|
7548
|
+
max-height: fit-content !important;
|
|
7549
|
+
}
|
|
7550
|
+
.d-hmx-max-content {
|
|
7551
|
+
max-height: -webkit-max-content !important;
|
|
7552
|
+
max-height: max-content !important;
|
|
7553
|
+
}
|
|
7554
|
+
.d-hmx-min-content {
|
|
7555
|
+
max-height: -webkit-min-content !important;
|
|
7556
|
+
max-height: min-content !important;
|
|
7557
|
+
}
|
|
7502
7558
|
.d-w10p {
|
|
7503
7559
|
width: 10% !important;
|
|
7504
7560
|
}
|
|
@@ -9206,7 +9262,7 @@ ul {
|
|
|
9206
9262
|
width: var(--dt-size-550);
|
|
9207
9263
|
height: var(--dt-size-550);
|
|
9208
9264
|
margin-bottom: var(--dt-space-450-negative);
|
|
9209
|
-
color: var(--dt-color-
|
|
9265
|
+
color: var(--dt-color-foreground-primary-inverted);
|
|
9210
9266
|
font-size: var(--dt-font-size-200);
|
|
9211
9267
|
}
|
|
9212
9268
|
.d-recipe-ivr-node__connector-dtmf .d-recipe-ivr-node__connector--selected {
|
|
@@ -10008,6 +10064,7 @@ body {
|
|
|
10008
10064
|
--dt-color-brand-purple-hsl: var(--dt-color-brand-purple-h) var(--dt-color-brand-purple-s) var(--dt-color-brand-purple-l);
|
|
10009
10065
|
--dt-color-brand-purple-hsla: hsl(var(--dt-color-brand-purple-h) var(--dt-color-brand-purple-s) var(--dt-color-brand-purple-l) / var(--alpha, 100%));
|
|
10010
10066
|
--dt-color-brand-purple: #7C52FF; /* Primary brand color. */
|
|
10067
|
+
--dt-color-gradient-gold-red-magenta-purple: linear-gradient(135deg, #471571 0%, #551B84 3.08%, #7C229E 14.48%, #9024A4 23.67%, #B02290 35.5%, #D32B86 48.3%, #E92F6F 60.29%, #F6484F 70.08%, #FB7328 90.02%, #F3960F 97.29%, #F3960F 100%); /* Gradient for Ai-oriented treatments. */
|
|
10011
10068
|
--dt-color-indigo-1000-h: 203.2258064516129;
|
|
10012
10069
|
--dt-color-indigo-1000-s: 100%;
|
|
10013
10070
|
--dt-color-indigo-1000-l: 6.078431372549019%;
|
|
@@ -11423,7 +11480,6 @@ body {
|
|
|
11423
11480
|
--dt-shadow-large: var(--dt-shadow-large-offset-x) var(--dt-shadow-large-offset-y) var(--dt-shadow-large-blur) var(--dt-shadow-large-spread) var(--dt-shadow-large-color);
|
|
11424
11481
|
--dt-shadow-medium: var(--dt-shadow-medium-offset-x) var(--dt-shadow-medium-offset-y) var(--dt-shadow-medium-blur) var(--dt-shadow-medium-spread) var(--dt-shadow-medium-color);
|
|
11425
11482
|
--dt-shadow-small: var(--dt-shadow-small-offset-x) var(--dt-shadow-small-offset-y) var(--dt-shadow-small-blur) var(--dt-shadow-small-spread) var(--dt-shadow-small-color);
|
|
11426
|
-
--dt-color-gradient-gold-red-magenta-purple: linear-gradient(140deg, #FF5E2F 0%, var(--dt-color-brand-red) 25%, var(--dt-color-brand-magenta) 66%, #9D42EA 100%); /* Gradient for Ai-oriented treatments. */
|
|
11427
11483
|
--dt-color-gradient-magenta-purple: linear-gradient(135deg, var(--dt-color-brand-magenta) 10%, var(--dt-color-brand-purple) 90%); /* Gradient for Ai-oriented treatments. */
|
|
11428
11484
|
--dt-size-base: calc(1rem * 0.8);
|
|
11429
11485
|
--dt-font-family-expressive: "Season Mix", var(--dt-font-family-body);
|
|
@@ -32245,6 +32301,7 @@ body {
|
|
|
32245
32301
|
--dt-badge-color-foreground-default-hsl: var(--dt-color-black-1000-hsl);
|
|
32246
32302
|
--dt-badge-color-foreground-default-hsla: var(--dt-color-black-1000-hsla);
|
|
32247
32303
|
--dt-badge-color-foreground-default: var(--dt-color-black-1000);
|
|
32304
|
+
--dt-badge-color-background-ai: var(--dt-color-gradient-gold-red-magenta-purple);
|
|
32248
32305
|
--dt-badge-color-background-bulletin-subtle-h: var(--dt-color-purple-200-h);
|
|
32249
32306
|
--dt-badge-color-background-bulletin-subtle-s: var(--dt-color-purple-200-s);
|
|
32250
32307
|
--dt-badge-color-background-bulletin-subtle-l: var(--dt-color-purple-200-l);
|
|
@@ -32634,6 +32691,7 @@ body {
|
|
|
32634
32691
|
--dt-color-border-accent-hsl: var(--dt-color-brand-magenta-hsl);
|
|
32635
32692
|
--dt-color-border-accent-hsla: var(--dt-color-brand-magenta-hsla);
|
|
32636
32693
|
--dt-color-border-accent: var(--dt-color-brand-magenta);
|
|
32694
|
+
--dt-color-border-ai: var(--dt-color-gradient-gold-red-magenta-purple);
|
|
32637
32695
|
--dt-color-border-focus-h: var(--dt-color-blue-425-h);
|
|
32638
32696
|
--dt-color-border-focus-s: var(--dt-color-blue-425-s);
|
|
32639
32697
|
--dt-color-border-focus-l: var(--dt-color-blue-425-l);
|
|
@@ -32865,6 +32923,7 @@ body {
|
|
|
32865
32923
|
--dt-color-border-subtle-hsl: var(--dt-color-border-subtle-h) var(--dt-color-border-subtle-s) var(--dt-color-border-subtle-l);
|
|
32866
32924
|
--dt-color-border-subtle-hsla: hsl(var(--dt-color-border-subtle-h) var(--dt-color-border-subtle-s) var(--dt-color-border-subtle-l) / var(--alpha, 11%));
|
|
32867
32925
|
--dt-color-border-subtle: hsl(0 0% 11% / 0.11);
|
|
32926
|
+
--dt-color-surface-ai: var(--dt-color-gradient-gold-red-magenta-purple);
|
|
32868
32927
|
--dt-color-surface-backdrop-h: 0;
|
|
32869
32928
|
--dt-color-surface-backdrop-s: 0%;
|
|
32870
32929
|
--dt-color-surface-backdrop-l: 0%;
|
|
@@ -33679,7 +33738,6 @@ body {
|
|
|
33679
33738
|
--dt-badge-color-border-default-hsl: var(--dt-color-border-subtle-hsl);
|
|
33680
33739
|
--dt-badge-color-border-default-hsla: var(--dt-color-border-subtle-hsla);
|
|
33681
33740
|
--dt-badge-color-border-default: var(--dt-color-border-subtle);
|
|
33682
|
-
--dt-badge-color-background-ai: var(--dt-color-gradient-gold-red-magenta-purple);
|
|
33683
33741
|
--dt-badge-color-background-bulletin-h: var(--dt-color-surface-brand-strong-h);
|
|
33684
33742
|
--dt-badge-color-background-bulletin-s: var(--dt-color-surface-brand-strong-s);
|
|
33685
33743
|
--dt-badge-color-background-bulletin-l: var(--dt-color-surface-brand-strong-l);
|
|
@@ -34177,8 +34235,6 @@ body {
|
|
|
34177
34235
|
--dt-typography-body-sm-font-size: var(--dt-font-size-100); /* Reduced small text style for less prominent or adjacent content. */
|
|
34178
34236
|
--dt-typography-body-md-compact-font-size: var(--dt-font-size-200); /* A tighter-spaced version of medium body style. */
|
|
34179
34237
|
--dt-typography-body-md-font-size: var(--dt-font-size-200); /* Base default medium text style for main content. */
|
|
34180
|
-
--dt-color-border-ai: var(--dt-color-gradient-gold-red-magenta-purple);
|
|
34181
|
-
--dt-color-surface-ai: var(--dt-color-gradient-gold-red-magenta-purple);
|
|
34182
34238
|
--dt-color-surface-primary-opaque-inverted-h: 0;
|
|
34183
34239
|
--dt-color-surface-primary-opaque-inverted-s: 0%;
|
|
34184
34240
|
--dt-color-surface-primary-opaque-inverted-l: 0%;
|