@clayui/css 3.76.0 → 3.81.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.
- package/lib/css/atlas.css +164 -495
- package/lib/css/atlas.css.map +1 -1
- package/lib/css/base.css +141 -454
- package/lib/css/base.css.map +1 -1
- package/lib/css/cadmin.css +129 -1395
- package/lib/css/cadmin.css.map +1 -1
- package/lib/images/icons/icons.svg +1 -1
- package/package.json +2 -2
- package/src/scss/_license-text.scss +1 -1
- package/src/scss/atlas/variables/_alerts.scss +1 -1
- package/src/scss/atlas/variables/_custom-forms.scss +16 -4
- package/src/scss/atlas/variables/_date-picker.scss +7 -2
- package/src/scss/atlas/variables/_links.scss +19 -2
- package/src/scss/atlas/variables/_navigation-bar.scss +0 -1
- package/src/scss/atlas/variables/_range.scss +1 -1
- package/src/scss/atlas/variables/_time.scss +1 -1
- package/src/scss/atlas/variables/_toggle-switch.scss +1 -1
- package/src/scss/cadmin/components/_alerts.scss +1 -1
- package/src/scss/cadmin/components/_clay-color.scss +15 -20
- package/src/scss/cadmin/components/_custom-forms.scss +32 -4
- package/src/scss/cadmin/components/_date-picker.scss +4 -4
- package/src/scss/cadmin/components/_forms.scss +5 -7
- package/src/scss/cadmin/components/_list-group.scss +2 -2
- package/src/scss/cadmin/components/_modals.scss +2 -4
- package/src/scss/cadmin/components/_range.scss +3 -3
- package/src/scss/cadmin/components/_time.scss +3 -3
- package/src/scss/cadmin/variables/_alerts.scss +1 -1
- package/src/scss/cadmin/variables/_clay-color.scss +24 -13
- package/src/scss/cadmin/variables/_custom-forms.scss +2 -2
- package/src/scss/cadmin/variables/_date-picker.scss +4 -4
- package/src/scss/cadmin/variables/_forms.scss +5 -5
- package/src/scss/cadmin/variables/_list-group.scss +2 -2
- package/src/scss/cadmin/variables/_management-bar.scss +529 -0
- package/src/scss/cadmin/variables/_navigation-bar.scss +246 -2
- package/src/scss/cadmin/variables/_range.scss +8 -4
- package/src/scss/cadmin/variables/_time.scss +5 -4
- package/src/scss/components/_alerts.scss +6 -2
- package/src/scss/components/_buttons.scss +5 -1
- package/src/scss/components/_clay-color.scss +15 -20
- package/src/scss/components/_custom-forms.scss +62 -10
- package/src/scss/components/_date-picker.scss +4 -4
- package/src/scss/components/_dropdowns.scss +5 -1
- package/src/scss/components/_forms.scss +5 -5
- package/src/scss/components/_list-group.scss +2 -2
- package/src/scss/components/_modals.scss +2 -2
- package/src/scss/components/_panels.scss +56 -12
- package/src/scss/components/_range.scss +3 -3
- package/src/scss/components/_sheets.scss +3 -1
- package/src/scss/components/_time.scss +3 -3
- package/src/scss/components/_timelines.scss +7 -1
- package/src/scss/mixins/_navbar.scss +256 -247
- package/src/scss/variables/_alerts.scss +1 -1
- package/src/scss/variables/_application-bar.scss +32 -6
- package/src/scss/variables/_clay-color.scss +41 -16
- package/src/scss/variables/_custom-forms.scss +225 -48
- package/src/scss/variables/_date-picker.scss +6 -6
- package/src/scss/variables/_drilldown.scss +5 -1
- package/src/scss/variables/_forms.scss +5 -5
- package/src/scss/variables/_links.scss +10 -2
- package/src/scss/variables/_list-group.scss +2 -2
- package/src/scss/variables/_management-bar.scss +56 -10
- package/src/scss/variables/_multi-step-nav.scss +5 -1
- package/src/scss/variables/_navigation-bar.scss +56 -9
- package/src/scss/variables/_range.scss +6 -5
- package/src/scss/variables/_reorder.scss +18 -5
- package/src/scss/variables/_sidebar.scss +25 -5
- package/src/scss/variables/_stickers.scss +1 -1
- package/src/scss/variables/_tbar.scss +6 -1
- package/src/scss/variables/_time.scss +5 -4
- package/src/scss/variables/_toggle-switch.scss +22 -10
|
@@ -1,10 +1,28 @@
|
|
|
1
|
+
$clay-color-border-color: if(
|
|
2
|
+
variable-exists(input-border-color),
|
|
3
|
+
$input-border-color,
|
|
4
|
+
$gray-400
|
|
5
|
+
) !default;
|
|
6
|
+
$clay-color-padding-x: if(
|
|
7
|
+
variable-exists(input-padding-x),
|
|
8
|
+
$input-padding-x,
|
|
9
|
+
0.75rem
|
|
10
|
+
) !default;
|
|
11
|
+
|
|
12
|
+
$clay-color-sm-padding-x: if(
|
|
13
|
+
variable-exists(input-padding-x-sm),
|
|
14
|
+
$input-padding-x-sm,
|
|
15
|
+
0.5rem
|
|
16
|
+
) !default;
|
|
17
|
+
|
|
1
18
|
// Clay Color Input Group Text (.clay-color > .input-group-item > .input-group-text)
|
|
2
19
|
|
|
3
20
|
$clay-color-input-group-text: () !default;
|
|
4
|
-
$clay-color-input-group-text: map-
|
|
21
|
+
$clay-color-input-group-text: map-merge(
|
|
5
22
|
(
|
|
6
|
-
|
|
7
|
-
|
|
23
|
+
background-color:
|
|
24
|
+
setter(map-get($clay-color-input-group-text, bg), $white),
|
|
25
|
+
border-color: $clay-color-border-color,
|
|
8
26
|
padding-left: 0,
|
|
9
27
|
padding-right: 0,
|
|
10
28
|
),
|
|
@@ -18,11 +36,11 @@ $clay-color-input-group-input: () !default;
|
|
|
18
36
|
// Clay Color Input Group Inset Item Before (.clay-color > .input-group-item > .input-group-inset-item-before)
|
|
19
37
|
|
|
20
38
|
$clay-color-input-group-inset-item-before: () !default;
|
|
21
|
-
$clay-color-input-group-inset-item-before: map-
|
|
39
|
+
$clay-color-input-group-inset-item-before: map-merge(
|
|
22
40
|
(
|
|
23
41
|
color: $gray-600,
|
|
24
42
|
font-size: inherit,
|
|
25
|
-
padding-left: $
|
|
43
|
+
padding-left: $clay-color-padding-x,
|
|
26
44
|
padding-right: 0.5rem,
|
|
27
45
|
),
|
|
28
46
|
$clay-color-input-group-inset-item-before
|
|
@@ -47,7 +65,7 @@ $clay-color-dropdown-menu: map-deep-merge(
|
|
|
47
65
|
// Dropdown Menu Form Group
|
|
48
66
|
|
|
49
67
|
$clay-color-dropdown-menu-form-group: () !default;
|
|
50
|
-
$clay-color-dropdown-menu-form-group: map-
|
|
68
|
+
$clay-color-dropdown-menu-form-group: map-merge(
|
|
51
69
|
(
|
|
52
70
|
margin-bottom: 1rem,
|
|
53
71
|
),
|
|
@@ -76,7 +94,7 @@ $clay-color-dropdown-menu-input-group-inset-item-before: map-deep-merge(
|
|
|
76
94
|
(
|
|
77
95
|
color: $gray-600,
|
|
78
96
|
font-size: 0.875rem,
|
|
79
|
-
padding-left: $
|
|
97
|
+
padding-left: $clay-color-sm-padding-x,
|
|
80
98
|
padding-right: 0.5rem,
|
|
81
99
|
),
|
|
82
100
|
$clay-color-dropdown-menu-input-group-inset-item-before
|
|
@@ -102,7 +120,7 @@ $clay-color-dropdown-menu-component-action: map-deep-merge(
|
|
|
102
120
|
// Clay Color Swatch
|
|
103
121
|
|
|
104
122
|
$clay-color-swatch: () !default;
|
|
105
|
-
$clay-color-swatch: map-
|
|
123
|
+
$clay-color-swatch: map-merge(
|
|
106
124
|
(
|
|
107
125
|
display: flex,
|
|
108
126
|
flex-wrap: wrap,
|
|
@@ -179,7 +197,7 @@ $clay-color-pointer: map-deep-merge(
|
|
|
179
197
|
// Clay Color Header
|
|
180
198
|
|
|
181
199
|
$clay-color-header: () !default;
|
|
182
|
-
$clay-color-header: map-
|
|
200
|
+
$clay-color-header: map-merge(
|
|
183
201
|
(
|
|
184
202
|
display: flex,
|
|
185
203
|
justify-content: space-between,
|
|
@@ -206,7 +224,7 @@ $clay-color-header-component-title: map-deep-merge(
|
|
|
206
224
|
// Clay Color Footer
|
|
207
225
|
|
|
208
226
|
$clay-color-footer: () !default;
|
|
209
|
-
$clay-color-footer: map-
|
|
227
|
+
$clay-color-footer: map-merge(
|
|
210
228
|
(
|
|
211
229
|
margin-bottom: 1rem,
|
|
212
230
|
),
|
|
@@ -216,7 +234,7 @@ $clay-color-footer: map-deep-merge(
|
|
|
216
234
|
// Clay Color Map
|
|
217
235
|
|
|
218
236
|
$clay-color-map-group: () !default;
|
|
219
|
-
$clay-color-map-group: map-
|
|
237
|
+
$clay-color-map-group: map-merge(
|
|
220
238
|
(
|
|
221
239
|
display: flex,
|
|
222
240
|
margin-top: 0.5rem,
|
|
@@ -225,7 +243,7 @@ $clay-color-map-group: map-deep-merge(
|
|
|
225
243
|
);
|
|
226
244
|
|
|
227
245
|
$clay-color-map: () !default;
|
|
228
|
-
$clay-color-map: map-
|
|
246
|
+
$clay-color-map: map-merge(
|
|
229
247
|
(
|
|
230
248
|
flex-shrink: 0,
|
|
231
249
|
height: 128px,
|
|
@@ -240,6 +258,13 @@ $clay-color-map: map-deep-merge(
|
|
|
240
258
|
);
|
|
241
259
|
|
|
242
260
|
$clay-color-map-hsb: () !default;
|
|
261
|
+
$clay-color-map-hsb: map-merge(
|
|
262
|
+
(
|
|
263
|
+
background-image: #{linear-gradient(to top, #000, rgba(0, 0, 0, 0)),
|
|
264
|
+
linear-gradient(to right, #fff, rgba(255, 255, 255, 0))},
|
|
265
|
+
),
|
|
266
|
+
$clay-color-map-hsb
|
|
267
|
+
);
|
|
243
268
|
|
|
244
269
|
// Clay Color Map Pointer
|
|
245
270
|
|
|
@@ -248,7 +273,7 @@ $clay-color-map-pointer: () !default;
|
|
|
248
273
|
// Clay Color Map Values
|
|
249
274
|
|
|
250
275
|
$clay-color-map-values: () !default;
|
|
251
|
-
$clay-color-map-values: map-
|
|
276
|
+
$clay-color-map-values: map-merge(
|
|
252
277
|
(
|
|
253
278
|
flex-grow: 1,
|
|
254
279
|
flex-shrink: 1,
|
|
@@ -274,7 +299,7 @@ $clay-color-map-values-input: map-deep-merge(
|
|
|
274
299
|
// Clay Color Map Values Input Group Inset Item Before (.clay-color-map-values .input-group-inset-item-before)
|
|
275
300
|
|
|
276
301
|
$clay-color-map-values-input-group-inset-item-before: () !default;
|
|
277
|
-
$clay-color-map-values-input-group-inset-item-before: map-
|
|
302
|
+
$clay-color-map-values-input-group-inset-item-before: map-merge(
|
|
278
303
|
(
|
|
279
304
|
font-weight: $font-weight-semi-bold,
|
|
280
305
|
padding-left: 10%,
|
|
@@ -287,7 +312,7 @@ $clay-color-map-values-input-group-inset-item-before: map-deep-merge(
|
|
|
287
312
|
// Clay Color Range
|
|
288
313
|
|
|
289
314
|
$clay-color-range: () !default;
|
|
290
|
-
$clay-color-range: map-
|
|
315
|
+
$clay-color-range: map-merge(
|
|
291
316
|
(
|
|
292
317
|
border-radius: 100px,
|
|
293
318
|
height: 0.5rem,
|
|
@@ -314,7 +339,7 @@ $clay-color-range-pointer: map-deep-merge(
|
|
|
314
339
|
$clay-color-sm-input-group-inset-item-before: () !default;
|
|
315
340
|
$clay-color-sm-input-group-inset-item-before: map-merge(
|
|
316
341
|
(
|
|
317
|
-
padding-left: $
|
|
342
|
+
padding-left: $clay-color-sm-padding-x,
|
|
318
343
|
),
|
|
319
344
|
$clay-color-sm-input-group-inset-item-before
|
|
320
345
|
);
|
|
@@ -9,16 +9,32 @@ $custom-forms-transition: background-color 0.15s ease-in-out,
|
|
|
9
9
|
|
|
10
10
|
$custom-control-indicator-size: 1rem !default;
|
|
11
11
|
|
|
12
|
-
$custom-control-indicator-bg:
|
|
12
|
+
$custom-control-indicator-bg: if(
|
|
13
|
+
variable-exists(input-bg),
|
|
14
|
+
$input-bg,
|
|
15
|
+
$white
|
|
16
|
+
) !default;
|
|
13
17
|
$custom-control-indicator-bg-size: 50% 50% !default;
|
|
14
18
|
$custom-control-indicator-border-color: $gray-500 !default;
|
|
15
19
|
$custom-control-indicator-border-style: solid !default;
|
|
16
20
|
$custom-control-indicator-border-width: $border-width !default;
|
|
17
|
-
$custom-control-indicator-box-shadow:
|
|
21
|
+
$custom-control-indicator-box-shadow: if(
|
|
22
|
+
variable-exists(input-box-shadow),
|
|
23
|
+
$input-box-shadow,
|
|
24
|
+
inset 0 1px 1px rgba($black, 0.075)
|
|
25
|
+
) !default;
|
|
18
26
|
$custom-control-indicator-position-top: 0.25rem !default;
|
|
19
27
|
|
|
20
|
-
$custom-control-indicator-focus-border-color:
|
|
21
|
-
|
|
28
|
+
$custom-control-indicator-focus-border-color: if(
|
|
29
|
+
variable-exists(input-focus-border-color),
|
|
30
|
+
$input-focus-border-color,
|
|
31
|
+
clay-lighten($component-active-bg, 25%)
|
|
32
|
+
) !default;
|
|
33
|
+
$custom-control-indicator-focus-box-shadow: if(
|
|
34
|
+
variable-exists(input-focus-box-shadow),
|
|
35
|
+
$input-focus-box-shadow,
|
|
36
|
+
$component-focus-box-shadow
|
|
37
|
+
) !default;
|
|
22
38
|
|
|
23
39
|
$custom-control-indicator-active-bg: clay-lighten(
|
|
24
40
|
$component-active-bg,
|
|
@@ -28,7 +44,11 @@ $custom-control-indicator-active-box-shadow: none !default;
|
|
|
28
44
|
$custom-control-indicator-active-border-color: $custom-control-indicator-active-bg !default;
|
|
29
45
|
$custom-control-indicator-active-color: $component-active-color !default;
|
|
30
46
|
|
|
31
|
-
$custom-control-indicator-disabled-bg:
|
|
47
|
+
$custom-control-indicator-disabled-bg: if(
|
|
48
|
+
variable-exists(input-disabled-bg),
|
|
49
|
+
$input-disabled-bg,
|
|
50
|
+
$gray-200
|
|
51
|
+
) !default;
|
|
32
52
|
$custom-control-indicator-disabled-border-color: $gray-400 !default;
|
|
33
53
|
$custom-control-indicator-disabled-cursor: $disabled-cursor !default;
|
|
34
54
|
|
|
@@ -82,7 +102,11 @@ $custom-control-min-height: $custom-control-indicator-size +
|
|
|
82
102
|
|
|
83
103
|
/// @deprecated as of v2.19.0 use the Sass map `$custom-control-label` instead
|
|
84
104
|
|
|
85
|
-
$custom-control-description-cursor:
|
|
105
|
+
$custom-control-description-cursor: if(
|
|
106
|
+
variable-exists(form-check-label-cursor),
|
|
107
|
+
$form-check-label-cursor,
|
|
108
|
+
$link-cursor
|
|
109
|
+
) !default;
|
|
86
110
|
|
|
87
111
|
/// @deprecated as of v2.19.0 use the Sass map `$custom-control-label` instead
|
|
88
112
|
|
|
@@ -192,7 +216,7 @@ $custom-control-label-text: map-deep-merge(
|
|
|
192
216
|
// .custom-control-label-text small, .custom-control-label-text .small
|
|
193
217
|
|
|
194
218
|
$custom-control-label-text-small: () !default;
|
|
195
|
-
$custom-control-label-text-small: map-
|
|
219
|
+
$custom-control-label-text-small: map-merge(
|
|
196
220
|
(
|
|
197
221
|
font-size: $custom-control-description-small-font-size,
|
|
198
222
|
),
|
|
@@ -227,7 +251,12 @@ $custom-control: map-deep-merge(
|
|
|
227
251
|
$custom-control-input: () !default;
|
|
228
252
|
$custom-control-input: map-deep-merge(
|
|
229
253
|
(
|
|
230
|
-
cursor:
|
|
254
|
+
cursor:
|
|
255
|
+
if(
|
|
256
|
+
variable-exists(form-check-input-cursor),
|
|
257
|
+
$form-check-input-cursor,
|
|
258
|
+
$link-cursor
|
|
259
|
+
),
|
|
231
260
|
height: $custom-control-indicator-size,
|
|
232
261
|
left: 0,
|
|
233
262
|
opacity: 0,
|
|
@@ -503,7 +532,7 @@ $custom-switch-indicator-size: $custom-control-indicator-size -
|
|
|
503
532
|
|
|
504
533
|
/// @deprecated as of v3.x with no replacement
|
|
505
534
|
|
|
506
|
-
$custom-select-bg: $input-bg !default;
|
|
535
|
+
$custom-select-bg: if(variable-exists(input-bg), $input-bg, $white) !default;
|
|
507
536
|
|
|
508
537
|
/// @deprecated as of v3.x with no replacement
|
|
509
538
|
|
|
@@ -511,7 +540,11 @@ $custom-select-bg-size: 8px 10px !default;
|
|
|
511
540
|
|
|
512
541
|
/// @deprecated as of v3.x with no replacement
|
|
513
542
|
|
|
514
|
-
$custom-select-border-color:
|
|
543
|
+
$custom-select-border-color: if(
|
|
544
|
+
variable-exists(input-border-color),
|
|
545
|
+
$input-border-color,
|
|
546
|
+
$gray-400
|
|
547
|
+
) !default;
|
|
515
548
|
|
|
516
549
|
/// @deprecated as of v3.x with no replacement
|
|
517
550
|
|
|
@@ -519,7 +552,11 @@ $custom-select-border-radius: $border-radius !default;
|
|
|
519
552
|
|
|
520
553
|
/// @deprecated as of v3.x with no replacement
|
|
521
554
|
|
|
522
|
-
$custom-select-border-width:
|
|
555
|
+
$custom-select-border-width: if(
|
|
556
|
+
variable-exists(input-border-width),
|
|
557
|
+
$input-border-width,
|
|
558
|
+
0.0625rem
|
|
559
|
+
) !default;
|
|
523
560
|
|
|
524
561
|
/// @deprecated as of v3.x with no replacement
|
|
525
562
|
|
|
@@ -527,23 +564,43 @@ $custom-select-box-shadow: inset 0 1px 2px rgba($black, 0.075) !default;
|
|
|
527
564
|
|
|
528
565
|
/// @deprecated as of v3.x with no replacement
|
|
529
566
|
|
|
530
|
-
$custom-select-color:
|
|
567
|
+
$custom-select-color: if(
|
|
568
|
+
variable-exists(input-color),
|
|
569
|
+
$input-color,
|
|
570
|
+
$gray-700
|
|
571
|
+
) !default;
|
|
531
572
|
|
|
532
573
|
/// @deprecated as of v3.x with no replacement
|
|
533
574
|
|
|
534
|
-
$custom-select-font-family:
|
|
575
|
+
$custom-select-font-family: if(
|
|
576
|
+
variable-exists(input-font-family),
|
|
577
|
+
$input-font-family,
|
|
578
|
+
null
|
|
579
|
+
) !default;
|
|
535
580
|
|
|
536
581
|
/// @deprecated as of v3.x with no replacement
|
|
537
582
|
|
|
538
|
-
$custom-select-font-size:
|
|
583
|
+
$custom-select-font-size: if(
|
|
584
|
+
variable-exists(input-font-size),
|
|
585
|
+
$input-font-size,
|
|
586
|
+
$font-size-base
|
|
587
|
+
) !default;
|
|
539
588
|
|
|
540
589
|
/// @deprecated as of v3.x with no replacement
|
|
541
590
|
|
|
542
|
-
$custom-select-font-weight:
|
|
591
|
+
$custom-select-font-weight: if(
|
|
592
|
+
variable-exists(input-font-weight),
|
|
593
|
+
$input-font-weight,
|
|
594
|
+
$font-weight-base
|
|
595
|
+
) !default;
|
|
543
596
|
|
|
544
597
|
/// @deprecated as of v3.x with no replacement
|
|
545
598
|
|
|
546
|
-
$custom-select-height:
|
|
599
|
+
$custom-select-height: if(
|
|
600
|
+
variable-exists(input-height),
|
|
601
|
+
$input-height,
|
|
602
|
+
2.375rem
|
|
603
|
+
) !default;
|
|
547
604
|
|
|
548
605
|
/// @deprecated as of v3.x with no replacement
|
|
549
606
|
|
|
@@ -551,15 +608,27 @@ $custom-select-indicator-padding: 1rem !default;
|
|
|
551
608
|
|
|
552
609
|
/// @deprecated as of v3.x with no replacement
|
|
553
610
|
|
|
554
|
-
$custom-select-line-height:
|
|
611
|
+
$custom-select-line-height: if(
|
|
612
|
+
variable-exists(input-line-height),
|
|
613
|
+
$input-line-height,
|
|
614
|
+
$line-height-base
|
|
615
|
+
) !default;
|
|
555
616
|
|
|
556
617
|
/// @deprecated as of v3.x with no replacement
|
|
557
618
|
|
|
558
|
-
$custom-select-padding-x:
|
|
619
|
+
$custom-select-padding-x: if(
|
|
620
|
+
variable-exists(input-padding-x),
|
|
621
|
+
$input-padding-x,
|
|
622
|
+
0.75rem
|
|
623
|
+
) !default;
|
|
559
624
|
|
|
560
625
|
/// @deprecated as of v3.x with no replacement
|
|
561
626
|
|
|
562
|
-
$custom-select-padding-y:
|
|
627
|
+
$custom-select-padding-y: if(
|
|
628
|
+
variable-exists(input-padding-y),
|
|
629
|
+
$input-padding-y,
|
|
630
|
+
0.375rem
|
|
631
|
+
) !default;
|
|
563
632
|
|
|
564
633
|
/// @deprecated as of v3.x with no replacement
|
|
565
634
|
|
|
@@ -580,16 +649,24 @@ $custom-select-background: $custom-select-indicator no-repeat right
|
|
|
580
649
|
|
|
581
650
|
/// @deprecated as of v3.x with no replacement
|
|
582
651
|
|
|
583
|
-
$custom-select-focus-border-color:
|
|
652
|
+
$custom-select-focus-border-color: if(
|
|
653
|
+
variable-exists(input-focus-border-color),
|
|
654
|
+
$input-focus-border-color,
|
|
655
|
+
clay-lighten($component-active-bg, 25%)
|
|
656
|
+
) !default;
|
|
584
657
|
|
|
585
658
|
/// @deprecated as of v3.x with no replacement
|
|
586
659
|
|
|
587
|
-
$custom-select-focus-width:
|
|
660
|
+
$custom-select-focus-width: if(
|
|
661
|
+
variable-exists(input-focus-width),
|
|
662
|
+
$input-focus-width,
|
|
663
|
+
0.2rem
|
|
664
|
+
) !default;
|
|
588
665
|
|
|
589
666
|
/// @deprecated as of v3.x with no replacement
|
|
590
667
|
|
|
591
668
|
$custom-select-focus-box-shadow: 0 0 0 $custom-select-focus-width
|
|
592
|
-
$
|
|
669
|
+
$custom-select-focus-border-color !default;
|
|
593
670
|
|
|
594
671
|
// Custom Select Disabled
|
|
595
672
|
|
|
@@ -623,37 +700,69 @@ $custom-select-feedback-icon-size: 18px 18px !default;
|
|
|
623
700
|
|
|
624
701
|
/// @deprecated as of v3.x with no replacement
|
|
625
702
|
|
|
626
|
-
$custom-select-font-size-lg:
|
|
703
|
+
$custom-select-font-size-lg: if(
|
|
704
|
+
variable-exists(input-font-size-lg),
|
|
705
|
+
$input-font-size-lg,
|
|
706
|
+
$font-size-lg
|
|
707
|
+
) !default;
|
|
627
708
|
|
|
628
709
|
/// @deprecated as of v3.x with no replacement
|
|
629
710
|
|
|
630
|
-
$custom-select-height-lg:
|
|
711
|
+
$custom-select-height-lg: if(
|
|
712
|
+
variable-exists(input-height-lg),
|
|
713
|
+
$input-height-lg,
|
|
714
|
+
3rem
|
|
715
|
+
) !default;
|
|
631
716
|
|
|
632
717
|
/// @deprecated as of v3.x with no replacement
|
|
633
718
|
|
|
634
|
-
$custom-select-padding-x-lg:
|
|
719
|
+
$custom-select-padding-x-lg: if(
|
|
720
|
+
variable-exists(input-padding-x-lg),
|
|
721
|
+
$input-padding-x-lg,
|
|
722
|
+
1rem
|
|
723
|
+
) !default;
|
|
635
724
|
|
|
636
725
|
/// @deprecated as of v3.x with no replacement
|
|
637
726
|
|
|
638
|
-
$custom-select-padding-y-lg:
|
|
727
|
+
$custom-select-padding-y-lg: if(
|
|
728
|
+
variable-exists(input-padding-y-lg),
|
|
729
|
+
$input-padding-y-lg,
|
|
730
|
+
0.5rem
|
|
731
|
+
) !default;
|
|
639
732
|
|
|
640
733
|
// Custom Select Sm
|
|
641
734
|
|
|
642
735
|
/// @deprecated as of v3.x with no replacement
|
|
643
736
|
|
|
644
|
-
$custom-select-font-size-sm:
|
|
737
|
+
$custom-select-font-size-sm: if(
|
|
738
|
+
variable-exists(input-font-size-sm),
|
|
739
|
+
$input-font-size-sm,
|
|
740
|
+
$font-size-sm
|
|
741
|
+
) !default;
|
|
645
742
|
|
|
646
743
|
/// @deprecated as of v3.x with no replacement
|
|
647
744
|
|
|
648
|
-
$custom-select-height-sm:
|
|
745
|
+
$custom-select-height-sm: if(
|
|
746
|
+
variable-exists(input-height-sm),
|
|
747
|
+
$input-height-sm,
|
|
748
|
+
1.9375rem
|
|
749
|
+
) !default;
|
|
649
750
|
|
|
650
751
|
/// @deprecated as of v3.x with no replacement
|
|
651
752
|
|
|
652
|
-
$custom-select-padding-x-sm:
|
|
753
|
+
$custom-select-padding-x-sm: if(
|
|
754
|
+
variable-exists(input-padding-x-sm),
|
|
755
|
+
$input-padding-x-sm,
|
|
756
|
+
0.5rem
|
|
757
|
+
) !default;
|
|
653
758
|
|
|
654
759
|
/// @deprecated as of v3.x with no replacement
|
|
655
760
|
|
|
656
|
-
$custom-select-padding-y-sm:
|
|
761
|
+
$custom-select-padding-y-sm: if(
|
|
762
|
+
variable-exists(input-padding-y-sm),
|
|
763
|
+
$input-padding-y-sm,
|
|
764
|
+
0.25rem
|
|
765
|
+
) !default;
|
|
657
766
|
|
|
658
767
|
// Custom Range
|
|
659
768
|
|
|
@@ -708,11 +817,19 @@ $custom-range-thumb-height: $custom-range-thumb-width !default;
|
|
|
708
817
|
/// @deprecated as of v3.x with no replacement
|
|
709
818
|
|
|
710
819
|
$custom-range-thumb-focus-box-shadow: 0 0 0 1px $body-bg,
|
|
711
|
-
|
|
820
|
+
if(
|
|
821
|
+
variable-exists(input-focus-box-shadow),
|
|
822
|
+
$input-focus-box-shadow,
|
|
823
|
+
$component-focus-box-shadow
|
|
824
|
+
) !default;
|
|
712
825
|
|
|
713
826
|
/// @deprecated as of v3.x with no replacement
|
|
714
827
|
|
|
715
|
-
$custom-range-thumb-focus-box-shadow-width:
|
|
828
|
+
$custom-range-thumb-focus-box-shadow-width: if(
|
|
829
|
+
variable-exists(input-focus-width),
|
|
830
|
+
$input-focus-width,
|
|
831
|
+
0.2rem
|
|
832
|
+
) !default;
|
|
716
833
|
|
|
717
834
|
/// @deprecated as of v3.x with no replacement
|
|
718
835
|
|
|
@@ -726,35 +843,63 @@ $custom-range-thumb-disabled-bg: $gray-500 !default;
|
|
|
726
843
|
|
|
727
844
|
/// @deprecated as of v3.x with no replacement
|
|
728
845
|
|
|
729
|
-
$custom-file-bg: $input-bg !default;
|
|
846
|
+
$custom-file-bg: if(variable-exists(input-bg), $input-bg, $white) !default;
|
|
730
847
|
|
|
731
848
|
/// @deprecated as of v3.x with no replacement
|
|
732
849
|
|
|
733
|
-
$custom-file-border-color:
|
|
850
|
+
$custom-file-border-color: if(
|
|
851
|
+
variable-exists(input-border-color),
|
|
852
|
+
$input-border-color,
|
|
853
|
+
$gray-400
|
|
854
|
+
) !default;
|
|
734
855
|
|
|
735
856
|
/// @deprecated as of v3.x with no replacement
|
|
736
857
|
|
|
737
|
-
$custom-file-border-width:
|
|
858
|
+
$custom-file-border-width: if(
|
|
859
|
+
variable-exists(input-border-width),
|
|
860
|
+
$input-border-width,
|
|
861
|
+
0.0625rem
|
|
862
|
+
) !default;
|
|
738
863
|
|
|
739
864
|
/// @deprecated as of v3.x with no replacement
|
|
740
865
|
|
|
741
|
-
$custom-file-border-radius:
|
|
866
|
+
$custom-file-border-radius: if(
|
|
867
|
+
variable-exists(input-border-radius),
|
|
868
|
+
$input-border-radius,
|
|
869
|
+
$border-radius
|
|
870
|
+
) !default;
|
|
742
871
|
|
|
743
872
|
/// @deprecated as of v3.x with no replacement
|
|
744
873
|
|
|
745
|
-
$custom-file-box-shadow:
|
|
874
|
+
$custom-file-box-shadow: if(
|
|
875
|
+
variable-exists(input-box-shadow),
|
|
876
|
+
$input-box-shadow,
|
|
877
|
+
inset 0 1px 1px rgba($black, 0.075)
|
|
878
|
+
) !default;
|
|
746
879
|
|
|
747
880
|
/// @deprecated as of v3.x with no replacement
|
|
748
881
|
|
|
749
|
-
$custom-file-color:
|
|
882
|
+
$custom-file-color: if(
|
|
883
|
+
variable-exists(input-color),
|
|
884
|
+
$input-color,
|
|
885
|
+
$gray-700
|
|
886
|
+
) !default;
|
|
750
887
|
|
|
751
888
|
/// @deprecated as of v3.x with no replacement
|
|
752
889
|
|
|
753
|
-
$custom-file-font-family:
|
|
890
|
+
$custom-file-font-family: if(
|
|
891
|
+
variable-exists(input-font-family),
|
|
892
|
+
$input-font-family,
|
|
893
|
+
null
|
|
894
|
+
) !default;
|
|
754
895
|
|
|
755
896
|
/// @deprecated as of v3.x with no replacement
|
|
756
897
|
|
|
757
|
-
$custom-file-font-weight:
|
|
898
|
+
$custom-file-font-weight: if(
|
|
899
|
+
variable-exists(input-font-weight),
|
|
900
|
+
$input-font-weight,
|
|
901
|
+
$font-weight-base
|
|
902
|
+
) !default;
|
|
758
903
|
|
|
759
904
|
/// @deprecated as of v3.x with no replacement
|
|
760
905
|
|
|
@@ -762,35 +907,67 @@ $custom-file-height-inner: 36px !default;
|
|
|
762
907
|
|
|
763
908
|
/// @deprecated as of v3.x with no replacement
|
|
764
909
|
|
|
765
|
-
$custom-file-height:
|
|
910
|
+
$custom-file-height: if(
|
|
911
|
+
variable-exists(input-height),
|
|
912
|
+
$input-height,
|
|
913
|
+
2.375rem
|
|
914
|
+
) !default;
|
|
766
915
|
|
|
767
916
|
/// @deprecated as of v3.x with no replacement
|
|
768
917
|
|
|
769
|
-
$custom-file-line-height:
|
|
918
|
+
$custom-file-line-height: if(
|
|
919
|
+
variable-exists(input-line-height),
|
|
920
|
+
$input-line-height,
|
|
921
|
+
$line-height-base
|
|
922
|
+
) !default;
|
|
770
923
|
|
|
771
924
|
/// @deprecated as of v3.x with no replacement
|
|
772
925
|
|
|
773
|
-
$custom-file-padding-x:
|
|
926
|
+
$custom-file-padding-x: if(
|
|
927
|
+
variable-exists(input-padding-x),
|
|
928
|
+
$input-padding-x,
|
|
929
|
+
0.75rem
|
|
930
|
+
) !default;
|
|
774
931
|
|
|
775
932
|
/// @deprecated as of v3.x with no replacement
|
|
776
933
|
|
|
777
|
-
$custom-file-padding-y:
|
|
934
|
+
$custom-file-padding-y: if(
|
|
935
|
+
variable-exists(input-padding-y),
|
|
936
|
+
$input-padding-y,
|
|
937
|
+
0.375rem
|
|
938
|
+
) !default;
|
|
778
939
|
|
|
779
940
|
/// @deprecated as of v3.x with no replacement
|
|
780
941
|
|
|
781
|
-
$custom-file-focus-border-color:
|
|
942
|
+
$custom-file-focus-border-color: if(
|
|
943
|
+
variable-exists(input-focus-border-color),
|
|
944
|
+
$input-focus-border-color,
|
|
945
|
+
clay-lighten($component-active-bg, 25%)
|
|
946
|
+
) !default;
|
|
782
947
|
|
|
783
948
|
/// @deprecated as of v3.x with no replacement
|
|
784
949
|
|
|
785
|
-
$custom-file-focus-box-shadow:
|
|
950
|
+
$custom-file-focus-box-shadow: if(
|
|
951
|
+
variable-exists(input-focus-box-shadow),
|
|
952
|
+
$input-focus-box-shadow,
|
|
953
|
+
$component-focus-box-shadow
|
|
954
|
+
) !default;
|
|
786
955
|
|
|
787
956
|
/// @deprecated as of v3.x with no replacement
|
|
788
957
|
|
|
789
|
-
$custom-file-disabled-bg:
|
|
958
|
+
$custom-file-disabled-bg: if(
|
|
959
|
+
variable-exists(input-disabled-bg),
|
|
960
|
+
$input-disabled-bg,
|
|
961
|
+
$gray-200
|
|
962
|
+
) !default;
|
|
790
963
|
|
|
791
964
|
/// @deprecated as of v3.x with no replacement
|
|
792
965
|
|
|
793
|
-
$custom-file-button-bg:
|
|
966
|
+
$custom-file-button-bg: if(
|
|
967
|
+
variable-exists(input-group-addon-bg),
|
|
968
|
+
$input-group-addon-bg,
|
|
969
|
+
$gray-200
|
|
970
|
+
) !default;
|
|
794
971
|
|
|
795
972
|
/// @deprecated as of v3.x with no replacement
|
|
796
973
|
|
|
@@ -32,7 +32,7 @@ $date-picker-nav-btn: map-deep-merge(
|
|
|
32
32
|
color: $gray-600,
|
|
33
33
|
transition: $component-transition,
|
|
34
34
|
hover-bg: $gray-200,
|
|
35
|
-
focus-box-shadow: $
|
|
35
|
+
focus-box-shadow: $component-focus-box-shadow,
|
|
36
36
|
disabled-bg: transparent,
|
|
37
37
|
disabled-box-shadow: none,
|
|
38
38
|
disabled-color: $gray-600,
|
|
@@ -120,7 +120,7 @@ $date-picker-day: map-deep-merge(
|
|
|
120
120
|
// Date Picker Calendar
|
|
121
121
|
|
|
122
122
|
$date-picker-calendar-container: () !default;
|
|
123
|
-
$date-picker-calendar-container: map-
|
|
123
|
+
$date-picker-calendar-container: map-merge(
|
|
124
124
|
(
|
|
125
125
|
float: left,
|
|
126
126
|
min-width: 100%,
|
|
@@ -129,7 +129,7 @@ $date-picker-calendar-container: map-deep-merge(
|
|
|
129
129
|
);
|
|
130
130
|
|
|
131
131
|
$date-picker-calendar-header-container: () !default;
|
|
132
|
-
$date-picker-calendar-header-container: map-
|
|
132
|
+
$date-picker-calendar-header-container: map-merge(
|
|
133
133
|
(
|
|
134
134
|
padding-bottom: 1rem,
|
|
135
135
|
padding-left: 1rem,
|
|
@@ -140,7 +140,7 @@ $date-picker-calendar-header-container: map-deep-merge(
|
|
|
140
140
|
);
|
|
141
141
|
|
|
142
142
|
$date-picker-calendar-body-container: () !default;
|
|
143
|
-
$date-picker-calendar-body-container: map-
|
|
143
|
+
$date-picker-calendar-body-container: map-merge(
|
|
144
144
|
(
|
|
145
145
|
padding-left: 1rem,
|
|
146
146
|
padding-right: 1rem,
|
|
@@ -150,7 +150,7 @@ $date-picker-calendar-body-container: map-deep-merge(
|
|
|
150
150
|
);
|
|
151
151
|
|
|
152
152
|
$date-picker-calendar-footer-container: () !default;
|
|
153
|
-
$date-picker-calendar-footer-container: map-
|
|
153
|
+
$date-picker-calendar-footer-container: map-merge(
|
|
154
154
|
(
|
|
155
155
|
border-color: $gray-400,
|
|
156
156
|
border-style: solid,
|
|
@@ -201,7 +201,7 @@ $date-picker-date: map-deep-merge(
|
|
|
201
201
|
cursor: $link-cursor,
|
|
202
202
|
position: relative,
|
|
203
203
|
hover-bg: $gray-200,
|
|
204
|
-
focus-box-shadow: $
|
|
204
|
+
focus-box-shadow: $component-focus-box-shadow,
|
|
205
205
|
focus-outline: 0,
|
|
206
206
|
active-bg: $component-active-bg,
|
|
207
207
|
active-color: $component-active-color,
|
|
@@ -1,7 +1,11 @@
|
|
|
1
1
|
$drilldown-inner-transition: height 0.25s ease !default;
|
|
2
2
|
|
|
3
3
|
$drilldown-transition: all 0.25s ease !default;
|
|
4
|
-
$drilldown-width:
|
|
4
|
+
$drilldown-width: if(
|
|
5
|
+
variable-exists(dropdown-max-width),
|
|
6
|
+
$dropdown-max-width,
|
|
7
|
+
260px
|
|
8
|
+
) !default;
|
|
5
9
|
|
|
6
10
|
$drilldown-inline-scroller-max-height: none !default;
|
|
7
11
|
|