bootstrap 4.5.0 → 4.5.2
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of bootstrap might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/assets/javascripts/bootstrap-sprockets.js +5 -5
- data/assets/javascripts/bootstrap.js +79 -89
- data/assets/javascripts/bootstrap.min.js +3 -3
- data/assets/javascripts/bootstrap/alert.js +6 -19
- data/assets/javascripts/bootstrap/button.js +8 -23
- data/assets/javascripts/bootstrap/carousel.js +11 -71
- data/assets/javascripts/bootstrap/collapse.js +9 -69
- data/assets/javascripts/bootstrap/dropdown.js +10 -70
- data/assets/javascripts/bootstrap/modal.js +28 -71
- data/assets/javascripts/bootstrap/popover.js +10 -74
- data/assets/javascripts/bootstrap/scrollspy.js +8 -68
- data/assets/javascripts/bootstrap/tab.js +6 -19
- data/assets/javascripts/bootstrap/toast.js +16 -70
- data/assets/javascripts/bootstrap/tooltip.js +15 -75
- data/assets/javascripts/bootstrap/util.js +5 -5
- data/assets/stylesheets/_bootstrap-grid.scss +2 -2
- data/assets/stylesheets/_bootstrap-reboot.scss +2 -2
- data/assets/stylesheets/_bootstrap.scss +2 -2
- data/assets/stylesheets/bootstrap/_card.scss +10 -6
- data/assets/stylesheets/bootstrap/_custom-forms.scss +5 -4
- data/assets/stylesheets/bootstrap/_grid.scss +1 -5
- data/assets/stylesheets/bootstrap/_modal.scss +0 -1
- data/assets/stylesheets/bootstrap/_nav.scss +2 -0
- data/assets/stylesheets/bootstrap/_reboot.scss +1 -1
- data/assets/stylesheets/bootstrap/_toasts.scss +4 -2
- data/assets/stylesheets/bootstrap/_variables.scss +8 -15
- data/assets/stylesheets/bootstrap/mixins/_forms.scss +1 -0
- data/assets/stylesheets/bootstrap/mixins/_grid-framework.scss +0 -1
- data/assets/stylesheets/bootstrap/mixins/_grid.scss +7 -7
- data/assets/stylesheets/bootstrap/utilities/_text.scss +2 -1
- data/lib/bootstrap/version.rb +2 -2
- metadata +2 -2
@@ -1,87 +1,22 @@
|
|
1
1
|
/*!
|
2
|
-
* Bootstrap tooltip.js v4.5.
|
2
|
+
* Bootstrap tooltip.js v4.5.2 (https://getbootstrap.com/)
|
3
3
|
* Copyright 2011-2020 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
|
4
|
-
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/
|
4
|
+
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
|
5
5
|
*/
|
6
6
|
(function (global, factory) {
|
7
7
|
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory(require('jquery'), require('popper.js'), require('./util.js')) :
|
8
8
|
typeof define === 'function' && define.amd ? define(['jquery', 'popper.js', './util.js'], factory) :
|
9
|
-
(global = global || self, global.Tooltip = factory(global.jQuery, global.Popper, global.Util));
|
9
|
+
(global = typeof globalThis !== 'undefined' ? globalThis : global || self, global.Tooltip = factory(global.jQuery, global.Popper, global.Util));
|
10
10
|
}(this, (function ($, Popper, Util) { 'use strict';
|
11
11
|
|
12
12
|
$ = $ && Object.prototype.hasOwnProperty.call($, 'default') ? $['default'] : $;
|
13
13
|
Popper = Popper && Object.prototype.hasOwnProperty.call(Popper, 'default') ? Popper['default'] : Popper;
|
14
14
|
Util = Util && Object.prototype.hasOwnProperty.call(Util, 'default') ? Util['default'] : Util;
|
15
15
|
|
16
|
-
function _defineProperties(target, props) {
|
17
|
-
for (var i = 0; i < props.length; i++) {
|
18
|
-
var descriptor = props[i];
|
19
|
-
descriptor.enumerable = descriptor.enumerable || false;
|
20
|
-
descriptor.configurable = true;
|
21
|
-
if ("value" in descriptor) descriptor.writable = true;
|
22
|
-
Object.defineProperty(target, descriptor.key, descriptor);
|
23
|
-
}
|
24
|
-
}
|
25
|
-
|
26
|
-
function _createClass(Constructor, protoProps, staticProps) {
|
27
|
-
if (protoProps) _defineProperties(Constructor.prototype, protoProps);
|
28
|
-
if (staticProps) _defineProperties(Constructor, staticProps);
|
29
|
-
return Constructor;
|
30
|
-
}
|
31
|
-
|
32
|
-
function _defineProperty(obj, key, value) {
|
33
|
-
if (key in obj) {
|
34
|
-
Object.defineProperty(obj, key, {
|
35
|
-
value: value,
|
36
|
-
enumerable: true,
|
37
|
-
configurable: true,
|
38
|
-
writable: true
|
39
|
-
});
|
40
|
-
} else {
|
41
|
-
obj[key] = value;
|
42
|
-
}
|
43
|
-
|
44
|
-
return obj;
|
45
|
-
}
|
46
|
-
|
47
|
-
function ownKeys(object, enumerableOnly) {
|
48
|
-
var keys = Object.keys(object);
|
49
|
-
|
50
|
-
if (Object.getOwnPropertySymbols) {
|
51
|
-
var symbols = Object.getOwnPropertySymbols(object);
|
52
|
-
if (enumerableOnly) symbols = symbols.filter(function (sym) {
|
53
|
-
return Object.getOwnPropertyDescriptor(object, sym).enumerable;
|
54
|
-
});
|
55
|
-
keys.push.apply(keys, symbols);
|
56
|
-
}
|
57
|
-
|
58
|
-
return keys;
|
59
|
-
}
|
60
|
-
|
61
|
-
function _objectSpread2(target) {
|
62
|
-
for (var i = 1; i < arguments.length; i++) {
|
63
|
-
var source = arguments[i] != null ? arguments[i] : {};
|
64
|
-
|
65
|
-
if (i % 2) {
|
66
|
-
ownKeys(Object(source), true).forEach(function (key) {
|
67
|
-
_defineProperty(target, key, source[key]);
|
68
|
-
});
|
69
|
-
} else if (Object.getOwnPropertyDescriptors) {
|
70
|
-
Object.defineProperties(target, Object.getOwnPropertyDescriptors(source));
|
71
|
-
} else {
|
72
|
-
ownKeys(Object(source)).forEach(function (key) {
|
73
|
-
Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key));
|
74
|
-
});
|
75
|
-
}
|
76
|
-
}
|
77
|
-
|
78
|
-
return target;
|
79
|
-
}
|
80
|
-
|
81
16
|
/**
|
82
17
|
* --------------------------------------------------------------------------
|
83
|
-
* Bootstrap (v4.5.
|
84
|
-
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/
|
18
|
+
* Bootstrap (v4.5.2): tools/sanitizer.js
|
19
|
+
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
|
85
20
|
* --------------------------------------------------------------------------
|
86
21
|
*/
|
87
22
|
var uriAttrs = ['background', 'cite', 'href', 'itemtype', 'longdesc', 'poster', 'src', 'xlink:href'];
|
@@ -199,6 +134,11 @@
|
|
199
134
|
return createdDocument.body.innerHTML;
|
200
135
|
}
|
201
136
|
|
137
|
+
function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
138
|
+
|
139
|
+
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
|
140
|
+
|
141
|
+
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
|
202
142
|
/**
|
203
143
|
* ------------------------------------------------------------------------
|
204
144
|
* Constants
|
@@ -206,7 +146,7 @@
|
|
206
146
|
*/
|
207
147
|
|
208
148
|
var NAME = 'tooltip';
|
209
|
-
var VERSION = '4.5.
|
149
|
+
var VERSION = '4.5.2';
|
210
150
|
var DATA_KEY = 'bs.tooltip';
|
211
151
|
var EVENT_KEY = "." + DATA_KEY;
|
212
152
|
var JQUERY_NO_CONFLICT = $.fn[NAME];
|
@@ -594,7 +534,7 @@
|
|
594
534
|
return _this3._handlePopperPlacementChange(data);
|
595
535
|
}
|
596
536
|
};
|
597
|
-
return
|
537
|
+
return _extends({}, defaultBsConfig, this.config.popperConfig);
|
598
538
|
};
|
599
539
|
|
600
540
|
_proto._getOffset = function _getOffset() {
|
@@ -604,7 +544,7 @@
|
|
604
544
|
|
605
545
|
if (typeof this.config.offset === 'function') {
|
606
546
|
offset.fn = function (data) {
|
607
|
-
data.offsets =
|
547
|
+
data.offsets = _extends({}, data.offsets, _this4.config.offset(data.offsets, _this4.element) || {});
|
608
548
|
return data;
|
609
549
|
};
|
610
550
|
} else {
|
@@ -659,7 +599,7 @@
|
|
659
599
|
$(this.element).closest('.modal').on('hide.bs.modal', this._hideModalHandler);
|
660
600
|
|
661
601
|
if (this.config.selector) {
|
662
|
-
this.config =
|
602
|
+
this.config = _extends({}, this.config, {
|
663
603
|
trigger: 'manual',
|
664
604
|
selector: ''
|
665
605
|
});
|
@@ -759,7 +699,7 @@
|
|
759
699
|
delete dataAttributes[dataAttr];
|
760
700
|
}
|
761
701
|
});
|
762
|
-
config =
|
702
|
+
config = _extends({}, this.constructor.Default, dataAttributes, typeof config === 'object' && config ? config : {});
|
763
703
|
|
764
704
|
if (typeof config.delay === 'number') {
|
765
705
|
config.delay = {
|
@@ -1,20 +1,20 @@
|
|
1
1
|
/*!
|
2
|
-
* Bootstrap util.js v4.5.
|
2
|
+
* Bootstrap util.js v4.5.2 (https://getbootstrap.com/)
|
3
3
|
* Copyright 2011-2020 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
|
4
|
-
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/
|
4
|
+
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
|
5
5
|
*/
|
6
6
|
(function (global, factory) {
|
7
7
|
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory(require('jquery')) :
|
8
8
|
typeof define === 'function' && define.amd ? define(['jquery'], factory) :
|
9
|
-
(global = global || self, global.Util = factory(global.jQuery));
|
9
|
+
(global = typeof globalThis !== 'undefined' ? globalThis : global || self, global.Util = factory(global.jQuery));
|
10
10
|
}(this, (function ($) { 'use strict';
|
11
11
|
|
12
12
|
$ = $ && Object.prototype.hasOwnProperty.call($, 'default') ? $['default'] : $;
|
13
13
|
|
14
14
|
/**
|
15
15
|
* --------------------------------------------------------------------------
|
16
|
-
* Bootstrap (v4.5.
|
17
|
-
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/
|
16
|
+
* Bootstrap (v4.5.2): util.js
|
17
|
+
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
|
18
18
|
* --------------------------------------------------------------------------
|
19
19
|
*/
|
20
20
|
/**
|
@@ -1,8 +1,8 @@
|
|
1
1
|
/*!
|
2
|
-
* Bootstrap Grid v4.5.
|
2
|
+
* Bootstrap Grid v4.5.2 (https://getbootstrap.com/)
|
3
3
|
* Copyright 2011-2020 The Bootstrap Authors
|
4
4
|
* Copyright 2011-2020 Twitter, Inc.
|
5
|
-
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/
|
5
|
+
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
|
6
6
|
*/
|
7
7
|
|
8
8
|
html {
|
@@ -1,8 +1,8 @@
|
|
1
1
|
/*!
|
2
|
-
* Bootstrap Reboot v4.5.
|
2
|
+
* Bootstrap Reboot v4.5.2 (https://getbootstrap.com/)
|
3
3
|
* Copyright 2011-2020 The Bootstrap Authors
|
4
4
|
* Copyright 2011-2020 Twitter, Inc.
|
5
|
-
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/
|
5
|
+
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
|
6
6
|
* Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md)
|
7
7
|
*/
|
8
8
|
|
@@ -1,8 +1,8 @@
|
|
1
1
|
/*!
|
2
|
-
* Bootstrap v4.5.
|
2
|
+
* Bootstrap v4.5.2 (https://getbootstrap.com/)
|
3
3
|
* Copyright 2011-2020 The Bootstrap Authors
|
4
4
|
* Copyright 2011-2020 Twitter, Inc.
|
5
|
-
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/
|
5
|
+
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
|
6
6
|
*/
|
7
7
|
|
8
8
|
@import "bootstrap/functions";
|
@@ -33,6 +33,13 @@
|
|
33
33
|
@include border-bottom-radius($card-inner-border-radius);
|
34
34
|
}
|
35
35
|
}
|
36
|
+
|
37
|
+
// Due to specificity of the above selector (`.card > .list-group`), we must
|
38
|
+
// use a child selector here to prevent double borders.
|
39
|
+
> .card-header + .list-group,
|
40
|
+
> .list-group + .card-footer {
|
41
|
+
border-top: 0;
|
42
|
+
}
|
36
43
|
}
|
37
44
|
|
38
45
|
.card-body {
|
@@ -83,12 +90,6 @@
|
|
83
90
|
&:first-child {
|
84
91
|
@include border-radius($card-inner-border-radius $card-inner-border-radius 0 0);
|
85
92
|
}
|
86
|
-
|
87
|
-
+ .list-group {
|
88
|
-
.list-group-item:first-child {
|
89
|
-
border-top: 0;
|
90
|
-
}
|
91
|
-
}
|
92
93
|
}
|
93
94
|
|
94
95
|
.card-footer {
|
@@ -127,6 +128,7 @@
|
|
127
128
|
bottom: 0;
|
128
129
|
left: 0;
|
129
130
|
padding: $card-img-overlay-padding;
|
131
|
+
@include border-radius($card-inner-border-radius);
|
130
132
|
}
|
131
133
|
|
132
134
|
.card-img,
|
@@ -262,6 +264,8 @@
|
|
262
264
|
//
|
263
265
|
|
264
266
|
.accordion {
|
267
|
+
overflow-anchor: none;
|
268
|
+
|
265
269
|
> .card {
|
266
270
|
overflow: hidden;
|
267
271
|
|
@@ -9,6 +9,7 @@
|
|
9
9
|
|
10
10
|
.custom-control {
|
11
11
|
position: relative;
|
12
|
+
z-index: 1;
|
12
13
|
display: block;
|
13
14
|
min-height: $font-size-base * $line-height-base;
|
14
15
|
padding-left: $custom-control-gutter + $custom-control-indicator-size;
|
@@ -135,10 +136,10 @@
|
|
135
136
|
|
136
137
|
.custom-control-input:disabled {
|
137
138
|
&:checked ~ .custom-control-label::before {
|
138
|
-
|
139
|
+
@include gradient-bg($custom-control-indicator-checked-disabled-bg);
|
139
140
|
}
|
140
141
|
&:indeterminate ~ .custom-control-label::before {
|
141
|
-
|
142
|
+
@include gradient-bg($custom-control-indicator-checked-disabled-bg);
|
142
143
|
}
|
143
144
|
}
|
144
145
|
}
|
@@ -161,7 +162,7 @@
|
|
161
162
|
|
162
163
|
.custom-control-input:disabled {
|
163
164
|
&:checked ~ .custom-control-label::before {
|
164
|
-
|
165
|
+
@include gradient-bg($custom-control-indicator-checked-disabled-bg);
|
165
166
|
}
|
166
167
|
}
|
167
168
|
}
|
@@ -204,7 +205,7 @@
|
|
204
205
|
|
205
206
|
.custom-control-input:disabled {
|
206
207
|
&:checked ~ .custom-control-label::before {
|
207
|
-
|
208
|
+
@include gradient-bg($custom-control-indicator-checked-disabled-bg);
|
208
209
|
}
|
209
210
|
}
|
210
211
|
}
|
@@ -4,11 +4,7 @@
|
|
4
4
|
|
5
5
|
@if $enable-grid-classes {
|
6
6
|
// Single container class with breakpoint max-widths
|
7
|
-
.container
|
8
|
-
@include make-container();
|
9
|
-
@include make-container-max-widths();
|
10
|
-
}
|
11
|
-
|
7
|
+
.container,
|
12
8
|
// 100% wide container at all breakpoints
|
13
9
|
.container-fluid {
|
14
10
|
@include make-container();
|
@@ -182,7 +182,6 @@
|
|
182
182
|
// Place margin between footer elements
|
183
183
|
// This solution is far from ideal because of the universal selector usage,
|
184
184
|
// but is needed to fix https://github.com/twbs/bootstrap/issues/24800
|
185
|
-
// stylelint-disable-next-line selector-max-universal
|
186
185
|
> * {
|
187
186
|
margin: $modal-footer-margin-between / 2;
|
188
187
|
}
|
@@ -199,7 +199,7 @@ a {
|
|
199
199
|
// causes specificity issues in many other styles that are too complex to fix.
|
200
200
|
// See https://github.com/twbs/bootstrap/issues/19402
|
201
201
|
|
202
|
-
a:not([href]) {
|
202
|
+
a:not([href]):not([class]) {
|
203
203
|
color: inherit;
|
204
204
|
text-decoration: none;
|
205
205
|
|
@@ -1,13 +1,14 @@
|
|
1
1
|
.toast {
|
2
|
+
// Prevents from shrinking in IE11, when in a flex container
|
3
|
+
// See https://github.com/twbs/bootstrap/issues/28341
|
4
|
+
flex-basis: $toast-max-width;
|
2
5
|
max-width: $toast-max-width;
|
3
|
-
overflow: hidden; // cheap rounded corners on nested items
|
4
6
|
@include font-size($toast-font-size);
|
5
7
|
color: $toast-color;
|
6
8
|
background-color: $toast-background-color;
|
7
9
|
background-clip: padding-box;
|
8
10
|
border: $toast-border-width solid $toast-border-color;
|
9
11
|
box-shadow: $toast-box-shadow;
|
10
|
-
backdrop-filter: blur(10px);
|
11
12
|
opacity: 0;
|
12
13
|
@include border-radius($toast-border-radius);
|
13
14
|
|
@@ -37,6 +38,7 @@
|
|
37
38
|
background-color: $toast-header-background-color;
|
38
39
|
background-clip: padding-box;
|
39
40
|
border-bottom: $toast-border-width solid $toast-header-border-color;
|
41
|
+
@include border-top-radius(subtract($toast-border-radius, $toast-border-width));
|
40
42
|
}
|
41
43
|
|
42
44
|
.toast-body {
|
@@ -18,7 +18,6 @@ $gray-900: #212529 !default;
|
|
18
18
|
$black: #000 !default;
|
19
19
|
|
20
20
|
$grays: () !default;
|
21
|
-
// stylelint-disable-next-line scss/dollar-variable-default
|
22
21
|
$grays: map-merge(
|
23
22
|
(
|
24
23
|
"100": $gray-100,
|
@@ -46,7 +45,6 @@ $teal: #20c997 !default;
|
|
46
45
|
$cyan: #17a2b8 !default;
|
47
46
|
|
48
47
|
$colors: () !default;
|
49
|
-
// stylelint-disable-next-line scss/dollar-variable-default
|
50
48
|
$colors: map-merge(
|
51
49
|
(
|
52
50
|
"blue": $blue,
|
@@ -76,7 +74,6 @@ $light: $gray-100 !default;
|
|
76
74
|
$dark: $gray-800 !default;
|
77
75
|
|
78
76
|
$theme-colors: () !default;
|
79
|
-
// stylelint-disable-next-line scss/dollar-variable-default
|
80
77
|
$theme-colors: map-merge(
|
81
78
|
(
|
82
79
|
"primary": $primary,
|
@@ -103,11 +100,11 @@ $yiq-text-light: $white !default;
|
|
103
100
|
|
104
101
|
// Characters which are escaped by the escape-svg function
|
105
102
|
$escaped-characters: (
|
106
|
-
("<","%3c"),
|
107
|
-
(">","%3e"),
|
108
|
-
("#","%23"),
|
109
|
-
("(","%28"),
|
110
|
-
(")","%29"),
|
103
|
+
("<", "%3c"),
|
104
|
+
(">", "%3e"),
|
105
|
+
("#", "%23"),
|
106
|
+
("(", "%28"),
|
107
|
+
(")", "%29"),
|
111
108
|
) !default;
|
112
109
|
|
113
110
|
|
@@ -138,7 +135,6 @@ $enable-deprecation-messages: true !default;
|
|
138
135
|
|
139
136
|
$spacer: 1rem !default;
|
140
137
|
$spacers: () !default;
|
141
|
-
// stylelint-disable-next-line scss/dollar-variable-default
|
142
138
|
$spacers: map-merge(
|
143
139
|
(
|
144
140
|
0: 0,
|
@@ -153,7 +149,6 @@ $spacers: map-merge(
|
|
153
149
|
|
154
150
|
// This variable affects the `.h-*` and `.w-*` classes.
|
155
151
|
$sizes: () !default;
|
156
|
-
// stylelint-disable-next-line scss/dollar-variable-default
|
157
152
|
$sizes: map-merge(
|
158
153
|
(
|
159
154
|
25: 25%,
|
@@ -264,7 +259,6 @@ $transition-fade: opacity .15s linear !default;
|
|
264
259
|
$transition-collapse: height .35s ease !default;
|
265
260
|
|
266
261
|
$embed-responsive-aspect-ratios: () !default;
|
267
|
-
// stylelint-disable-next-line scss/dollar-variable-default
|
268
262
|
$embed-responsive-aspect-ratios: join(
|
269
263
|
(
|
270
264
|
(21 9),
|
@@ -546,7 +540,7 @@ $custom-control-label-disabled-color: $gray-600 !default;
|
|
546
540
|
$custom-control-indicator-checked-color: $component-active-color !default;
|
547
541
|
$custom-control-indicator-checked-bg: $component-active-bg !default;
|
548
542
|
$custom-control-indicator-checked-disabled-bg: rgba(theme-color("primary"), .5) !default;
|
549
|
-
$custom-control-indicator-checked-box-shadow:
|
543
|
+
$custom-control-indicator-checked-box-shadow: null !default;
|
550
544
|
$custom-control-indicator-checked-border-color: $custom-control-indicator-checked-bg !default;
|
551
545
|
|
552
546
|
$custom-control-indicator-focus-box-shadow: $input-focus-box-shadow !default;
|
@@ -554,7 +548,7 @@ $custom-control-indicator-focus-border-color: $input-focus-border-color !defau
|
|
554
548
|
|
555
549
|
$custom-control-indicator-active-color: $component-active-color !default;
|
556
550
|
$custom-control-indicator-active-bg: lighten($component-active-bg, 35%) !default;
|
557
|
-
$custom-control-indicator-active-box-shadow:
|
551
|
+
$custom-control-indicator-active-box-shadow: null !default;
|
558
552
|
$custom-control-indicator-active-border-color: $custom-control-indicator-active-bg !default;
|
559
553
|
|
560
554
|
$custom-checkbox-indicator-border-radius: $border-radius !default;
|
@@ -563,7 +557,7 @@ $custom-checkbox-indicator-icon-checked: url("data:image/svg+xml,<svg xml
|
|
563
557
|
$custom-checkbox-indicator-indeterminate-bg: $component-active-bg !default;
|
564
558
|
$custom-checkbox-indicator-indeterminate-color: $custom-control-indicator-checked-color !default;
|
565
559
|
$custom-checkbox-indicator-icon-indeterminate: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'><path stroke='#{$custom-checkbox-indicator-indeterminate-color}' d='M0 2h4'/></svg>") !default;
|
566
|
-
$custom-checkbox-indicator-indeterminate-box-shadow:
|
560
|
+
$custom-checkbox-indicator-indeterminate-box-shadow: null !default;
|
567
561
|
$custom-checkbox-indicator-indeterminate-border-color: $custom-checkbox-indicator-indeterminate-bg !default;
|
568
562
|
|
569
563
|
$custom-radio-indicator-border-radius: 50% !default;
|
@@ -668,7 +662,6 @@ $form-feedback-icon-invalid-color: $form-feedback-invalid-color !default;
|
|
668
662
|
$form-feedback-icon-invalid: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='#{$form-feedback-icon-invalid-color}' viewBox='0 0 12 12'><circle cx='6' cy='6' r='4.5'/><path stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/><circle cx='6' cy='8.2' r='.6' fill='#{$form-feedback-icon-invalid-color}' stroke='none'/></svg>") !default;
|
669
663
|
|
670
664
|
$form-validation-states: () !default;
|
671
|
-
// stylelint-disable-next-line scss/dollar-variable-default
|
672
665
|
$form-validation-states: map-merge(
|
673
666
|
(
|
674
667
|
"valid": (
|