@dialpad/dialtone 6.2.1 → 6.4.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.
Files changed (37) hide show
  1. package/README.md +1 -1
  2. package/lib/build/less/components/banner.less +2 -0
  3. package/lib/build/less/components/button.less +2 -0
  4. package/lib/build/less/components/forms.less +2 -0
  5. package/lib/build/less/components/input.less +8 -2
  6. package/lib/build/less/components/modal.less +2 -0
  7. package/lib/build/less/components/notice.less +3 -0
  8. package/lib/build/less/components/radio-checkbox.less +54 -21
  9. package/lib/build/less/components/selects.less +14 -2
  10. package/lib/build/less/components/table.less +2 -0
  11. package/lib/build/less/components/toast.less +3 -0
  12. package/lib/build/less/themes/default.less +12 -0
  13. package/lib/build/less/themes/example.less +2 -2
  14. package/lib/build/less/utilities/backgrounds.less +3 -0
  15. package/lib/build/less/utilities/borders.less +4 -0
  16. package/lib/build/less/utilities/colors.less +2 -0
  17. package/lib/build/less/utilities/effects.less +2 -0
  18. package/lib/build/less/utilities/grid.less +2 -0
  19. package/lib/build/less/utilities/layout.less +4 -0
  20. package/lib/build/less/utilities/sizing.less +3 -0
  21. package/lib/build/less/utilities/spacing.less +5 -0
  22. package/lib/build/less/utilities/svg.less +2 -0
  23. package/lib/build/less/utilities/typography.less +5 -0
  24. package/lib/build/svg/system/arrow-accordion-closed.svg +1 -1
  25. package/lib/build/svg/system/arrow-accordion-open.svg +1 -1
  26. package/lib/build/svg/system/arrow-back--ios.svg +1 -1
  27. package/lib/build/svg/system/arrow-backwards.svg +1 -1
  28. package/lib/build/svg/system/arrow-downward.svg +1 -1
  29. package/lib/build/svg/system/arrow-right.svg +1 -1
  30. package/lib/dist/css/dialtone.css +62 -18
  31. package/lib/dist/css/dialtone.min.css +1 -1
  32. package/lib/dist/svg/system/arrow-backwards.svg +1 -1
  33. package/lib/dist/svg/system/arrow-downward.svg +1 -1
  34. package/lib/dist/vue/icons/IconArrowBackwards.vue +1 -1
  35. package/lib/dist/vue/icons/IconArrowDownward.vue +1 -1
  36. package/package.json +6 -4
  37. package/lib/.DS_Store +0 -0
package/README.md CHANGED
@@ -21,7 +21,7 @@ If you only need access to Dialtone's variables and customizations to build a fi
21
21
 
22
22
  ## Building Dialtone locally
23
23
 
24
- To build Dialtone locally, visit our [installation instructions](https://dialpad.design/getting-started/installation/).
24
+ To build Dialtone locally, visit our [installation instructions](https://dialpad.design/getting-started/building-locally/).
25
25
 
26
26
  ## Contributing
27
27
 
@@ -1,3 +1,5 @@
1
+ @import (reference) "../utilities/spacing.less";
2
+
1
3
  //
2
4
  // DIALTONE
3
5
  // COMPONENTS: BANNERS
@@ -1,3 +1,5 @@
1
+ @import (reference) "../variables/icons.less";
2
+
1
3
  //
2
4
  // DIALTONE
3
5
  // COMPONENTS: BUTTONS
@@ -1,3 +1,5 @@
1
+ @import (reference) "../variables/typography.less";
2
+
1
3
  //
2
4
  // DIALTONE
3
5
  // COMPONENTS: FORMS
@@ -1,3 +1,6 @@
1
+ @import (reference) '../variables/icons.less';
2
+ @import (reference) '../variables/sizes.less';
3
+
1
4
  //
2
5
  // DIALTONE
3
6
  // COMPONENTS: INPUTS
@@ -86,8 +89,9 @@
86
89
  // -- DISABLED / READ-ONLY
87
90
  &[disabled],
88
91
  &[read-only] {
89
- --input--bc: var(--black-500)!important;
90
- --input--bgc: var(--black-200);
92
+ --input--bc: var(--black-200)!important;
93
+ --input--bgc: var(--black-075);
94
+ --input--fc: var(--black-400);
91
95
 
92
96
  &:focus {
93
97
  box-shadow: none!important;
@@ -239,6 +243,8 @@
239
243
  // ------------------------------------------------------------------------
240
244
  --input-icon-size: @icon16;
241
245
 
246
+ display: inline-flex;
247
+ align-items: center;
242
248
  position: absolute;
243
249
  top: 0;
244
250
  z-index: var(--zi-base1);
@@ -1,3 +1,5 @@
1
+ @import (reference) '../utilities/spacing.less';
2
+
1
3
  //
2
4
  // DIALTONE
3
5
  // COMPONENTS: MODALS
@@ -1,3 +1,5 @@
1
+ @import (reference) '../utilities/spacing.less';
2
+
1
3
  //
2
4
  // DIALTONE
3
5
  // COMPONENTS: NOTICES
@@ -9,6 +11,7 @@
9
11
  // ============================================================================
10
12
  // $ BASE WRAPPER
11
13
  // ----------------------------------------------------------------------------
14
+
12
15
  .d-notice {
13
16
  // Component CSS Vars
14
17
  // ------------------------------------------------------------------------
@@ -68,10 +68,12 @@
68
68
  align-self: flex-start;
69
69
 
70
70
  // -- DISABLED
71
- &[disabled] {
72
- --check-radio--bc: var(--black-200);
73
- --check-radio--bgc: var(--black-100);
74
- cursor: not-allowed;
71
+ &[disabled],
72
+ &--disabled {
73
+ --check-radio--color: var(--black-200);
74
+ --check-radio--bc: var(--black-200);
75
+ --check-radio--bgc: var(--black-075);
76
+ cursor: not-allowed;
75
77
  }
76
78
  }
77
79
 
@@ -91,7 +93,7 @@
91
93
  &.d-radio-group--disabled {
92
94
  .d-checkbox__label,
93
95
  .d-radio__label {
94
- color: var(--black-400);
96
+ color: var(--black-200);
95
97
  cursor: not-allowed;
96
98
  }
97
99
  }
@@ -148,12 +150,6 @@
148
150
  background-repeat: no-repeat;
149
151
  background-size: contain;
150
152
 
151
- // Disabled
152
- &[disabled] {
153
- --check-radio--bc: var(--black-400);
154
- --check-radio--bgc: var(--black-200);
155
- }
156
-
157
153
  &:focus,
158
154
  &:checked:focus {
159
155
  border-radius: var(--br2);
@@ -165,10 +161,41 @@
165
161
 
166
162
  // Disabled
167
163
  &[disabled] {
168
- --check-radio--bgc: var(--black-200);
164
+ --check-radio--bgc: var(--black-075);
169
165
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z' fill='hsl(240, 10%, 51%)'/%3E%3C/svg%3E");
170
166
  }
171
167
  }
168
+
169
+ &--disabled:checked {
170
+ --check-radio--bgc: var(--black-075);
171
+ background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z' fill='hsl(240, 10%, 51%)'/%3E%3C/svg%3E");
172
+ }
173
+
174
+ &--indeterminate,
175
+ &:indeterminate {
176
+ --check-radio--bgc: var(--check-radio--color);
177
+ background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M19 13H5v-2h14v2z' fill='%23fff'/%3E%3C/svg%3E");
178
+
179
+ &[disabled] {
180
+ --check-radio--bgc: var(--black-075);
181
+ background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M19 13H5v-2h14v2z' fill='hsl(240, 10%, 51%)'/%3E%3C/svg%3E");
182
+ }
183
+ }
184
+
185
+ &--indeterminate&--disabled,
186
+ &:indeterminate&--disabled {
187
+ --check-radio--bgc: var(--black-075);
188
+ background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M19 13H5v-2h14v2z' fill='hsl(240, 10%, 51%)'/%3E%3C/svg%3E");
189
+ }
190
+
191
+ // Disabled
192
+ &[disabled],
193
+ &--disabled {
194
+ --check-radio--color: var(--black-200);
195
+ --check-radio--bc: var(--black-200);
196
+ --check-radio--bgc: var(--black-075);
197
+ }
198
+
172
199
  }
173
200
  }
174
201
 
@@ -177,7 +204,7 @@
177
204
  .d-checkbox--warning {
178
205
  --check-radio--color: var(--warning-color);
179
206
  --check-radio--bc: var(--check-radio--color);
180
-
207
+
181
208
  &:focus,
182
209
  &:checked:focus {
183
210
  box-shadow: var(--bs-focus-ring-warning);
@@ -186,7 +213,7 @@
186
213
  .d-checkbox--error {
187
214
  --check-radio--color: var(--error-color);
188
215
  --check-radio--bc: var(--check-radio--color);
189
-
216
+
190
217
  &:focus,
191
218
  &:checked:focus {
192
219
  box-shadow: var(--bs-focus-ring-error);
@@ -211,9 +238,11 @@
211
238
  border-radius: var(--br-circle);
212
239
 
213
240
  // Disabled
214
- &[disabled] {
215
- --check-radio--bc: var(--black-400);
216
- --check-radio--bgc: var(--black-200);
241
+ &[disabled],
242
+ &--disabled {
243
+ --check-radio--color: var(--black-200);
244
+ --check-radio--bc: var(--black-200);
245
+ --check-radio--bgc: var(--black-075);
217
246
  }
218
247
 
219
248
  &:focus,
@@ -227,9 +256,13 @@
227
256
 
228
257
  // Disabled
229
258
  &[disabled] {
230
- --check-radio--bgc: var(--black-400);
259
+ --check-radio--bgc: var(--black-200);
231
260
  }
232
261
  }
262
+
263
+ &--disabled:checked {
264
+ --check-radio--bgc: var(--black-200);
265
+ }
233
266
  }
234
267
  }
235
268
 
@@ -252,7 +285,7 @@
252
285
  &:focus,
253
286
  &:checked:focus {
254
287
  box-shadow: var(--bs-focus-ring-error), inset 0 0 0 var(--su2) var(--white);
255
- }
288
+ }
256
289
  }
257
290
 
258
291
  .d-radio--success {
@@ -262,5 +295,5 @@
262
295
  &:focus,
263
296
  &:checked:focus {
264
297
  box-shadow: var(--bs-focus-ring-success), inset 0 0 0 var(--su2) var(--white);
265
- }
266
- }
298
+ }
299
+ }
@@ -1,3 +1,7 @@
1
+ @import (reference) '../variables/sizes.less';
2
+ @import (reference) '../variables/icons.less';
3
+ @import (reference) 'input.less';
4
+
1
5
  //
2
6
  // DIALTONE
3
7
  // COMPONENTS: SELECT MENUS
@@ -119,8 +123,9 @@
119
123
  box-shadow: var(--bs-focus-ring);
120
124
  }
121
125
  &:disabled {
122
- background: var(--black-200);
123
- border: 1px solid var(--black-500);
126
+ color: var(--black-400);
127
+ background: var(--black-075);
128
+ border: 1px solid var(--black-200);
124
129
  }
125
130
  &::-moz-focus-inner {
126
131
  outline: none !important;
@@ -162,3 +167,10 @@
162
167
  box-shadow: var(--bs-focus-ring-warning);
163
168
  }
164
169
  }
170
+
171
+ .d-select--disabled {
172
+ &:before,
173
+ &:after {
174
+ border-color: var(--black-400) transparent;
175
+ }
176
+ }
@@ -1,3 +1,5 @@
1
+ @import (reference) '../utilities/typography.less';
2
+
1
3
  //
2
4
  // DIALTONE
3
5
  // COMPONENTS: TABLES
@@ -1,3 +1,6 @@
1
+ @import (reference) "../utilities/spacing.less";
2
+ @import (reference) "../utilities/effects.less";
3
+
1
4
  //
2
5
  // DIALTONE
3
6
  // COMPONENTS: TOAST
@@ -1,3 +1,13 @@
1
+ @import (reference) "../variables/colors.less";
2
+ @import (reference) "../variables/layout.less";
3
+ @import (reference) "../variables/borders.less";
4
+ @import (reference) "../variables/visual-styles.less";
5
+ @import (reference) "../variables/icons.less";
6
+ @import (reference) "../variables/sizes.less";
7
+ @import (reference) "../variables/typography.less";
8
+ @import (reference) "../utilities/internals.less";
9
+ @import (reference) "../utilities/grid.less";
10
+
1
11
  //
2
12
  // DIALTONE
3
13
  // THEME VARIABLES
@@ -21,6 +31,8 @@
21
31
  // ============================================================================
22
32
  // $ SET VARIABLES
23
33
  // ----------------------------------------------------------------------------
34
+
35
+
24
36
  @theme-vars: {
25
37
  primary-color-h: var(--purple-500-h);
26
38
  primary-color-s: var(--purple-500-s);
@@ -33,9 +33,9 @@
33
33
  //
34
34
  // @nav__background-color: This sets the navigation background color.
35
35
  // ----------------------------------------------------------------------------
36
- @primary-color: @navy;
36
+ @primary-color: @purple-500;
37
37
  @primary-color--hover: darken(@primary-color, 10%);
38
- @nav__background-color: @ash;
38
+ @nav__background-color: @black-400;
39
39
 
40
40
  // \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
41
41
  // ----------------------------------------------------------------------------
@@ -1,3 +1,6 @@
1
+ @import (reference) "../variables/colors.less";
2
+ @import (reference) "../utilities/internals.less";
3
+
1
4
  //
2
5
  // DIALTONE
3
6
  // UTILITIES: BACKGROUNDS
@@ -1,3 +1,7 @@
1
+ @import (reference) "../variables/spacing.less";
2
+ @import (reference) "../utilities/internals.less";
3
+ @import (reference) "../variables/borders.less";
4
+
1
5
  //
2
6
  // DIALTONE
3
7
  // UTILITIES: BORDERS
@@ -1,3 +1,5 @@
1
+ @import (reference) "../utilities/internals.less";
2
+
1
3
  //
2
4
  // DIALTONE
3
5
  // UTILITIES: COLORS
@@ -1,3 +1,5 @@
1
+ @import (reference) "../variables/spacing.less";
2
+
1
3
  //
2
4
  // DIALTONE
3
5
  // UTILITIES: EFFECTS
@@ -1,3 +1,5 @@
1
+ @import (reference) "../utilities/spacing.less";
2
+
1
3
  //
2
4
  // DIALTONE
3
5
  // UTILITIES: GRID
@@ -1,3 +1,7 @@
1
+ @import (reference) "../variables/spacing.less";
2
+ @import (reference) "../utilities/internals.less";
3
+ @import (reference) "../utilities/responsive.less";
4
+
1
5
  //
2
6
  // DIALTONE
3
7
  // UTILITIES: LAYOUT
@@ -1,3 +1,6 @@
1
+ @import (reference) "../variables/layout.less";
2
+ @import (reference) "../utilities/internals.less";
3
+
1
4
  //
2
5
  // DIALTONE
3
6
  // UTILITIES: SIZING
@@ -1,3 +1,6 @@
1
+ @import (reference) "../variables/spacing.less";
2
+ @import (reference) "internals.less";
3
+
1
4
  //
2
5
  // DIALTONE
3
6
  // UTILITIES: SPACING
@@ -45,6 +48,7 @@
45
48
  // this applies margin to context. The margin is only applied when an
46
49
  // element is proceeded by another element.
47
50
  // ----------------------------------------------------------------------------
51
+ .d-stack0 { > * + * { margin-top: @su0 !important; } }
48
52
  .d-stack1 { > * + * { margin-top: @su1 !important; } }
49
53
  .d-stack2 { > * + * { margin-top: @su2 !important; } }
50
54
  .d-stack4 { > * + * { margin-top: @su4 !important; } }
@@ -57,6 +61,7 @@
57
61
  .d-stack48 { > * + * { margin-top: @su48 !important; } }
58
62
  .d-stack64 { > * + * { margin-top: @su64 !important; } }
59
63
 
64
+ .d-flow0 { > * + * { margin-left: @su0 !important; } }
60
65
  .d-flow1 { > * + * { margin-left: @su1 !important; } }
61
66
  .d-flow2 { > * + * { margin-left: @su2 !important; } }
62
67
  .d-flow4 { > * + * { margin-left: @su4 !important; } }
@@ -1,3 +1,5 @@
1
+ @import (reference) "../variables/icons.less";
2
+
1
3
  //
2
4
  // DIALTONE
3
5
  // UTILITIES: SVG
@@ -1,3 +1,8 @@
1
+ @import (reference) '../variables/typography.less';
2
+ @import (reference) '../variables/spacing.less';
3
+ @import (reference) '../utilities/internals.less';
4
+ @import (reference) '../utilities/grid.less';
5
+
1
6
  //
2
7
  // DIALTONE
3
8
  // UTILTIES: TYPOGRAPHY
@@ -1,3 +1,3 @@
1
1
  <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M8 15.2623C8 16.0333 8.83578 16.5143 9.50245 16.1269L15.1162 12.8646C15.7796 12.4791 15.7796 11.5209 15.1162 11.1354L9.50245 7.87311C8.83578 7.48569 8 7.96666 8 8.73772V15.2623Z" fill="#141721"/>
2
+ <path d="M8 15.2623C8 16.0333 8.83578 16.5143 9.50245 16.1269L15.1162 12.8646C15.7796 12.4791 15.7796 11.5209 15.1162 11.1354L9.50245 7.87311C8.83578 7.48569 8 7.96666 8 8.73772V15.2623Z" fill="black"/>
3
3
  </svg>
@@ -1,3 +1,3 @@
1
1
  <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M8.73772 8C7.96666 8 7.48569 8.83578 7.87311 9.50245L11.1354 15.1162C11.5209 15.7796 12.4791 15.7796 12.8646 15.1162L16.1269 9.50245C16.5143 8.83578 16.0333 8 15.2623 8H8.73772Z" fill="#141721"/>
2
+ <path d="M8.73772 8C7.96666 8 7.48569 8.83578 7.87311 9.50245L11.1354 15.1162C11.5209 15.7796 12.4791 15.7796 12.8646 15.1162L16.1269 9.50245C16.5143 8.83578 16.0333 8 15.2623 8H8.73772Z" fill="black"/>
3
3
  </svg>
@@ -1,3 +1,3 @@
1
1
  <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M17 19.88L9.12 12L17 4.12L14.88 2L4.88 12L14.88 22L17 19.88Z" fill="#141721"/>
2
+ <path d="M17 19.88L9.12 12L17 4.12L14.88 2L4.88 12L14.88 22L17 19.88Z" fill="black"/>
3
3
  </svg>
@@ -1,3 +1,3 @@
1
1
  <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M12 20L13.41 18.59L7.83 13L20 13V11L7.83 11L13.41 5.41L12 4L4 12L12 20Z" fill="#0D0C0F"/>
2
+ <path d="M12 20L13.41 18.59L7.83 13L20 13V11L7.83 11L13.41 5.41L12 4L4 12L12 20Z" fill="black"/>
3
3
  </svg>
@@ -1,3 +1,3 @@
1
1
  <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M20 12L18.59 10.59L13 16.17V4H11V16.17L5.42 10.58L4 12L12 20L20 12Z" fill="#010101"/>
2
+ <path d="M20 12L18.59 10.59L13 16.17V4H11V16.17L5.42 10.58L4 12L12 20L20 12Z" fill="black"/>
3
3
  </svg>
@@ -1,3 +1,3 @@
1
1
  <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M9 7L14 12L9 17V7Z" fill="#141721"/>
2
+ <path d="M9 7L14 12L9 17V7Z" fill="black"/>
3
3
  </svg>
@@ -1136,8 +1136,9 @@ legend .d-label {
1136
1136
  .d-textarea[disabled],
1137
1137
  .d-input[read-only],
1138
1138
  .d-textarea[read-only] {
1139
- --input--bc: var(--black-500)!important;
1140
- --input--bgc: var(--black-200);
1139
+ --input--bc: var(--black-200)!important;
1140
+ --input--bgc: var(--black-075);
1141
+ --input--fc: var(--black-400);
1141
1142
  }
1142
1143
  .d-input[disabled]:focus,
1143
1144
  .d-textarea[disabled]:focus,
@@ -1345,9 +1346,11 @@ legend .d-label {
1345
1346
  }
1346
1347
  .d-input-icon {
1347
1348
  --input-icon-size: 1.6rem;
1349
+ display: inline-flex;
1348
1350
  position: absolute;
1349
1351
  z-index: var(--zi-base1);
1350
1352
  top: 0;
1353
+ align-items: center;
1351
1354
  width: var(--input-icon-size);
1352
1355
  height: var(--input-icon-size);
1353
1356
  margin: 0;
@@ -1971,9 +1974,12 @@ legend .d-label {
1971
1974
  }
1972
1975
  }
1973
1976
  .d-checkbox[disabled],
1974
- .d-radio[disabled] {
1977
+ .d-radio[disabled],
1978
+ .d-checkbox--disabled,
1979
+ .d-radio--disabled {
1980
+ --check-radio--color: var(--black-200);
1975
1981
  --check-radio--bc: var(--black-200);
1976
- --check-radio--bgc: var(--black-100);
1982
+ --check-radio--bgc: var(--black-075);
1977
1983
  cursor: not-allowed;
1978
1984
  }
1979
1985
  .d-checkbox-group,
@@ -1991,7 +1997,7 @@ legend .d-label {
1991
1997
  .d-radio-group.d-checkbox-group--disabled .d-radio__label,
1992
1998
  .d-checkbox-group.d-radio-group--disabled .d-radio__label,
1993
1999
  .d-radio-group.d-radio-group--disabled .d-radio__label {
1994
- color: var(--black-400);
2000
+ color: var(--black-200);
1995
2001
  cursor: not-allowed;
1996
2002
  }
1997
2003
  .d-checkbox__input,
@@ -2025,10 +2031,6 @@ legend .d-label {
2025
2031
  background-repeat: no-repeat;
2026
2032
  background-size: contain;
2027
2033
  }
2028
- .d-checkbox[disabled] {
2029
- --check-radio--bc: var(--black-400);
2030
- --check-radio--bgc: var(--black-200);
2031
- }
2032
2034
  .d-checkbox:focus,
2033
2035
  .d-checkbox:checked:focus {
2034
2036
  border-radius: var(--br2);
@@ -2038,9 +2040,34 @@ legend .d-label {
2038
2040
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z' fill='%23fff'/%3E%3C/svg%3E");
2039
2041
  }
2040
2042
  .d-checkbox:checked[disabled] {
2041
- --check-radio--bgc: var(--black-200);
2043
+ --check-radio--bgc: var(--black-075);
2042
2044
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z' fill='hsl(240, 10%, 51%)'/%3E%3C/svg%3E");
2043
2045
  }
2046
+ .d-checkbox--disabled:checked {
2047
+ --check-radio--bgc: var(--black-075);
2048
+ background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z' fill='hsl(240, 10%, 51%)'/%3E%3C/svg%3E");
2049
+ }
2050
+ .d-checkbox--indeterminate,
2051
+ .d-checkbox:indeterminate {
2052
+ --check-radio--bgc: var(--check-radio--color);
2053
+ background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M19 13H5v-2h14v2z' fill='%23fff'/%3E%3C/svg%3E");
2054
+ }
2055
+ .d-checkbox--indeterminate[disabled],
2056
+ .d-checkbox:indeterminate[disabled] {
2057
+ --check-radio--bgc: var(--black-075);
2058
+ background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M19 13H5v-2h14v2z' fill='hsl(240, 10%, 51%)'/%3E%3C/svg%3E");
2059
+ }
2060
+ .d-checkbox--indeterminate.d-checkbox--disabled,
2061
+ .d-checkbox:indeterminate.d-checkbox--disabled {
2062
+ --check-radio--bgc: var(--black-075);
2063
+ background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M19 13H5v-2h14v2z' fill='hsl(240, 10%, 51%)'/%3E%3C/svg%3E");
2064
+ }
2065
+ .d-checkbox[disabled],
2066
+ .d-checkbox--disabled {
2067
+ --check-radio--color: var(--black-200);
2068
+ --check-radio--bc: var(--black-200);
2069
+ --check-radio--bgc: var(--black-075);
2070
+ }
2044
2071
  }
2045
2072
  .d-checkbox--warning {
2046
2073
  --check-radio--color: var(--warning-color);
@@ -2070,9 +2097,11 @@ legend .d-label {
2070
2097
  .d-radio {
2071
2098
  border-radius: var(--br-circle);
2072
2099
  }
2073
- .d-radio[disabled] {
2074
- --check-radio--bc: var(--black-400);
2075
- --check-radio--bgc: var(--black-200);
2100
+ .d-radio[disabled],
2101
+ .d-radio--disabled {
2102
+ --check-radio--color: var(--black-200);
2103
+ --check-radio--bc: var(--black-200);
2104
+ --check-radio--bgc: var(--black-075);
2076
2105
  }
2077
2106
  .d-radio:focus,
2078
2107
  .d-radio:checked:focus {
@@ -2083,7 +2112,10 @@ legend .d-label {
2083
2112
  box-shadow: inset 0 0 0 var(--su2) var(--white);
2084
2113
  }
2085
2114
  .d-radio:checked[disabled] {
2086
- --check-radio--bgc: var(--black-400);
2115
+ --check-radio--bgc: var(--black-200);
2116
+ }
2117
+ .d-radio--disabled:checked {
2118
+ --check-radio--bgc: var(--black-200);
2087
2119
  }
2088
2120
  }
2089
2121
  .d-radio--warning {
@@ -2258,8 +2290,9 @@ legend .d-label {
2258
2290
  }
2259
2291
  .d-select__input[disabled],
2260
2292
  .d-select__input[read-only] {
2261
- --input--bc: var(--black-500)!important;
2262
- --input--bgc: var(--black-200);
2293
+ --input--bc: var(--black-200)!important;
2294
+ --input--bgc: var(--black-075);
2295
+ --input--fc: var(--black-400);
2263
2296
  }
2264
2297
  .d-select__input[disabled]:focus,
2265
2298
  .d-select__input[read-only]:focus {
@@ -2301,8 +2334,9 @@ legend .d-label {
2301
2334
  box-shadow: var(--bs-focus-ring);
2302
2335
  }
2303
2336
  .d-select__input:disabled {
2304
- border: 1px solid var(--black-500);
2305
- background: var(--black-200);
2337
+ border: 1px solid var(--black-200);
2338
+ background: var(--black-075);
2339
+ color: var(--black-400);
2306
2340
  }
2307
2341
  .d-select__input::-moz-focus-inner {
2308
2342
  outline: none !important;
@@ -2335,6 +2369,10 @@ legend .d-label {
2335
2369
  --select--bc: var(--warning-color);
2336
2370
  box-shadow: var(--bs-focus-ring-warning);
2337
2371
  }
2372
+ .d-select--disabled:before,
2373
+ .d-select--disabled:after {
2374
+ border-color: var(--black-400) transparent;
2375
+ }
2338
2376
  .d-table {
2339
2377
  --table--th: var(--black-700);
2340
2378
  --table--td: var(--black-600);
@@ -34482,6 +34520,9 @@ body.theme-dark .d\:d-bgg-to-0 {
34482
34520
  .d-wmx-unset {
34483
34521
  max-width: unset !important;
34484
34522
  }
34523
+ .d-stack0 > * + * {
34524
+ margin-top: 0 !important;
34525
+ }
34485
34526
  .d-stack1 > * + * {
34486
34527
  margin-top: 0.1rem !important;
34487
34528
  }
@@ -34515,6 +34556,9 @@ body.theme-dark .d\:d-bgg-to-0 {
34515
34556
  .d-stack64 > * + * {
34516
34557
  margin-top: 6.4rem !important;
34517
34558
  }
34559
+ .d-flow0 > * + * {
34560
+ margin-left: 0 !important;
34561
+ }
34518
34562
  .d-flow1 > * + * {
34519
34563
  margin-left: 0.1rem !important;
34520
34564
  }