@clayui/css 3.54.0 → 3.57.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 +203 -192
- package/lib/css/atlas.css.map +1 -1
- package/lib/css/base.css +113 -132
- package/lib/css/base.css.map +1 -1
- package/lib/css/bootstrap.css.map +1 -1
- package/lib/css/cadmin.css +59 -69
- package/lib/css/cadmin.css.map +1 -1
- package/lib/images/icons/flags-ca-ES-valencia.svg +13 -0
- package/lib/images/icons/icons.svg +1 -1
- package/package.json +2 -2
- package/src/images/icons/flags-ca-ES-valencia.svg +13 -0
- package/src/scss/_license-text.scss +1 -1
- package/src/scss/atlas/variables/_buttons.scss +1 -1
- package/src/scss/atlas/variables/_dropdowns.scss +1 -1
- package/src/scss/atlas/variables/_globals.scss +5 -5
- package/src/scss/atlas/variables/_multi-step-nav.scss +3 -1
- package/src/scss/atlas/variables/_navigation-bar.scss +1 -1
- package/src/scss/atlas/variables/_navs.scss +1 -1
- package/src/scss/atlas/variables/_panels.scss +2 -2
- package/src/scss/atlas/variables/_range.scss +24 -6
- package/src/scss/atlas/variables/_sheets.scss +2 -1
- package/src/scss/atlas/variables/_sidebar.scss +3 -2
- package/src/scss/atlas/variables/_type.scss +0 -2
- package/src/scss/cadmin/components/_breadcrumbs.scss +12 -62
- package/src/scss/cadmin/variables/_breadcrumbs.scss +94 -16
- package/src/scss/cadmin/variables/_range.scss +110 -51
- package/src/scss/cadmin/variables/_treeview.scss +12 -4
- package/src/scss/components/_breadcrumbs.scss +12 -71
- package/src/scss/components/_tables.scss +2 -2
- package/src/scss/functions/_color-functions.scss +66 -26
- package/src/scss/functions/_global-functions.scss +10 -3
- package/src/scss/functions/_lx-icons-generated.scss +2 -0
- package/src/scss/mixins/_buttons.scss +4 -0
- package/src/scss/mixins/_forms.scss +1020 -378
- package/src/scss/variables/_alerts.scss +8 -0
- package/src/scss/variables/_breadcrumbs.scss +90 -15
- package/src/scss/variables/_buttons.scss +116 -67
- package/src/scss/variables/_cards.scss +1 -1
- package/src/scss/variables/_date-picker.scss +1 -1
- package/src/scss/variables/_dropdowns.scss +4 -4
- package/src/scss/variables/_forms.scss +1 -1
- package/src/scss/variables/_globals.scss +2 -2
- package/src/scss/variables/_links.scss +1 -1
- package/src/scss/variables/_list-group.scss +2 -2
- package/src/scss/variables/_multi-step-nav.scss +1 -1
- package/src/scss/variables/_navbar.scss +2 -2
- package/src/scss/variables/_navs.scss +1 -1
- package/src/scss/variables/_pagination.scss +1 -1
- package/src/scss/variables/_panels.scss +5 -4
- package/src/scss/variables/_range.scss +114 -50
- package/src/scss/variables/_sheets.scss +1 -1
- package/src/scss/variables/_sidebar.scss +2 -0
- package/src/scss/variables/_tables.scss +9 -4
- package/src/scss/variables/_tbar.scss +14 -13
- package/src/scss/variables/_time.scss +1 -1
- package/src/scss/variables/_treeview.scss +12 -4
- package/src/scss/variables/_type.scss +2 -2
- package/src/scss/variables/_utilities.scss +1 -1
|
@@ -410,8 +410,16 @@ $alert-autofit-row: map-deep-merge(
|
|
|
410
410
|
|
|
411
411
|
// Alert Color Levels
|
|
412
412
|
|
|
413
|
+
/// @deprecated as of v3.x with no replacement, this color modifier is too specific to support a variety of colors
|
|
414
|
+
|
|
413
415
|
$alert-bg-level: -10 !default;
|
|
416
|
+
|
|
417
|
+
/// @deprecated as of v3.x with no replacement, this color modifier is too specific to support a variety of colors
|
|
418
|
+
|
|
414
419
|
$alert-border-level: -9 !default;
|
|
420
|
+
|
|
421
|
+
/// @deprecated as of v3.x with no replacement, this color modifier is too specific to support a variety of colors
|
|
422
|
+
|
|
415
423
|
$alert-color-level: 6 !default;
|
|
416
424
|
|
|
417
425
|
// Alert Feedback
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
// .breadcrumb
|
|
2
|
+
|
|
1
3
|
$breadcrumb-bg: $gray-200 !default;
|
|
2
4
|
$breadcrumb-border-radius: $border-radius !default;
|
|
3
5
|
$breadcrumb-font-size: null !default;
|
|
@@ -7,6 +9,36 @@ $breadcrumb-padding-x: 1rem !default;
|
|
|
7
9
|
$breadcrumb-padding-y: 0.75rem !default;
|
|
8
10
|
$breadcrumb-text-transform: null !default;
|
|
9
11
|
|
|
12
|
+
$breadcrumb: () !default;
|
|
13
|
+
$breadcrumb: map-merge(
|
|
14
|
+
(
|
|
15
|
+
background-color: $breadcrumb-bg,
|
|
16
|
+
border-radius: clay-enable-rounded($breadcrumb-border-radius),
|
|
17
|
+
display: flex,
|
|
18
|
+
flex-wrap: wrap,
|
|
19
|
+
font-size: $breadcrumb-font-size,
|
|
20
|
+
list-style: none,
|
|
21
|
+
margin-bottom: $breadcrumb-margin-bottom,
|
|
22
|
+
padding: $breadcrumb-padding-y $breadcrumb-padding-x,
|
|
23
|
+
),
|
|
24
|
+
$breadcrumb
|
|
25
|
+
);
|
|
26
|
+
|
|
27
|
+
// .breadcrumb-item + .breadcrumb-item::before
|
|
28
|
+
|
|
29
|
+
$breadcrumb-divider: quote('/') !default;
|
|
30
|
+
|
|
31
|
+
$breadcrumb-divider-color: $gray-600 !default;
|
|
32
|
+
$breadcrumb-divider-font-family: null !default;
|
|
33
|
+
$breadcrumb-divider-font-weight: null !default;
|
|
34
|
+
|
|
35
|
+
$breadcrumb-divider-svg-icon: clay-icon(
|
|
36
|
+
angle-right,
|
|
37
|
+
$breadcrumb-divider-color
|
|
38
|
+
) !default;
|
|
39
|
+
$breadcrumb-divider-svg-icon-height: 0.75em !default;
|
|
40
|
+
$breadcrumb-divider-svg-icon-width: $breadcrumb-divider-svg-icon-height !default;
|
|
41
|
+
|
|
10
42
|
// Breadcrumb Item
|
|
11
43
|
|
|
12
44
|
$breadcrumb-item-padding: 0.5rem !default;
|
|
@@ -14,6 +46,50 @@ $breadcrumb-item-padding: 0.5rem !default;
|
|
|
14
46
|
$breadcrumb-active-color: $gray-600 !default;
|
|
15
47
|
$breadcrumb-active-font-weight: null !default;
|
|
16
48
|
|
|
49
|
+
$breadcrumb-item: () !default;
|
|
50
|
+
$breadcrumb-item: map-merge(
|
|
51
|
+
(
|
|
52
|
+
font-size: $breadcrumb-font-size,
|
|
53
|
+
font-weight: $breadcrumb-font-weight,
|
|
54
|
+
margin-right: 0.5em,
|
|
55
|
+
position: relative,
|
|
56
|
+
active: (
|
|
57
|
+
color: $breadcrumb-active-color,
|
|
58
|
+
font-weight: $breadcrumb-active-font-weight,
|
|
59
|
+
),
|
|
60
|
+
breadcrumb-item: (
|
|
61
|
+
padding-left: 1em,
|
|
62
|
+
before: (
|
|
63
|
+
color: $breadcrumb-divider-color,
|
|
64
|
+
display: block,
|
|
65
|
+
float: left,
|
|
66
|
+
background-image: $breadcrumb-divider-svg-icon,
|
|
67
|
+
background-repeat: no-repeat,
|
|
68
|
+
background-size: 100%,
|
|
69
|
+
content: '',
|
|
70
|
+
height: $breadcrumb-divider-svg-icon-height,
|
|
71
|
+
left: 0,
|
|
72
|
+
margin-top:
|
|
73
|
+
calc(#{math-sign($breadcrumb-divider-svg-icon-height)} / 2),
|
|
74
|
+
padding: 0,
|
|
75
|
+
position: absolute,
|
|
76
|
+
top: 50%,
|
|
77
|
+
width: $breadcrumb-divider-svg-icon-width,
|
|
78
|
+
),
|
|
79
|
+
),
|
|
80
|
+
dropdown-toggle: (
|
|
81
|
+
text-decoration: none,
|
|
82
|
+
hover: (
|
|
83
|
+
text-decoration: none,
|
|
84
|
+
),
|
|
85
|
+
focus: (
|
|
86
|
+
text-decoration: none,
|
|
87
|
+
),
|
|
88
|
+
),
|
|
89
|
+
),
|
|
90
|
+
$breadcrumb-item
|
|
91
|
+
);
|
|
92
|
+
|
|
17
93
|
// Breadcrumb Text Truncate
|
|
18
94
|
|
|
19
95
|
$breadcrumb-text-truncate-icon-spacer-x: 0.875rem !default;
|
|
@@ -22,6 +98,20 @@ $breadcrumb-text-truncate-max-width: 18.75rem -
|
|
|
22
98
|
$breadcrumb-text-truncate-max-width-mobile: 9.375rem -
|
|
23
99
|
$breadcrumb-text-truncate-icon-spacer-x !default;
|
|
24
100
|
|
|
101
|
+
$breadcrumb-text-truncate: () !default;
|
|
102
|
+
$breadcrumb-text-truncate: map-merge(
|
|
103
|
+
(
|
|
104
|
+
display: inline-block,
|
|
105
|
+
max-width: $breadcrumb-text-truncate-max-width,
|
|
106
|
+
overflow: hidden,
|
|
107
|
+
text-decoration: inherit,
|
|
108
|
+
text-overflow: ellipsis,
|
|
109
|
+
vertical-align: bottom,
|
|
110
|
+
white-space: nowrap,
|
|
111
|
+
),
|
|
112
|
+
$breadcrumb-text-truncate
|
|
113
|
+
);
|
|
114
|
+
|
|
25
115
|
// Breadcrumb Link
|
|
26
116
|
|
|
27
117
|
$breadcrumb-link-color: $link-color !default;
|
|
@@ -48,18 +138,3 @@ $breadcrumb-link: map-deep-merge(
|
|
|
48
138
|
),
|
|
49
139
|
$breadcrumb-link
|
|
50
140
|
);
|
|
51
|
-
|
|
52
|
-
// Breadcrumb Divider
|
|
53
|
-
|
|
54
|
-
$breadcrumb-divider: quote('/') !default;
|
|
55
|
-
|
|
56
|
-
$breadcrumb-divider-color: $gray-600 !default;
|
|
57
|
-
$breadcrumb-divider-font-family: null !default;
|
|
58
|
-
$breadcrumb-divider-font-weight: null !default;
|
|
59
|
-
|
|
60
|
-
$breadcrumb-divider-svg-icon: clay-icon(
|
|
61
|
-
angle-right,
|
|
62
|
-
$breadcrumb-divider-color
|
|
63
|
-
) !default;
|
|
64
|
-
$breadcrumb-divider-svg-icon-height: 0.75em !default;
|
|
65
|
-
$breadcrumb-divider-svg-icon-width: $breadcrumb-divider-svg-icon-height !default;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
$btn-border-width: $input-btn-border-width !default;
|
|
2
2
|
$btn-border-radius: $border-radius !default;
|
|
3
|
-
$btn-box-shadow: inset 0 1px 0 rgba($white, 0.15),
|
|
3
|
+
$btn-box-shadow: #{inset 0 1px 0 rgba($white, 0.15),
|
|
4
|
+
0 1px 1px rgba($black, 0.075)} !default;
|
|
4
5
|
$btn-cursor: $link-cursor !default;
|
|
5
6
|
$btn-font-family: $input-btn-font-family !default;
|
|
6
7
|
$btn-font-size: $input-btn-font-size !default;
|
|
@@ -38,7 +39,7 @@ $btn: map-deep-merge(
|
|
|
38
39
|
border-style: solid,
|
|
39
40
|
border-width: $btn-border-width,
|
|
40
41
|
border-radius: clay-enable-rounded($btn-border-radius),
|
|
41
|
-
box-shadow: clay-enable-shadows(
|
|
42
|
+
box-shadow: clay-enable-shadows($btn-box-shadow),
|
|
42
43
|
color: $body-color,
|
|
43
44
|
cursor: $btn-cursor,
|
|
44
45
|
display: inline-block,
|
|
@@ -72,13 +73,13 @@ $btn: map-deep-merge(
|
|
|
72
73
|
outline: 0,
|
|
73
74
|
),
|
|
74
75
|
active: (
|
|
75
|
-
box-shadow: clay-enable-shadows(
|
|
76
|
+
box-shadow: clay-enable-shadows($btn-active-box-shadow),
|
|
76
77
|
focus: (
|
|
77
|
-
box-shadow: clay-enable-shadows(
|
|
78
|
+
box-shadow: clay-enable-shadows($btn-focus-box-shadow),
|
|
78
79
|
),
|
|
79
80
|
),
|
|
80
81
|
active-class: (
|
|
81
|
-
box-shadow: clay-enable-shadows(
|
|
82
|
+
box-shadow: clay-enable-shadows($btn-active-box-shadow),
|
|
82
83
|
),
|
|
83
84
|
disabled: (
|
|
84
85
|
cursor: $btn-disabled-cursor,
|
|
@@ -352,7 +353,7 @@ $btn-primary: map-deep-merge(
|
|
|
352
353
|
background-color: $primary,
|
|
353
354
|
background-image: clay-enable-gradients($primary),
|
|
354
355
|
border-color: $primary,
|
|
355
|
-
box-shadow: clay-enable-shadows(
|
|
356
|
+
box-shadow: clay-enable-shadows($btn-box-shadow),
|
|
356
357
|
color: color-yiq($primary),
|
|
357
358
|
hover: (
|
|
358
359
|
background-color: clay-darken($primary, 7.5%),
|
|
@@ -366,10 +367,11 @@ $btn-primary: map-deep-merge(
|
|
|
366
367
|
border-color: clay-darken($primary, 10%),
|
|
367
368
|
box-shadow:
|
|
368
369
|
clay-enable-shadows(
|
|
369
|
-
|
|
370
|
+
#{$btn-box-shadow,
|
|
371
|
+
0 0 0 $btn-focus-width
|
|
372
|
+
rgba(clay-mix(color-yiq($primary), $primary, 15%), 0.5)},
|
|
370
373
|
0 0 0 $btn-focus-width
|
|
371
374
|
rgba(clay-mix(color-yiq($primary), $primary, 15%), 0.5)
|
|
372
|
-
]
|
|
373
375
|
),
|
|
374
376
|
color: color-yiq(clay-darken($primary, 7.5%)),
|
|
375
377
|
),
|
|
@@ -381,13 +383,17 @@ $btn-primary: map-deep-merge(
|
|
|
381
383
|
focus: (
|
|
382
384
|
box-shadow:
|
|
383
385
|
clay-enable-shadows(
|
|
384
|
-
|
|
386
|
+
#{$btn-active-box-shadow,
|
|
387
|
+
0 0 0 $btn-focus-width
|
|
388
|
+
rgba(
|
|
389
|
+
clay-mix(color-yiq($primary), $primary, 15%),
|
|
390
|
+
0.5
|
|
391
|
+
)},
|
|
385
392
|
0 0 0 $btn-focus-width
|
|
386
393
|
rgba(
|
|
387
394
|
clay-mix(color-yiq($primary), $primary, 15%),
|
|
388
395
|
0.5
|
|
389
396
|
)
|
|
390
|
-
]
|
|
391
397
|
),
|
|
392
398
|
),
|
|
393
399
|
),
|
|
@@ -408,7 +414,7 @@ $btn-secondary: map-deep-merge(
|
|
|
408
414
|
background-color: $secondary,
|
|
409
415
|
background-image: clay-enable-gradients($secondary),
|
|
410
416
|
border-color: $secondary,
|
|
411
|
-
box-shadow: clay-enable-shadows(
|
|
417
|
+
box-shadow: clay-enable-shadows($btn-box-shadow),
|
|
412
418
|
color: color-yiq($secondary),
|
|
413
419
|
hover: (
|
|
414
420
|
background-color: clay-darken($secondary, 7.5%),
|
|
@@ -424,13 +430,17 @@ $btn-secondary: map-deep-merge(
|
|
|
424
430
|
border-color: clay-darken($secondary, 10%),
|
|
425
431
|
box-shadow:
|
|
426
432
|
clay-enable-shadows(
|
|
427
|
-
|
|
433
|
+
#{$btn-box-shadow,
|
|
428
434
|
0 0 0 $btn-focus-width
|
|
429
435
|
rgba(
|
|
430
436
|
clay-mix(color-yiq($secondary), $secondary, 15%),
|
|
431
437
|
0.5
|
|
432
|
-
),
|
|
433
|
-
|
|
438
|
+
)},
|
|
439
|
+
0 0 0 $btn-focus-width
|
|
440
|
+
rgba(
|
|
441
|
+
clay-mix(color-yiq($secondary), $secondary, 15%),
|
|
442
|
+
0.5
|
|
443
|
+
)
|
|
434
444
|
),
|
|
435
445
|
color: color-yiq(clay-darken($secondary, 7.5%)),
|
|
436
446
|
),
|
|
@@ -442,7 +452,16 @@ $btn-secondary: map-deep-merge(
|
|
|
442
452
|
focus: (
|
|
443
453
|
box-shadow:
|
|
444
454
|
clay-enable-shadows(
|
|
445
|
-
|
|
455
|
+
#{$btn-active-box-shadow,
|
|
456
|
+
0 0 0 $btn-focus-width
|
|
457
|
+
rgba(
|
|
458
|
+
clay-mix(
|
|
459
|
+
color-yiq($secondary),
|
|
460
|
+
$secondary,
|
|
461
|
+
15%
|
|
462
|
+
),
|
|
463
|
+
0.5
|
|
464
|
+
)},
|
|
446
465
|
0 0 0 $btn-focus-width
|
|
447
466
|
rgba(
|
|
448
467
|
clay-mix(
|
|
@@ -452,7 +471,6 @@ $btn-secondary: map-deep-merge(
|
|
|
452
471
|
),
|
|
453
472
|
0.5
|
|
454
473
|
)
|
|
455
|
-
]
|
|
456
474
|
),
|
|
457
475
|
),
|
|
458
476
|
),
|
|
@@ -473,7 +491,7 @@ $btn-success: map-deep-merge(
|
|
|
473
491
|
background-color: $success,
|
|
474
492
|
background-image: clay-enable-gradients($success),
|
|
475
493
|
border-color: $success,
|
|
476
|
-
box-shadow: clay-enable-shadows(
|
|
494
|
+
box-shadow: clay-enable-shadows($btn-box-shadow),
|
|
477
495
|
color: color-yiq($success),
|
|
478
496
|
hover: (
|
|
479
497
|
background-color: clay-darken($success, 7.5%),
|
|
@@ -487,10 +505,11 @@ $btn-success: map-deep-merge(
|
|
|
487
505
|
border-color: clay-darken($success, 10%),
|
|
488
506
|
box-shadow:
|
|
489
507
|
clay-enable-shadows(
|
|
490
|
-
|
|
508
|
+
#{$btn-box-shadow,
|
|
509
|
+
0 0 0 $btn-focus-width
|
|
510
|
+
rgba(clay-mix(color-yiq($success), $success, 15%), 0.5)},
|
|
491
511
|
0 0 0 $btn-focus-width
|
|
492
512
|
rgba(clay-mix(color-yiq($success), $success, 15%), 0.5)
|
|
493
|
-
]
|
|
494
513
|
),
|
|
495
514
|
color: color-yiq(clay-darken($success, 7.5%)),
|
|
496
515
|
),
|
|
@@ -502,13 +521,17 @@ $btn-success: map-deep-merge(
|
|
|
502
521
|
focus: (
|
|
503
522
|
box-shadow:
|
|
504
523
|
clay-enable-shadows(
|
|
505
|
-
|
|
524
|
+
#{$btn-active-box-shadow,
|
|
525
|
+
0 0 0 $btn-focus-width
|
|
526
|
+
rgba(
|
|
527
|
+
clay-mix(color-yiq($success), $success, 15%),
|
|
528
|
+
0.5
|
|
529
|
+
)},
|
|
506
530
|
0 0 0 $btn-focus-width
|
|
507
531
|
rgba(
|
|
508
532
|
clay-mix(color-yiq($success), $success, 15%),
|
|
509
533
|
0.5
|
|
510
534
|
)
|
|
511
|
-
]
|
|
512
535
|
),
|
|
513
536
|
),
|
|
514
537
|
),
|
|
@@ -529,7 +552,7 @@ $btn-info: map-deep-merge(
|
|
|
529
552
|
background-color: $info,
|
|
530
553
|
background-image: clay-enable-gradients($info),
|
|
531
554
|
border-color: $info,
|
|
532
|
-
box-shadow: clay-enable-shadows(
|
|
555
|
+
box-shadow: clay-enable-shadows($btn-box-shadow),
|
|
533
556
|
color: color-yiq($info),
|
|
534
557
|
hover: (
|
|
535
558
|
background-color: clay-darken($info, 7.5%),
|
|
@@ -543,9 +566,11 @@ $btn-info: map-deep-merge(
|
|
|
543
566
|
border-color: clay-darken($info, 10%),
|
|
544
567
|
box-shadow:
|
|
545
568
|
clay-enable-shadows(
|
|
546
|
-
|
|
569
|
+
#{$btn-box-shadow,
|
|
570
|
+
0 0 0 $btn-focus-width
|
|
571
|
+
rgba(clay-mix(color-yiq($info), $info, 15%), 0.5)},
|
|
547
572
|
0 0 0 $btn-focus-width
|
|
548
|
-
rgba(clay-mix(color-yiq($info), $info, 15%), 0.5)
|
|
573
|
+
rgba(clay-mix(color-yiq($info), $info, 15%), 0.5)
|
|
549
574
|
),
|
|
550
575
|
color: color-yiq(clay-darken($info, 7.5%)),
|
|
551
576
|
),
|
|
@@ -557,9 +582,11 @@ $btn-info: map-deep-merge(
|
|
|
557
582
|
focus: (
|
|
558
583
|
box-shadow:
|
|
559
584
|
clay-enable-shadows(
|
|
560
|
-
|
|
585
|
+
#{$btn-active-box-shadow,
|
|
586
|
+
0 0 0 $btn-focus-width
|
|
587
|
+
rgba(clay-mix(color-yiq($info), $info, 15%), 0.5)},
|
|
561
588
|
0 0 0 $btn-focus-width
|
|
562
|
-
rgba(clay-mix(color-yiq($info), $info, 15%), 0.5)
|
|
589
|
+
rgba(clay-mix(color-yiq($info), $info, 15%), 0.5)
|
|
563
590
|
),
|
|
564
591
|
),
|
|
565
592
|
),
|
|
@@ -580,7 +607,7 @@ $btn-warning: map-deep-merge(
|
|
|
580
607
|
background-color: $warning,
|
|
581
608
|
background-image: clay-enable-gradients($warning),
|
|
582
609
|
border-color: $warning,
|
|
583
|
-
box-shadow: clay-enable-shadows(
|
|
610
|
+
box-shadow: clay-enable-shadows($btn-box-shadow),
|
|
584
611
|
color: color-yiq($warning),
|
|
585
612
|
hover: (
|
|
586
613
|
background-color: clay-darken($warning, 7.5%),
|
|
@@ -594,10 +621,11 @@ $btn-warning: map-deep-merge(
|
|
|
594
621
|
border-color: clay-darken($warning, 10%),
|
|
595
622
|
box-shadow:
|
|
596
623
|
clay-enable-shadows(
|
|
597
|
-
|
|
624
|
+
#{$btn-box-shadow,
|
|
625
|
+
0 0 0 $btn-focus-width
|
|
626
|
+
rgba(clay-mix(color-yiq($warning), $warning, 15%), 0.5)},
|
|
598
627
|
0 0 0 $btn-focus-width
|
|
599
628
|
rgba(clay-mix(color-yiq($warning), $warning, 15%), 0.5)
|
|
600
|
-
]
|
|
601
629
|
),
|
|
602
630
|
color: color-yiq(clay-darken($warning, 7.5%)),
|
|
603
631
|
),
|
|
@@ -609,13 +637,17 @@ $btn-warning: map-deep-merge(
|
|
|
609
637
|
focus: (
|
|
610
638
|
box-shadow:
|
|
611
639
|
clay-enable-shadows(
|
|
612
|
-
|
|
640
|
+
#{$btn-active-box-shadow,
|
|
641
|
+
0 0 0 $btn-focus-width
|
|
642
|
+
rgba(
|
|
643
|
+
clay-mix(color-yiq($warning), $warning, 15%),
|
|
644
|
+
0.5
|
|
645
|
+
)},
|
|
613
646
|
0 0 0 $btn-focus-width
|
|
614
647
|
rgba(
|
|
615
648
|
clay-mix(color-yiq($warning), $warning, 15%),
|
|
616
649
|
0.5
|
|
617
650
|
)
|
|
618
|
-
]
|
|
619
651
|
),
|
|
620
652
|
),
|
|
621
653
|
),
|
|
@@ -635,7 +667,7 @@ $btn-danger: map-deep-merge(
|
|
|
635
667
|
background-color: $danger,
|
|
636
668
|
background-image: clay-enable-gradients($danger),
|
|
637
669
|
border-color: $danger,
|
|
638
|
-
box-shadow: clay-enable-shadows(
|
|
670
|
+
box-shadow: clay-enable-shadows($btn-box-shadow),
|
|
639
671
|
color: color-yiq($danger),
|
|
640
672
|
hover: (
|
|
641
673
|
background-color: clay-darken($danger, 7.5%),
|
|
@@ -649,9 +681,11 @@ $btn-danger: map-deep-merge(
|
|
|
649
681
|
border-color: clay-darken($danger, 10%),
|
|
650
682
|
box-shadow:
|
|
651
683
|
clay-enable-shadows(
|
|
652
|
-
|
|
684
|
+
#{$btn-box-shadow,
|
|
653
685
|
0 0 0 $btn-focus-width
|
|
654
|
-
rgba(clay-mix(color-yiq($danger), $danger, 15%), 0.5)
|
|
686
|
+
rgba(clay-mix(color-yiq($danger), $danger, 15%), 0.5)},
|
|
687
|
+
0 0 0 $btn-focus-width
|
|
688
|
+
rgba(clay-mix(color-yiq($danger), $danger, 15%), 0.5)
|
|
655
689
|
),
|
|
656
690
|
color: color-yiq(clay-darken($danger, 7.5%)),
|
|
657
691
|
),
|
|
@@ -663,13 +697,17 @@ $btn-danger: map-deep-merge(
|
|
|
663
697
|
focus: (
|
|
664
698
|
box-shadow:
|
|
665
699
|
clay-enable-shadows(
|
|
666
|
-
|
|
700
|
+
#{$btn-active-box-shadow,
|
|
701
|
+
0 0 0 $btn-focus-width
|
|
702
|
+
rgba(
|
|
703
|
+
clay-mix(color-yiq($danger), $danger, 15%),
|
|
704
|
+
0.5
|
|
705
|
+
)},
|
|
667
706
|
0 0 0 $btn-focus-width
|
|
668
707
|
rgba(
|
|
669
708
|
clay-mix(color-yiq($danger), $danger, 15%),
|
|
670
709
|
0.5
|
|
671
710
|
)
|
|
672
|
-
]
|
|
673
711
|
),
|
|
674
712
|
),
|
|
675
713
|
),
|
|
@@ -690,7 +728,7 @@ $btn-light: map-deep-merge(
|
|
|
690
728
|
background-color: $light,
|
|
691
729
|
background-image: clay-enable-gradients($light),
|
|
692
730
|
border-color: $light,
|
|
693
|
-
box-shadow: clay-enable-shadows(
|
|
731
|
+
box-shadow: clay-enable-shadows($btn-box-shadow),
|
|
694
732
|
color: color-yiq($light),
|
|
695
733
|
hover: (
|
|
696
734
|
background-color: clay-darken($light, 7.5%),
|
|
@@ -704,9 +742,11 @@ $btn-light: map-deep-merge(
|
|
|
704
742
|
border-color: clay-darken($light, 10%),
|
|
705
743
|
box-shadow:
|
|
706
744
|
clay-enable-shadows(
|
|
707
|
-
|
|
745
|
+
#{$btn-box-shadow,
|
|
708
746
|
0 0 0 $btn-focus-width
|
|
709
|
-
rgba(clay-mix(color-yiq($light), $light, 15%), 0.5)
|
|
747
|
+
rgba(clay-mix(color-yiq($light), $light, 15%), 0.5)},
|
|
748
|
+
0 0 0 $btn-focus-width
|
|
749
|
+
rgba(clay-mix(color-yiq($light), $light, 15%), 0.5)
|
|
710
750
|
),
|
|
711
751
|
color: color-yiq(clay-darken($light, 7.5%)),
|
|
712
752
|
),
|
|
@@ -718,10 +758,11 @@ $btn-light: map-deep-merge(
|
|
|
718
758
|
focus: (
|
|
719
759
|
box-shadow:
|
|
720
760
|
clay-enable-shadows(
|
|
721
|
-
|
|
761
|
+
#{$btn-active-box-shadow,
|
|
762
|
+
0 0 0 $btn-focus-width
|
|
763
|
+
rgba(clay-mix(color-yiq($light), $light, 15%), 0.5)},
|
|
722
764
|
0 0 0 $btn-focus-width
|
|
723
765
|
rgba(clay-mix(color-yiq($light), $light, 15%), 0.5)
|
|
724
|
-
]
|
|
725
766
|
),
|
|
726
767
|
),
|
|
727
768
|
),
|
|
@@ -741,7 +782,7 @@ $btn-dark: map-deep-merge(
|
|
|
741
782
|
background-color: $dark,
|
|
742
783
|
background-image: clay-enable-gradients($dark),
|
|
743
784
|
border-color: $dark,
|
|
744
|
-
box-shadow: clay-enable-shadows(
|
|
785
|
+
box-shadow: clay-enable-shadows($btn-box-shadow),
|
|
745
786
|
color: color-yiq($dark),
|
|
746
787
|
hover: (
|
|
747
788
|
background-color: clay-darken($dark, 7.5%),
|
|
@@ -755,9 +796,11 @@ $btn-dark: map-deep-merge(
|
|
|
755
796
|
border-color: clay-darken($dark, 10%),
|
|
756
797
|
box-shadow:
|
|
757
798
|
clay-enable-shadows(
|
|
758
|
-
|
|
799
|
+
#{$btn-box-shadow,
|
|
759
800
|
0 0 0 $btn-focus-width
|
|
760
|
-
rgba(clay-mix(color-yiq($dark), $dark, 15%), 0.5)
|
|
801
|
+
rgba(clay-mix(color-yiq($dark), $dark, 15%), 0.5)},
|
|
802
|
+
0 0 0 $btn-focus-width
|
|
803
|
+
rgba(clay-mix(color-yiq($dark), $dark, 15%), 0.5)
|
|
761
804
|
),
|
|
762
805
|
color: color-yiq(clay-darken($dark, 7.5%)),
|
|
763
806
|
),
|
|
@@ -769,9 +812,11 @@ $btn-dark: map-deep-merge(
|
|
|
769
812
|
focus: (
|
|
770
813
|
box-shadow:
|
|
771
814
|
clay-enable-shadows(
|
|
772
|
-
|
|
815
|
+
#{$btn-active-box-shadow,
|
|
816
|
+
0 0 0 $btn-focus-width
|
|
817
|
+
rgba(clay-mix(color-yiq($dark), $dark, 15%), 0.5)},
|
|
773
818
|
0 0 0 $btn-focus-width
|
|
774
|
-
rgba(clay-mix(color-yiq($dark), $dark, 15%), 0.5)
|
|
819
|
+
rgba(clay-mix(color-yiq($dark), $dark, 15%), 0.5)
|
|
775
820
|
),
|
|
776
821
|
),
|
|
777
822
|
),
|
|
@@ -792,7 +837,7 @@ $btn-link: () !default;
|
|
|
792
837
|
$btn-link: map-deep-merge(
|
|
793
838
|
(
|
|
794
839
|
border-radius: 1px,
|
|
795
|
-
box-shadow: clay-enable-shadows(
|
|
840
|
+
box-shadow: clay-enable-shadows(none),
|
|
796
841
|
color: $link-color,
|
|
797
842
|
font-weight: $font-weight-normal,
|
|
798
843
|
text-decoration: $link-decoration,
|
|
@@ -804,9 +849,6 @@ $btn-link: map-deep-merge(
|
|
|
804
849
|
box-shadow: $btn-focus-box-shadow,
|
|
805
850
|
text-decoration: $link-decoration,
|
|
806
851
|
),
|
|
807
|
-
active: (
|
|
808
|
-
box-shadow: clay-enable-shadows([none]),
|
|
809
|
-
),
|
|
810
852
|
disabled: (
|
|
811
853
|
box-shadow: none,
|
|
812
854
|
color: $btn-link-disabled-color,
|
|
@@ -854,8 +896,9 @@ $btn-outline-primary: map-deep-merge(
|
|
|
854
896
|
focus: (
|
|
855
897
|
box-shadow:
|
|
856
898
|
clay-enable-shadows(
|
|
857
|
-
|
|
858
|
-
$
|
|
899
|
+
#{$btn-active-box-shadow,
|
|
900
|
+
0 0 0 $btn-focus-width rgba($primary, 0.5)},
|
|
901
|
+
$c-unset
|
|
859
902
|
),
|
|
860
903
|
),
|
|
861
904
|
),
|
|
@@ -887,8 +930,9 @@ $btn-outline-secondary: map-deep-merge(
|
|
|
887
930
|
focus: (
|
|
888
931
|
box-shadow:
|
|
889
932
|
clay-enable-shadows(
|
|
890
|
-
|
|
891
|
-
0 0 0 $btn-focus-width rgba($secondary, 0.5)
|
|
933
|
+
#{$btn-active-box-shadow,
|
|
934
|
+
0 0 0 $btn-focus-width rgba($secondary, 0.5)},
|
|
935
|
+
0 0 0 $btn-focus-width rgba($secondary, 0.5)
|
|
892
936
|
),
|
|
893
937
|
),
|
|
894
938
|
),
|
|
@@ -920,8 +964,9 @@ $btn-outline-success: map-deep-merge(
|
|
|
920
964
|
focus: (
|
|
921
965
|
box-shadow:
|
|
922
966
|
clay-enable-shadows(
|
|
923
|
-
|
|
924
|
-
0 0 0 $btn-focus-width rgba($success, 0.5)
|
|
967
|
+
#{$btn-active-box-shadow,
|
|
968
|
+
0 0 0 $btn-focus-width rgba($success, 0.5)},
|
|
969
|
+
0 0 0 $btn-focus-width rgba($success, 0.5)
|
|
925
970
|
),
|
|
926
971
|
),
|
|
927
972
|
),
|
|
@@ -953,8 +998,9 @@ $btn-outline-info: map-deep-merge(
|
|
|
953
998
|
focus: (
|
|
954
999
|
box-shadow:
|
|
955
1000
|
clay-enable-shadows(
|
|
956
|
-
|
|
957
|
-
0 0 0 $btn-focus-width rgba($info, 0.5)
|
|
1001
|
+
#{$btn-active-box-shadow,
|
|
1002
|
+
0 0 0 $btn-focus-width rgba($info, 0.5)},
|
|
1003
|
+
0 0 0 $btn-focus-width rgba($info, 0.5)
|
|
958
1004
|
),
|
|
959
1005
|
),
|
|
960
1006
|
),
|
|
@@ -986,8 +1032,9 @@ $btn-outline-warning: map-deep-merge(
|
|
|
986
1032
|
focus: (
|
|
987
1033
|
box-shadow:
|
|
988
1034
|
clay-enable-shadows(
|
|
989
|
-
|
|
990
|
-
0 0 0 $btn-focus-width rgba($warning, 0.5)
|
|
1035
|
+
#{$btn-active-box-shadow,
|
|
1036
|
+
0 0 0 $btn-focus-width rgba($warning, 0.5)},
|
|
1037
|
+
0 0 0 $btn-focus-width rgba($warning, 0.5)
|
|
991
1038
|
),
|
|
992
1039
|
),
|
|
993
1040
|
),
|
|
@@ -1019,8 +1066,9 @@ $btn-outline-danger: map-deep-merge(
|
|
|
1019
1066
|
focus: (
|
|
1020
1067
|
box-shadow:
|
|
1021
1068
|
clay-enable-shadows(
|
|
1022
|
-
|
|
1023
|
-
0 0 0 $btn-focus-width rgba($danger, 0.5)
|
|
1069
|
+
#{$btn-active-box-shadow,
|
|
1070
|
+
0 0 0 $btn-focus-width rgba($danger, 0.5)},
|
|
1071
|
+
0 0 0 $btn-focus-width rgba($danger, 0.5)
|
|
1024
1072
|
),
|
|
1025
1073
|
),
|
|
1026
1074
|
),
|
|
@@ -1052,8 +1100,9 @@ $btn-outline-light: map-deep-merge(
|
|
|
1052
1100
|
focus: (
|
|
1053
1101
|
box-shadow:
|
|
1054
1102
|
clay-enable-shadows(
|
|
1055
|
-
|
|
1056
|
-
0 0 0 $btn-focus-width rgba($light, 0.5)
|
|
1103
|
+
#{$btn-active-box-shadow,
|
|
1104
|
+
0 0 0 $btn-focus-width rgba($light, 0.5)},
|
|
1105
|
+
0 0 0 $btn-focus-width rgba($light, 0.5)
|
|
1057
1106
|
),
|
|
1058
1107
|
),
|
|
1059
1108
|
),
|
|
@@ -1084,9 +1133,9 @@ $btn-outline-dark: map-deep-merge(
|
|
|
1084
1133
|
color: color-yiq($dark),
|
|
1085
1134
|
focus: (
|
|
1086
1135
|
box-shadow:
|
|
1087
|
-
|
|
1088
|
-
$
|
|
1089
|
-
|
|
1136
|
+
clay-enable-shadows(
|
|
1137
|
+
#{$btn-active-box-shadow,
|
|
1138
|
+
0 0 0 $btn-focus-width rgba($dark, 0.5)},
|
|
1090
1139
|
0 0 0 $btn-focus-width rgba($dark, 0.5)
|
|
1091
1140
|
),
|
|
1092
1141
|
),
|
|
@@ -951,7 +951,7 @@ $card-type-template-after-highlight: () !default;
|
|
|
951
951
|
$card-type-template-aspect-ratio: () !default;
|
|
952
952
|
$card-type-template-aspect-ratio: map-deep-merge(
|
|
953
953
|
(
|
|
954
|
-
border-width:
|
|
954
|
+
border-width: 0px,
|
|
955
955
|
color: $gray-600,
|
|
956
956
|
horizontal: 16,
|
|
957
957
|
text-align: center,
|
|
@@ -165,8 +165,8 @@ $dropdown-item-base: () !default;
|
|
|
165
165
|
$dropdown-item-base: map-deep-merge(
|
|
166
166
|
(
|
|
167
167
|
background-color: transparent,
|
|
168
|
-
border-radius:
|
|
169
|
-
border-width:
|
|
168
|
+
border-radius: 0px,
|
|
169
|
+
border-width: 0px,
|
|
170
170
|
clear: both,
|
|
171
171
|
color: $dropdown-link-color,
|
|
172
172
|
cursor: $link-cursor,
|
|
@@ -405,7 +405,7 @@ $dropdown-divider-bg: $gray-200 !default;
|
|
|
405
405
|
|
|
406
406
|
/// @deprecated as of v3.x use map $dropdown-divider instead
|
|
407
407
|
|
|
408
|
-
$dropdown-divider-margin-y:
|
|
408
|
+
$dropdown-divider-margin-y: 0.5rem !default;
|
|
409
409
|
|
|
410
410
|
$dropdown-divider: () !default;
|
|
411
411
|
$dropdown-divider: map-merge(
|
|
@@ -884,7 +884,7 @@ $dropdown-action: map-deep-merge(
|
|
|
884
884
|
|
|
885
885
|
$dropdown-alert-font-size: null !default;
|
|
886
886
|
$dropdown-alert-line-height: normal !default;
|
|
887
|
-
$dropdown-alert-margin:
|
|
887
|
+
$dropdown-alert-margin: 0.5rem !default;
|
|
888
888
|
$dropdown-alert-padding-x: $dropdown-header-padding-x !default;
|
|
889
889
|
$dropdown-alert-padding-y: $dropdown-header-padding-y !default;
|
|
890
890
|
|