@clayui/css 3.160.0 → 3.162.0

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 (99) hide show
  1. package/lib/css/atlas.css +1716 -1586
  2. package/lib/css/atlas.css.map +1 -1
  3. package/lib/css/base.css +1416 -1287
  4. package/lib/css/base.css.map +1 -1
  5. package/lib/css/cadmin.css +79 -12
  6. package/lib/css/cadmin.css.map +1 -1
  7. package/lib/images/icons/arrow-key-down.svg +9 -0
  8. package/lib/images/icons/arrow-key-left.svg +9 -0
  9. package/lib/images/icons/arrow-key-right.svg +9 -0
  10. package/lib/images/icons/arrow-key-up.svg +9 -0
  11. package/lib/images/icons/books-brush.svg +9 -0
  12. package/lib/images/icons/icons.svg +1 -1
  13. package/package.json +1 -1
  14. package/src/images/icons/arrow-key-down.svg +9 -0
  15. package/src/images/icons/arrow-key-left.svg +9 -0
  16. package/src/images/icons/arrow-key-right.svg +9 -0
  17. package/src/images/icons/arrow-key-up.svg +9 -0
  18. package/src/images/icons/books-brush.svg +9 -0
  19. package/src/images/icons/icons.svg +1 -1
  20. package/src/scss/_components.scss +2 -0
  21. package/src/scss/_license-text.scss +1 -1
  22. package/src/scss/atlas/_variables.scss +6 -4
  23. package/src/scss/atlas/variables/_forms.scss +3 -1
  24. package/src/scss/atlas/variables/_globals.scss +10 -10
  25. package/src/scss/atlas/variables/_reorder.scss +1 -1
  26. package/src/scss/atlas-custom-properties/_variables.scss +66 -0
  27. package/src/scss/atlas-custom-properties/variables/_alerts.scss +1205 -0
  28. package/src/scss/atlas-custom-properties/variables/_application-bar.scss +60 -0
  29. package/src/scss/atlas-custom-properties/variables/_aspect-ratio.scss +26 -0
  30. package/src/scss/atlas-custom-properties/variables/_badges.scss +341 -0
  31. package/src/scss/atlas-custom-properties/variables/_breadcrumbs.scss +193 -0
  32. package/src/scss/atlas-custom-properties/variables/_buttons.scss +1442 -0
  33. package/src/scss/atlas-custom-properties/variables/_c-root.scss +343 -0
  34. package/src/scss/atlas-custom-properties/variables/_cards.scss +1212 -0
  35. package/src/scss/atlas-custom-properties/variables/_clay-color.scss +617 -0
  36. package/src/scss/atlas-custom-properties/variables/_custom-forms.scss +1096 -0
  37. package/src/scss/atlas-custom-properties/variables/_date-picker.scss +619 -0
  38. package/src/scss/atlas-custom-properties/variables/_drilldown.scss +244 -0
  39. package/src/scss/atlas-custom-properties/variables/_dropdowns.scss +1229 -0
  40. package/src/scss/atlas-custom-properties/variables/_dual-listbox.scss +72 -0
  41. package/src/scss/atlas-custom-properties/variables/_empty-state.scss +102 -0
  42. package/src/scss/atlas-custom-properties/variables/_forms.scss +2305 -0
  43. package/src/scss/atlas-custom-properties/variables/_globals-z-index.scss +48 -0
  44. package/src/scss/atlas-custom-properties/variables/_globals.scss +844 -0
  45. package/src/scss/atlas-custom-properties/variables/_icons.scss +71 -0
  46. package/src/scss/atlas-custom-properties/variables/_images.scss +9 -0
  47. package/src/scss/atlas-custom-properties/variables/_labels.scss +1374 -0
  48. package/src/scss/atlas-custom-properties/variables/_links.scss +466 -0
  49. package/src/scss/atlas-custom-properties/variables/_list-group.scss +488 -0
  50. package/src/scss/atlas-custom-properties/variables/_loaders.scss +226 -0
  51. package/src/scss/atlas-custom-properties/variables/_management-bar.scss +151 -0
  52. package/src/scss/atlas-custom-properties/variables/_menubar.scss +778 -0
  53. package/src/scss/atlas-custom-properties/variables/_modals.scss +645 -0
  54. package/src/scss/atlas-custom-properties/variables/_multi-step-nav.scss +354 -0
  55. package/src/scss/atlas-custom-properties/variables/_navbar.scss +198 -0
  56. package/src/scss/atlas-custom-properties/variables/_navigation-bar.scss +449 -0
  57. package/src/scss/atlas-custom-properties/variables/_navs.scss +553 -0
  58. package/src/scss/atlas-custom-properties/variables/_pagination.scss +1064 -0
  59. package/src/scss/atlas-custom-properties/variables/_panels.scss +554 -0
  60. package/src/scss/atlas-custom-properties/variables/_popovers.scss +533 -0
  61. package/src/scss/atlas-custom-properties/variables/_progress-bars.scss +149 -0
  62. package/src/scss/atlas-custom-properties/variables/_quick-action.scss +28 -0
  63. package/src/scss/atlas-custom-properties/variables/_range.scss +262 -0
  64. package/src/scss/atlas-custom-properties/variables/_reorder.scss +91 -0
  65. package/src/scss/atlas-custom-properties/variables/_resizer.scss +37 -0
  66. package/src/scss/atlas-custom-properties/variables/_sheets.scss +301 -0
  67. package/src/scss/atlas-custom-properties/variables/_side-navigation.scss +2 -0
  68. package/src/scss/atlas-custom-properties/variables/_sidebar.scss +547 -0
  69. package/src/scss/atlas-custom-properties/variables/_slideout.scss +369 -0
  70. package/src/scss/atlas-custom-properties/variables/_stickers.scss +576 -0
  71. package/src/scss/atlas-custom-properties/variables/_tables.scss +1292 -0
  72. package/src/scss/atlas-custom-properties/variables/_tbar.scss +570 -0
  73. package/src/scss/atlas-custom-properties/variables/_time.scss +133 -0
  74. package/src/scss/atlas-custom-properties/variables/_timelines.scss +50 -0
  75. package/src/scss/atlas-custom-properties/variables/_toggle-switch.scss +702 -0
  76. package/src/scss/atlas-custom-properties/variables/_tooltip.scss +321 -0
  77. package/src/scss/atlas-custom-properties/variables/_treeview.scss +367 -0
  78. package/src/scss/atlas-custom-properties/variables/_type.scss +195 -0
  79. package/src/scss/atlas-custom-properties/variables/_utilities.scss +933 -0
  80. package/src/scss/cadmin/components/_focus-ring.scss +74 -0
  81. package/src/scss/cadmin/components/_forms.scss +2 -0
  82. package/src/scss/cadmin/components/_menubar.scss +8 -0
  83. package/src/scss/cadmin/components/_resizer.scss +19 -4
  84. package/src/scss/cadmin/variables/_breadcrumbs.scss +3 -1
  85. package/src/scss/cadmin/variables/_forms.scss +3 -1
  86. package/src/scss/cadmin/variables/_reorder.scss +1 -0
  87. package/src/scss/cadmin/variables/_resizer.scss +16 -3
  88. package/src/scss/cadmin.scss +1 -0
  89. package/src/scss/components/_focus-ring.scss +64 -0
  90. package/src/scss/components/_forms.scss +2 -0
  91. package/src/scss/components/_keyboard-arrows-indicator.scss +82 -0
  92. package/src/scss/components/_menubar.scss +8 -0
  93. package/src/scss/components/_resizer.scss +15 -4
  94. package/src/scss/functions/_global-functions.scss +6 -4
  95. package/src/scss/functions/_lx-icons-generated.scss +10 -0
  96. package/src/scss/variables/_breadcrumbs.scss +4 -2
  97. package/src/scss/variables/_forms.scss +2 -0
  98. package/src/scss/variables/_globals.scss +8 -8
  99. package/src/scss/variables/_resizer.scss +16 -3
@@ -0,0 +1,1096 @@
1
+ $custom-forms-transition:
2
+ background-color 0.15s ease-in-out,
3
+ border-color 0.15s ease-in-out,
4
+ box-shadow 0.15s ease-in-out !default;
5
+
6
+ // Form File
7
+
8
+ $form-file: () !default;
9
+ $form-file: map-deep-merge(
10
+ (
11
+ border-radius: clay-enable-rounded($input-border-radius),
12
+ display: flex,
13
+ position: relative,
14
+ transition: clay-enable-transitions($input-transition),
15
+ focus-within: (
16
+ background-color: $input-focus-bg,
17
+ box-shadow: $input-focus-box-shadow,
18
+ outline: 0,
19
+ z-index: 1,
20
+ ),
21
+ ),
22
+ $form-file
23
+ );
24
+
25
+ // Custom Control Indicator
26
+
27
+ $custom-control-indicator-size: 1rem !default;
28
+
29
+ $custom-control-indicator-bg: $white !default;
30
+ $custom-control-indicator-bg-size: 8px 8px !default;
31
+ $custom-control-indicator-border-color: $gray-600 !default;
32
+ $custom-control-indicator-border-style: solid !default;
33
+ $custom-control-indicator-border-width: $border-width !default;
34
+ $custom-control-indicator-box-shadow: none !default;
35
+ $custom-control-indicator-position-top: 0px !default;
36
+
37
+ $custom-control-indicator-focus-border-color: $custom-control-indicator-border-color !default;
38
+ $custom-control-indicator-focus-box-shadow: $component-focus-box-shadow !default;
39
+
40
+ $custom-control-indicator-active-bg: $custom-control-indicator-bg !default;
41
+ $custom-control-indicator-active-border-color: $custom-control-indicator-border-color !default;
42
+ $custom-control-indicator-active-box-shadow: none !default;
43
+ $custom-control-indicator-active-color: $component-active-color !default;
44
+
45
+ $custom-control-indicator-disabled-bg: if(
46
+ variable-exists(input-disabled-bg),
47
+ $input-disabled-bg,
48
+ $gray-200
49
+ ) !default;
50
+ $custom-control-indicator-disabled-border-color: $secondary-l3 !default;
51
+ $custom-control-indicator-disabled-cursor: $disabled-cursor !default;
52
+
53
+ // Custom Control Indicator Checked
54
+
55
+ $custom-control-indicator-checked-bg: $component-active-bg !default;
56
+ $custom-control-indicator-checked-color: $component-active-color !default;
57
+ $custom-control-indicator-checked-border-color: $component-active-bg !default;
58
+ $custom-control-indicator-checked-box-shadow: none !default;
59
+
60
+ // @deprecated as of v2.2.1 use `$custom-control-indicator-checked-active-bg` instead
61
+
62
+ $custom-control-indicator-active-checked-bg: $component-active-bg !default;
63
+
64
+ $custom-control-indicator-checked-active-bg: $custom-control-indicator-active-checked-bg !default;
65
+
66
+ // @deprecated as of v2.2.1 use `$custom-control-indicator-checked-active-border-color` instead
67
+
68
+ $custom-control-indicator-active-checked-border-color: $custom-control-indicator-checked-active-bg !default;
69
+
70
+ $custom-control-indicator-checked-active-border-color: $custom-control-indicator-active-checked-border-color !default;
71
+
72
+ // @deprecated as of v2.2.1 use `$custom-control-indicator-checked-disabled-bg` instead
73
+
74
+ $custom-control-indicator-disabled-checked-bg: unquote(
75
+ 'hsl(from #{$component-active-bg} h s calc(l + 32.94))'
76
+ ) !default;
77
+
78
+ $custom-control-indicator-checked-disabled-bg: $custom-control-indicator-disabled-checked-bg !default;
79
+
80
+ // @deprecated as of v2.2.1 use `$custom-control-indicator-checked-disabled-border-color` instead
81
+
82
+ $custom-control-indicator-disabled-checked-border-color: $custom-control-indicator-disabled-checked-bg !default;
83
+
84
+ $custom-control-indicator-checked-disabled-border-color: $custom-control-indicator-disabled-checked-border-color !default;
85
+
86
+ // .custom-control
87
+
88
+ $custom-control-cursor: null !default;
89
+ $custom-control-gutter: 0.5rem !default;
90
+ $custom-control-spacer-x: 1rem !default;
91
+
92
+ // @deprecated after of v3.5.0 use the Sass map `$custom-control` instead
93
+
94
+ $custom-control-margin-bottom: 0.5rem !default;
95
+
96
+ // @deprecated after of v3.5.0 use the Sass map `$custom-control` instead
97
+
98
+ $custom-control-margin-top: null !default;
99
+
100
+ // @deprecated after of v3.5.0 use the Sass map `$custom-control` instead
101
+
102
+ $custom-control-min-height: 1.5rem !default;
103
+
104
+ // .custom-control-label
105
+
106
+ // @deprecated as of v2.19.0 use the Sass map `$custom-control-label` instead
107
+
108
+ $custom-control-description-cursor: if(
109
+ variable-exists(form-check-label-cursor),
110
+ $form-check-label-cursor,
111
+ $link-cursor
112
+ ) !default;
113
+
114
+ // @deprecated as of v2.19.0 use the Sass map `$custom-control-label` instead
115
+
116
+ $custom-control-description-font-size: if(
117
+ variable-exists(input-label-font-size),
118
+ $input-label-font-size,
119
+ 0.875rem
120
+ ) !default;
121
+
122
+ // @deprecated as of v2.19.0 use the Sass map `$custom-control-label` instead
123
+
124
+ $custom-control-description-font-weight: $font-weight-normal !default;
125
+
126
+ // @deprecated as of v2.19.0 use the Sass map `$custom-control-label` instead
127
+
128
+ $custom-control-description-line-height: $custom-control-min-height !default;
129
+
130
+ // @deprecated as of v2.19.0 use the Sass map `$custom-control-label-text` instead
131
+
132
+ $custom-control-description-padding-left: 0.5rem !default;
133
+
134
+ // @deprecated as of v2.19.0 use the Sass map `$custom-control-label-disabled` instead
135
+
136
+ $custom-control-description-disabled-cursor: $disabled-cursor !default;
137
+
138
+ // @deprecated as of v2.19.0 use the Sass map `$custom-control-label-text-small` instead
139
+
140
+ $custom-control-description-small-font-size: 100% !default;
141
+
142
+ $custom-control-label-color: null !default;
143
+
144
+ $custom-control-label: () !default;
145
+ $custom-control-label: map-deep-merge(
146
+ (
147
+ color: $custom-control-label-color,
148
+ cursor: $custom-control-description-cursor,
149
+ font-size: $custom-control-description-font-size,
150
+ font-weight: $custom-control-description-font-weight,
151
+ line-height: $custom-control-description-line-height,
152
+ margin-bottom: 0rem,
153
+ position: static,
154
+ vertical-align: top,
155
+
156
+ before: (
157
+ background-color: $custom-control-indicator-bg,
158
+ border-color: $custom-control-indicator-border-color,
159
+ border-style: $custom-control-indicator-border-style,
160
+ border-width: $custom-control-indicator-border-width,
161
+ box-shadow:
162
+ clay-enable-shadows($custom-control-indicator-box-shadow),
163
+ content: '',
164
+ display: block,
165
+ float: left,
166
+ font-size: $custom-control-indicator-size,
167
+ height: $custom-control-indicator-size,
168
+ left: 0rem,
169
+ position: relative,
170
+ top: 0.25rem,
171
+ transition: clay-enable-transitions($custom-forms-transition),
172
+ width: $custom-control-indicator-size,
173
+ ),
174
+
175
+ after: (
176
+ background: no-repeat 50% / #{$custom-control-indicator-bg-size},
177
+ border-radius: $rounded-circle-border-radius,
178
+ content: '',
179
+ display: block,
180
+ height: 1.5rem,
181
+ left: -0.25rem,
182
+ position: absolute,
183
+ top: $custom-control-indicator-position-top,
184
+ width: 1.5rem,
185
+ ),
186
+ ),
187
+ $custom-control-label
188
+ );
189
+
190
+ $custom-control-label-disabled-color: if(
191
+ variable-exists(input-label-disabled-color),
192
+ $input-label-disabled-color,
193
+ $gray-500
194
+ ) !default;
195
+
196
+ $custom-control-label-disabled: () !default;
197
+ $custom-control-label-disabled: map-deep-merge(
198
+ (
199
+ color: $custom-control-label-disabled-color,
200
+ cursor: $custom-control-description-disabled-cursor,
201
+
202
+ before: (
203
+ background-color: $custom-control-indicator-disabled-bg,
204
+ border-color: $custom-control-indicator-disabled-border-color,
205
+ box-shadow: none,
206
+ ),
207
+ ),
208
+ $custom-control-label-disabled
209
+ );
210
+
211
+ // label.custom-control-label
212
+
213
+ $label-custom-control-label: () !default;
214
+ $label-custom-control-label: map-deep-merge(
215
+ (
216
+ font-size: map-get($custom-control-label, font-size),
217
+ ),
218
+ $label-custom-control-label
219
+ );
220
+
221
+ // .custom-control-label-text
222
+
223
+ $custom-control-label-text: () !default;
224
+ $custom-control-label-text: map-deep-merge(
225
+ (
226
+ padding-left: $custom-control-description-padding-left,
227
+ ),
228
+ $custom-control-label-text
229
+ );
230
+
231
+ // .custom-control-label-text small, .custom-control-label-text .small
232
+
233
+ $custom-control-label-text-small: () !default;
234
+ $custom-control-label-text-small: map-merge(
235
+ (
236
+ font-size: $custom-control-description-small-font-size,
237
+ ),
238
+ $custom-control-label-text-small
239
+ );
240
+
241
+ $custom-control: () !default;
242
+ $custom-control: map-deep-merge(
243
+ (
244
+ cursor: $custom-control-cursor,
245
+ display: block,
246
+ line-height: 1,
247
+ margin-bottom: $custom-control-margin-bottom,
248
+ margin-top: $custom-control-margin-top,
249
+ min-height: $custom-control-min-height,
250
+ position: relative,
251
+ text-align: left,
252
+
253
+ only-child: (
254
+ margin-bottom: 0rem,
255
+ ),
256
+
257
+ label: (
258
+ cursor: map-get($custom-control-label, cursor),
259
+ display: inline,
260
+ font-size: $font-size-base,
261
+ margin-bottom: 0rem,
262
+ ),
263
+ ),
264
+ $custom-control
265
+ );
266
+
267
+ // .custom-control-input
268
+
269
+ $custom-control-input: () !default;
270
+ $custom-control-input: map-deep-merge(
271
+ (
272
+ cursor: $link-cursor,
273
+ height: 1.5rem,
274
+ left: -0.25rem,
275
+ opacity: 0,
276
+ position: absolute,
277
+ top: $custom-control-indicator-position-top,
278
+ width: 1.5rem,
279
+ z-index: 1,
280
+
281
+ focus: (
282
+ custom-control-label: (
283
+ before: (
284
+ border-color: $custom-control-indicator-focus-border-color,
285
+ ),
286
+
287
+ after: (
288
+ box-shadow: $custom-control-indicator-focus-box-shadow,
289
+ ),
290
+ ),
291
+ ),
292
+
293
+ active: (
294
+ custom-control-label: (
295
+ before: (
296
+ background-color: $custom-control-indicator-active-bg,
297
+ border-color: $custom-control-indicator-active-border-color,
298
+ box-shadow: $custom-control-indicator-active-box-shadow,
299
+ color: $custom-control-indicator-active-color,
300
+ ),
301
+ ),
302
+ ),
303
+
304
+ disabled: (
305
+ custom-control-label: $custom-control-label-disabled,
306
+ ),
307
+
308
+ readonly: (
309
+ custom-control-label: (
310
+ color: $gray-900,
311
+
312
+ before: (
313
+ background-color: $gray-200,
314
+ border-color: $secondary-l3,
315
+ ),
316
+ ),
317
+
318
+ disabled: (
319
+ custom-control-label: (
320
+ color: $custom-control-label-disabled-color,
321
+ ),
322
+ ),
323
+ ),
324
+
325
+ checked: (
326
+ custom-control-label: (
327
+ before: (
328
+ background-color: $custom-control-indicator-checked-bg,
329
+ border-color: $custom-control-indicator-checked-border-color,
330
+ box-shadow:
331
+ clay-enable-shadows(
332
+ $custom-control-indicator-checked-box-shadow
333
+ ),
334
+ color: $custom-control-indicator-checked-color,
335
+ ),
336
+ ),
337
+
338
+ active: (
339
+ custom-control-label: (
340
+ before: (
341
+ background-color:
342
+ $custom-control-indicator-checked-active-bg,
343
+ border-color:
344
+ $custom-control-indicator-checked-active-border-color,
345
+ ),
346
+ ),
347
+ ),
348
+
349
+ disabled: (
350
+ cursor: $custom-control-indicator-disabled-cursor,
351
+
352
+ custom-control-label: (
353
+ before: (
354
+ background-color: $custom-control-indicator-disabled-bg,
355
+ box-shadow: none,
356
+ ),
357
+ ),
358
+ ),
359
+
360
+ readonly: (
361
+ custom-control-label: (
362
+ before: (
363
+ background-color: $custom-control-indicator-bg,
364
+ border-color: $custom-control-indicator-border-color,
365
+ ),
366
+ ),
367
+ ),
368
+ ),
369
+ ),
370
+ $custom-control-input
371
+ );
372
+
373
+ // Custom Control Primary
374
+
375
+ $custom-control-primary-label-text: () !default;
376
+ $custom-control-primary-label-text: map-deep-merge(
377
+ (
378
+ font-weight: $font-weight-semi-bold,
379
+ ),
380
+ $custom-control-primary-label-text
381
+ );
382
+
383
+ // Custom Checkbox
384
+
385
+ $custom-checkbox-indicator-border-radius: 0.125rem !default;
386
+
387
+ $custom-checkbox-indicator-icon-checked: clay-icon(check-small, #fff) !default;
388
+ $custom-checkbox-indicator-icon-checked-bg-size: 1rem !default;
389
+
390
+ $custom-checkbox-indicator-indeterminate-bg: $component-active-bg !default;
391
+ $custom-checkbox-indicator-indeterminate-border-color: $custom-checkbox-indicator-indeterminate-bg !default;
392
+
393
+ $custom-control-indicator-indeterminate-border-color: $custom-control-indicator-checked-active-bg !default;
394
+
395
+ $custom-checkbox-indicator-indeterminate-box-shadow: none !default;
396
+ $custom-checkbox-indicator-indeterminate-color: $custom-control-indicator-checked-color !default;
397
+
398
+ $custom-checkbox-indicator-icon-indeterminate: clay-icon(hr, #fff) !default;
399
+ $custom-checkbox-indicator-icon-indeterminate-bg-size: 1rem !default;
400
+
401
+ $custom-checkbox: () !default;
402
+ $custom-checkbox: map-deep-merge(
403
+ (
404
+ custom-control-input: (
405
+ custom-control-label: (
406
+ before: (
407
+ border-radius:
408
+ clay-enable-rounded(
409
+ $custom-checkbox-indicator-border-radius
410
+ ),
411
+ ),
412
+ ),
413
+
414
+ checked: (
415
+ custom-control-label: (
416
+ before: (),
417
+ after: (
418
+ background-image:
419
+ $custom-checkbox-indicator-icon-checked,
420
+ background-size:
421
+ $custom-checkbox-indicator-icon-checked-bg-size,
422
+ ),
423
+ ),
424
+
425
+ disabled: (
426
+ custom-control-label: (
427
+ before: (
428
+ background-color:
429
+ $custom-control-indicator-checked-disabled-bg,
430
+ border-color:
431
+ $custom-control-indicator-checked-disabled-border-color,
432
+ ),
433
+ ),
434
+ ),
435
+
436
+ readonly: (
437
+ custom-control-label: (
438
+ before: (
439
+ background-color: $custom-control-indicator-bg,
440
+ border-color: $secondary-l2,
441
+ ),
442
+
443
+ after: (
444
+ background-image: clay-icon(check-small, #6b6c7e),
445
+ ),
446
+ ),
447
+
448
+ disabled: (
449
+ custom-control-label: (
450
+ before: (
451
+ opacity: 0.4,
452
+ ),
453
+
454
+ after: (
455
+ opacity: 0.4,
456
+ ),
457
+ ),
458
+ ),
459
+ ),
460
+ ),
461
+
462
+ indeterminate: (
463
+ custom-control-label: (
464
+ before: (
465
+ background-color:
466
+ $custom-checkbox-indicator-indeterminate-bg,
467
+ border-color:
468
+ $custom-control-indicator-indeterminate-border-color,
469
+ box-shadow:
470
+ $custom-checkbox-indicator-indeterminate-box-shadow,
471
+ ),
472
+
473
+ after: (
474
+ background-image:
475
+ $custom-checkbox-indicator-icon-indeterminate,
476
+ background-size:
477
+ $custom-checkbox-indicator-icon-indeterminate-bg-size,
478
+ ),
479
+ ),
480
+
481
+ disabled: (
482
+ custom-control-label: (
483
+ before: (
484
+ background-color:
485
+ $custom-control-indicator-checked-disabled-bg,
486
+ border-color:
487
+ $custom-control-indicator-checked-disabled-border-color,
488
+ ),
489
+ ),
490
+ ),
491
+
492
+ readonly: (
493
+ custom-control-label: (
494
+ before: (
495
+ background-color: $custom-control-indicator-bg,
496
+ border-color: $secondary-l2,
497
+ ),
498
+
499
+ after: (
500
+ background-image: clay-icon(hr, #6b6c7e),
501
+ ),
502
+ ),
503
+
504
+ disabled: (
505
+ custom-control-label: (
506
+ before: (
507
+ opacity: 0.4,
508
+ ),
509
+
510
+ after: (
511
+ opacity: 0.4,
512
+ ),
513
+ ),
514
+ ),
515
+ ),
516
+ ),
517
+ ),
518
+ ),
519
+ $custom-checkbox
520
+ );
521
+
522
+ // Custom Radio
523
+
524
+ $custom-radio-indicator-border-radius: 50% !default;
525
+
526
+ $custom-radio-indicator-icon-checked: clay-icon(circle, #fff) !default;
527
+ $custom-radio-indicator-icon-checked-bg-size: 0.5rem !default;
528
+
529
+ $custom-radio-indicator-disabled-border-color: $custom-control-indicator-disabled-bg !default;
530
+
531
+ // @deprecated as of v2.2.1 use `$custom-radio-indicator-checked-disabled-border-color` instead
532
+
533
+ $custom-radio-indicator-disabled-checked-border-color: $custom-control-indicator-disabled-checked-border-color !default;
534
+
535
+ $custom-radio-indicator-checked-disabled-border-color: $custom-radio-indicator-disabled-checked-border-color !default;
536
+
537
+ $custom-radio: () !default;
538
+ $custom-radio: map-deep-merge(
539
+ (
540
+ custom-control-input: (
541
+ custom-control-label: (
542
+ before: (
543
+ border-radius: $custom-radio-indicator-border-radius,
544
+ ),
545
+ ),
546
+
547
+ disabled: (
548
+ custom-control-label: (
549
+ before: (
550
+ border-color:
551
+ $custom-radio-indicator-disabled-border-color,
552
+ ),
553
+ ),
554
+ ),
555
+
556
+ checked: (
557
+ custom-control-label: (
558
+ after: (
559
+ background-image: $custom-radio-indicator-icon-checked,
560
+ background-size:
561
+ $custom-radio-indicator-icon-checked-bg-size,
562
+ ),
563
+ ),
564
+
565
+ disabled: (
566
+ custom-control-label: (
567
+ before: (
568
+ background-color:
569
+ $custom-control-indicator-checked-disabled-bg,
570
+ border-color:
571
+ $custom-radio-indicator-checked-disabled-border-color,
572
+ ),
573
+ ),
574
+ ),
575
+ ),
576
+ ),
577
+ ),
578
+ $custom-radio
579
+ );
580
+
581
+ $custom-control-outside: () !default;
582
+ $custom-control-outside: map-deep-merge(
583
+ (
584
+ label: (
585
+ display: inline-block,
586
+ padding-left:
587
+ calc(
588
+ #{$custom-control-indicator-size} + #{$custom-control-description-padding-left}
589
+ ),
590
+ ),
591
+
592
+ custom-control-input: (
593
+ custom-control-label: (
594
+ before: (
595
+ position: absolute,
596
+ ),
597
+ ),
598
+ ),
599
+
600
+ custom-control-label-text: (
601
+ padding-left: 0rem,
602
+ ),
603
+ ),
604
+ $custom-control-outside
605
+ );
606
+
607
+ // Custom Switch
608
+
609
+ // @deprecated as of v3.x with no replacement
610
+
611
+ $custom-switch-width: calc(#{$custom-control-indicator-size} * 1.75) !default;
612
+
613
+ // @deprecated as of v3.x with no replacement
614
+
615
+ $custom-switch-indicator-border-radius: calc(
616
+ #{$custom-control-indicator-size} * 0.5
617
+ ) !default;
618
+
619
+ // @deprecated as of v3.x with no replacement
620
+
621
+ $custom-switch-indicator-size: calc(
622
+ #{$custom-control-indicator-size} - (#{$custom-control-indicator-border-width} *
623
+ 4)
624
+ ) !default;
625
+
626
+ // Custom Select
627
+
628
+ // @deprecated as of v3.x with no replacement
629
+
630
+ $custom-select-bg: if(variable-exists(input-bg), $input-bg, $white) !default;
631
+
632
+ // @deprecated as of v3.x with no replacement
633
+
634
+ $custom-select-bg-size: 8px 10px !default;
635
+
636
+ // @deprecated as of v3.x with no replacement
637
+
638
+ $custom-select-border-color: if(
639
+ variable-exists(input-border-color),
640
+ $input-border-color,
641
+ $gray-400
642
+ ) !default;
643
+
644
+ // @deprecated as of v3.x with no replacement
645
+
646
+ $custom-select-border-radius: $border-radius !default;
647
+
648
+ // @deprecated as of v3.x with no replacement
649
+
650
+ $custom-select-border-width: if(
651
+ variable-exists(input-border-width),
652
+ $input-border-width,
653
+ 0.0625rem
654
+ ) !default;
655
+
656
+ // @deprecated as of v3.x with no replacement
657
+
658
+ $custom-select-box-shadow: inset 0 1px 2px
659
+ unquote('hsl(from #{$black} h s l / 0.075)') !default;
660
+
661
+ // @deprecated as of v3.x with no replacement
662
+
663
+ $custom-select-color: if(
664
+ variable-exists(input-color),
665
+ $input-color,
666
+ $gray-700
667
+ ) !default;
668
+
669
+ // @deprecated as of v3.x with no replacement
670
+
671
+ $custom-select-font-family: if(
672
+ variable-exists(input-font-family),
673
+ $input-font-family,
674
+ null
675
+ ) !default;
676
+
677
+ // @deprecated as of v3.x with no replacement
678
+
679
+ $custom-select-font-size: if(
680
+ variable-exists(input-font-size),
681
+ $input-font-size,
682
+ $font-size-base
683
+ ) !default;
684
+
685
+ // @deprecated as of v3.x with no replacement
686
+
687
+ $custom-select-font-weight: if(
688
+ variable-exists(input-font-weight),
689
+ $input-font-weight,
690
+ $font-weight-base
691
+ ) !default;
692
+
693
+ // @deprecated as of v3.x with no replacement
694
+
695
+ $custom-select-height: if(
696
+ variable-exists(input-height),
697
+ $input-height,
698
+ 2.375rem
699
+ ) !default;
700
+
701
+ // @deprecated as of v3.x with no replacement
702
+
703
+ $custom-select-indicator-padding: 1rem !default;
704
+
705
+ // @deprecated as of v3.x with no replacement
706
+
707
+ $custom-select-line-height: if(
708
+ variable-exists(input-line-height),
709
+ $input-line-height,
710
+ $line-height-base
711
+ ) !default;
712
+
713
+ // @deprecated as of v3.x with no replacement
714
+
715
+ $custom-select-padding-x: if(
716
+ variable-exists(input-padding-x),
717
+ $input-padding-x,
718
+ 0.75rem
719
+ ) !default;
720
+
721
+ // @deprecated as of v3.x with no replacement
722
+
723
+ $custom-select-padding-y: if(
724
+ variable-exists(input-padding-y),
725
+ $input-padding-y,
726
+ 0.375rem
727
+ ) !default;
728
+
729
+ // @deprecated as of v3.x with no replacement
730
+
731
+ $custom-select-indicator-color: $gray-800 !default;
732
+
733
+ // @deprecated as of v3.x with no replacement
734
+
735
+ $custom-select-indicator: clay-svg-url(
736
+ "<svg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'><path fill='#{$custom-select-indicator-color}' d='M2 0L0 2h4zm0 5L0 3h4z'/></svg>"
737
+ ) !default;
738
+
739
+ // @deprecated as of v3.x with no replacement
740
+
741
+ $custom-select-background: $custom-select-indicator no-repeat right
742
+ $custom-select-padding-x center / $custom-select-bg-size !default;
743
+
744
+ // Custom Select Focus
745
+
746
+ // @deprecated as of v3.x with no replacement
747
+
748
+ $custom-select-focus-border-color: if(
749
+ variable-exists(input-focus-border-color),
750
+ $input-focus-border-color,
751
+ unquote('hsl(from #{$component-active-bg} h s calc(l + 25))')
752
+ ) !default;
753
+
754
+ // @deprecated as of v3.x with no replacement
755
+
756
+ $custom-select-focus-width: if(
757
+ variable-exists(input-focus-width),
758
+ $input-focus-width,
759
+ 0.2rem
760
+ ) !default;
761
+
762
+ // @deprecated as of v3.x with no replacement
763
+
764
+ $custom-select-focus-box-shadow: 0 0 0 $custom-select-focus-width
765
+ $custom-select-focus-border-color !default;
766
+
767
+ // Custom Select Disabled
768
+
769
+ // @deprecated as of v3.x with no replacement
770
+
771
+ $custom-select-disabled-bg: $gray-200 !default;
772
+
773
+ // @deprecated as of v3.x with no replacement
774
+
775
+ $custom-select-disabled-color: $gray-600 !default;
776
+
777
+ // Custom Select Feedback
778
+
779
+ // @deprecated as of v3.x with no replacement
780
+
781
+ $custom-select-feedback-icon-padding-right: calc(
782
+ (1em * 0.75) + (2 * #{$custom-select-padding-y} * 0.75) + #{$custom-select-padding-x} +
783
+ #{$custom-select-indicator-padding}
784
+ ) !default;
785
+
786
+ // @deprecated as of v3.x with no replacement
787
+
788
+ $custom-select-feedback-icon-position: center right
789
+ calc(#{$custom-select-padding-x} + #{$custom-select-indicator-padding}) !default;
790
+
791
+ // @deprecated as of v3.x with no replacement
792
+
793
+ $custom-select-feedback-icon-size: 18px 18px !default;
794
+
795
+ // Custom Select Lg
796
+
797
+ // @deprecated as of v3.x with no replacement
798
+
799
+ $custom-select-font-size-lg: if(
800
+ variable-exists(input-font-size-lg),
801
+ $input-font-size-lg,
802
+ $font-size-lg
803
+ ) !default;
804
+
805
+ // @deprecated as of v3.x with no replacement
806
+
807
+ $custom-select-height-lg: if(
808
+ variable-exists(input-height-lg),
809
+ $input-height-lg,
810
+ 3rem
811
+ ) !default;
812
+
813
+ // @deprecated as of v3.x with no replacement
814
+
815
+ $custom-select-padding-x-lg: if(
816
+ variable-exists(input-padding-x-lg),
817
+ $input-padding-x-lg,
818
+ 1rem
819
+ ) !default;
820
+
821
+ // @deprecated as of v3.x with no replacement
822
+
823
+ $custom-select-padding-y-lg: if(
824
+ variable-exists(input-padding-y-lg),
825
+ $input-padding-y-lg,
826
+ 0.5rem
827
+ ) !default;
828
+
829
+ // Custom Select Sm
830
+
831
+ // @deprecated as of v3.x with no replacement
832
+
833
+ $custom-select-font-size-sm: if(
834
+ variable-exists(input-font-size-sm),
835
+ $input-font-size-sm,
836
+ $font-size-sm
837
+ ) !default;
838
+
839
+ // @deprecated as of v3.x with no replacement
840
+
841
+ $custom-select-height-sm: if(
842
+ variable-exists(input-height-sm),
843
+ $input-height-sm,
844
+ 1.9375rem
845
+ ) !default;
846
+
847
+ // @deprecated as of v3.x with no replacement
848
+
849
+ $custom-select-padding-x-sm: if(
850
+ variable-exists(input-padding-x-sm),
851
+ $input-padding-x-sm,
852
+ 0.5rem
853
+ ) !default;
854
+
855
+ // @deprecated as of v3.x with no replacement
856
+
857
+ $custom-select-padding-y-sm: if(
858
+ variable-exists(input-padding-y-sm),
859
+ $input-padding-y-sm,
860
+ 0.25rem
861
+ ) !default;
862
+
863
+ // Custom Range
864
+
865
+ // @deprecated as of v3.x with no replacement
866
+
867
+ $custom-range-track-bg: $gray-300 !default;
868
+
869
+ // @deprecated as of v3.x with no replacement
870
+
871
+ $custom-range-track-border-radius: 1rem !default;
872
+
873
+ // @deprecated as of v3.x with no replacement
874
+
875
+ $custom-range-track-box-shadow: inset 0 0.25rem 0.25rem
876
+ unquote('hsl(from #{$black} h s l / 0.1)') !default;
877
+
878
+ // @deprecated as of v3.x with no replacement
879
+
880
+ $custom-range-track-cursor: pointer !default;
881
+
882
+ // @deprecated as of v3.x with no replacement
883
+
884
+ $custom-range-track-height: 0.5rem !default;
885
+
886
+ // @deprecated as of v3.x with no replacement
887
+
888
+ $custom-range-track-width: 100% !default;
889
+
890
+ // @deprecated as of v3.x with no replacement
891
+
892
+ $custom-range-thumb-bg: $component-active-bg !default;
893
+
894
+ // @deprecated as of v3.x with no replacement
895
+
896
+ $custom-range-thumb-border: 0px !default;
897
+
898
+ // @deprecated as of v3.x with no replacement
899
+
900
+ $custom-range-thumb-border-radius: 1rem !default;
901
+
902
+ // @deprecated as of v3.x with no replacement
903
+
904
+ $custom-range-thumb-box-shadow: 0 0.1rem 0.25rem
905
+ unquote('hsl(from #{$black} h s l / 0.1)') !default;
906
+
907
+ // @deprecated as of v3.x with no replacement
908
+
909
+ $custom-range-thumb-width: 1rem !default;
910
+
911
+ // @deprecated as of v3.x with no replacement
912
+
913
+ $custom-range-thumb-height: $custom-range-thumb-width !default;
914
+
915
+ // @deprecated as of v3.x with no replacement
916
+
917
+ $custom-range-thumb-focus-box-shadow:
918
+ 0 0 0 1px $body-bg,
919
+ if(
920
+ variable-exists(input-focus-box-shadow),
921
+ $input-focus-box-shadow,
922
+ $component-focus-box-shadow
923
+ ) !default;
924
+
925
+ // @deprecated as of v3.x with no replacement
926
+
927
+ $custom-range-thumb-focus-box-shadow-width: if(
928
+ variable-exists(input-focus-width),
929
+ $input-focus-width,
930
+ 0.2rem
931
+ ) !default;
932
+
933
+ // @deprecated as of v3.x with no replacement
934
+
935
+ $custom-range-thumb-active-bg: unquote(
936
+ 'hsl(from #{$component-active-bg} h s calc(l + 35))'
937
+ ) !default;
938
+
939
+ // @deprecated as of v3.x with no replacement
940
+
941
+ $custom-range-thumb-disabled-bg: $gray-500 !default;
942
+
943
+ // Custom File
944
+
945
+ // @deprecated as of v3.x with no replacement
946
+
947
+ $custom-file-bg: if(variable-exists(input-bg), $input-bg, $white) !default;
948
+
949
+ // @deprecated as of v3.x with no replacement
950
+
951
+ $custom-file-border-color: if(
952
+ variable-exists(input-border-color),
953
+ $input-border-color,
954
+ $gray-400
955
+ ) !default;
956
+
957
+ // @deprecated as of v3.x with no replacement
958
+
959
+ $custom-file-border-width: if(
960
+ variable-exists(input-border-width),
961
+ $input-border-width,
962
+ 0.0625rem
963
+ ) !default;
964
+
965
+ // @deprecated as of v3.x with no replacement
966
+
967
+ $custom-file-border-radius: if(
968
+ variable-exists(input-border-radius),
969
+ $input-border-radius,
970
+ $border-radius
971
+ ) !default;
972
+
973
+ // @deprecated as of v3.x with no replacement
974
+
975
+ $custom-file-box-shadow: if(
976
+ variable-exists(input-box-shadow),
977
+ $input-box-shadow,
978
+ inset 0 1px 1px unquote('hsl(from #{$black} h s l / 0.075)')
979
+ ) !default;
980
+
981
+ // @deprecated as of v3.x with no replacement
982
+
983
+ $custom-file-color: if(
984
+ variable-exists(input-color),
985
+ $input-color,
986
+ $gray-700
987
+ ) !default;
988
+
989
+ // @deprecated as of v3.x with no replacement
990
+
991
+ $custom-file-font-family: if(
992
+ variable-exists(input-font-family),
993
+ $input-font-family,
994
+ null
995
+ ) !default;
996
+
997
+ // @deprecated as of v3.x with no replacement
998
+
999
+ $custom-file-font-weight: if(
1000
+ variable-exists(input-font-weight),
1001
+ $input-font-weight,
1002
+ $font-weight-base
1003
+ ) !default;
1004
+
1005
+ // @deprecated as of v3.x with no replacement
1006
+
1007
+ $custom-file-height-inner: 36px !default;
1008
+
1009
+ // @deprecated as of v3.x with no replacement
1010
+
1011
+ $custom-file-height: if(
1012
+ variable-exists(input-height),
1013
+ $input-height,
1014
+ 2.375rem
1015
+ ) !default;
1016
+
1017
+ // @deprecated as of v3.x with no replacement
1018
+
1019
+ $custom-file-line-height: if(
1020
+ variable-exists(input-line-height),
1021
+ $input-line-height,
1022
+ $line-height-base
1023
+ ) !default;
1024
+
1025
+ // @deprecated as of v3.x with no replacement
1026
+
1027
+ $custom-file-padding-x: if(
1028
+ variable-exists(input-padding-x),
1029
+ $input-padding-x,
1030
+ 0.75rem
1031
+ ) !default;
1032
+
1033
+ // @deprecated as of v3.x with no replacement
1034
+
1035
+ $custom-file-padding-y: if(
1036
+ variable-exists(input-padding-y),
1037
+ $input-padding-y,
1038
+ 0.375rem
1039
+ ) !default;
1040
+
1041
+ // @deprecated as of v3.x with no replacement
1042
+
1043
+ $custom-file-focus-border-color: if(
1044
+ variable-exists(input-focus-border-color),
1045
+ $input-focus-border-color,
1046
+ unquote('hsl(from #{$component-active-bg} h s calc(l + 25))')
1047
+ ) !default;
1048
+
1049
+ // @deprecated as of v3.x with no replacement
1050
+
1051
+ $custom-file-focus-box-shadow: if(
1052
+ variable-exists(input-focus-box-shadow),
1053
+ $input-focus-box-shadow,
1054
+ $component-focus-box-shadow
1055
+ ) !default;
1056
+
1057
+ // @deprecated as of v3.x with no replacement
1058
+
1059
+ $custom-file-disabled-bg: if(
1060
+ variable-exists(input-disabled-bg),
1061
+ $input-disabled-bg,
1062
+ $gray-200
1063
+ ) !default;
1064
+
1065
+ // @deprecated as of v3.x with no replacement
1066
+
1067
+ $custom-file-button-bg: if(
1068
+ variable-exists(input-group-addon-bg),
1069
+ $input-group-addon-bg,
1070
+ $gray-200
1071
+ ) !default;
1072
+
1073
+ // @deprecated as of v3.x with no replacement
1074
+
1075
+ $custom-file-button-color: $custom-file-color !default;
1076
+
1077
+ // .custom-file-label::after
1078
+
1079
+ // @deprecated as of v3.x with no replacement. See https://issues.liferay.com/browse/LPS-147457 and https://github.com/sass/sass/issues/1395
1080
+
1081
+ $custom-file-label-after-content: unquote("'\\FEFF Browse'") !default;
1082
+
1083
+ $custom-file-text: () !default;
1084
+
1085
+ // @deprecated as of v3.x with no replacement. See https://issues.liferay.com/browse/LPS-147457 and https://github.com/sass/sass/issues/1395
1086
+
1087
+ $custom-file-text: map-deep-merge(
1088
+ (
1089
+ en: unquote("'\\FEFF Browse'"),
1090
+ ),
1091
+ $custom-file-text
1092
+ );
1093
+
1094
+ // @deprecated as of v3.x with no replacement. See https://issues.liferay.com/browse/LPS-147457.
1095
+
1096
+ $custom-file-text-data-browse: unquote("'\\FEFF' attr(data-browse)") !default;