elixir-toolkit-theme 1.22.0 → 1.24.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.
- checksums.yaml +4 -4
- data/_includes/contributor-minitiles-page.html +1 -1
- data/_includes/footer.html +25 -2
- data/_includes/github-buttons.html +6 -2
- data/_includes/head.html +16 -0
- data/_includes/resource-table-all.html +2 -2
- data/_includes/resource-table-page.html +2 -2
- data/_includes/section-navigation-tiles-simple.html +3 -0
- data/_includes/section-navigation-tiles.html +2 -2
- data/_includes/sidebar.html +1 -1
- data/_includes/topnav.html +9 -1
- data/_layouts/default.html +2 -2
- data/_sass/_variables.scss +1 -0
- data/_sass/bootstrap/_accordion.scss +56 -25
- data/_sass/bootstrap/_alert.scss +18 -4
- data/_sass/bootstrap/_badge.scss +14 -5
- data/_sass/bootstrap/_breadcrumb.scss +22 -10
- data/_sass/bootstrap/_button-group.scss +4 -1
- data/_sass/bootstrap/_buttons.scss +125 -29
- data/_sass/bootstrap/_card.scss +55 -37
- data/_sass/bootstrap/_carousel.scss +0 -3
- data/_sass/bootstrap/_close.scss +1 -1
- data/_sass/bootstrap/_containers.scss +1 -1
- data/_sass/bootstrap/_dropdown.scss +85 -76
- data/_sass/bootstrap/_functions.scss +9 -9
- data/_sass/bootstrap/_grid.scss +3 -3
- data/_sass/bootstrap/_helpers.scss +1 -0
- data/_sass/bootstrap/_list-group.scss +48 -30
- data/_sass/bootstrap/_maps.scss +54 -0
- data/_sass/bootstrap/_modal.scss +71 -43
- data/_sass/bootstrap/_nav.scss +53 -20
- data/_sass/bootstrap/_navbar.scss +93 -150
- data/_sass/bootstrap/_offcanvas.scss +120 -59
- data/_sass/bootstrap/_pagination.scss +66 -21
- data/_sass/bootstrap/_placeholders.scss +1 -1
- data/_sass/bootstrap/_popover.scss +90 -52
- data/_sass/bootstrap/_progress.scss +20 -9
- data/_sass/bootstrap/_reboot.scss +25 -40
- data/_sass/bootstrap/_root.scss +40 -21
- data/_sass/bootstrap/_spinners.scss +38 -22
- data/_sass/bootstrap/_tables.scss +32 -23
- data/_sass/bootstrap/_toasts.scss +38 -16
- data/_sass/bootstrap/_tooltip.scss +61 -56
- data/_sass/bootstrap/_type.scss +2 -0
- data/_sass/bootstrap/_utilities.scss +43 -26
- data/_sass/bootstrap/_variables.scss +128 -135
- data/_sass/bootstrap/bootstrap-grid.scss +3 -6
- data/_sass/bootstrap/bootstrap-reboot.scss +3 -7
- data/_sass/bootstrap/bootstrap-utilities.scss +6 -6
- data/_sass/bootstrap/bootstrap.scss +4 -6
- data/_sass/bootstrap/forms/_floating-labels.scss +15 -3
- data/_sass/bootstrap/forms/_form-check.scss +28 -5
- data/_sass/bootstrap/forms/_form-control.scss +12 -37
- data/_sass/bootstrap/forms/_form-select.scss +0 -1
- data/_sass/bootstrap/forms/_input-group.scss +19 -8
- data/_sass/bootstrap/helpers/_color-bg.scss +10 -0
- data/_sass/bootstrap/helpers/_colored-links.scss +2 -2
- data/_sass/bootstrap/helpers/_position.scss +7 -1
- data/_sass/bootstrap/helpers/_ratio.scss +2 -2
- data/_sass/bootstrap/helpers/_vr.scss +1 -1
- data/_sass/bootstrap/mixins/_alert.scss +7 -3
- data/_sass/bootstrap/mixins/_banner.scss +9 -0
- data/_sass/bootstrap/mixins/_breakpoints.scss +8 -8
- data/_sass/bootstrap/mixins/_buttons.scss +32 -95
- data/_sass/bootstrap/mixins/_container.scss +4 -2
- data/_sass/bootstrap/mixins/_forms.scss +18 -10
- data/_sass/bootstrap/mixins/_gradients.scss +1 -1
- data/_sass/bootstrap/mixins/_grid.scss +12 -12
- data/_sass/bootstrap/mixins/_pagination.scss +4 -25
- data/_sass/bootstrap/mixins/_reset-text.scss +1 -1
- data/_sass/bootstrap/mixins/_table-variants.scss +12 -9
- data/_sass/bootstrap/mixins/_utilities.scss +13 -5
- data/assets/css/main.scss +22 -3
- data/assets/img/ett_compact_logo_bw.svg +22 -0
- data/assets/js/bootstrap.bundle.min.js +3 -3
- data/assets/js/bootstrap.bundle.min.js.map +1 -1
- data/assets/js/search-data.json +1 -1
- data/assets/js/search.js +2 -7
- metadata +6 -2
data/_sass/bootstrap/_modal.scss
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
// stylelint-disable function-disallowed-list
|
2
|
+
|
1
3
|
// .modal-open - body class for killing the scroll
|
2
4
|
// .modal - container to scroll within
|
3
5
|
// .modal-dialog - positioning shell for the actual modal
|
@@ -6,10 +8,34 @@
|
|
6
8
|
|
7
9
|
// Container that the modal scrolls within
|
8
10
|
.modal {
|
11
|
+
// scss-docs-start modal-css-vars
|
12
|
+
--#{$prefix}modal-zindex: #{$zindex-modal};
|
13
|
+
--#{$prefix}modal-width: #{$modal-md};
|
14
|
+
--#{$prefix}modal-padding: #{$modal-inner-padding};
|
15
|
+
--#{$prefix}modal-margin: #{$modal-dialog-margin};
|
16
|
+
--#{$prefix}modal-color: #{$modal-content-color};
|
17
|
+
--#{$prefix}modal-bg: #{$modal-content-bg};
|
18
|
+
--#{$prefix}modal-border-color: #{$modal-content-border-color};
|
19
|
+
--#{$prefix}modal-border-width: #{$modal-content-border-width};
|
20
|
+
--#{$prefix}modal-border-radius: #{$modal-content-border-radius};
|
21
|
+
--#{$prefix}modal-box-shadow: #{$modal-content-box-shadow-xs};
|
22
|
+
--#{$prefix}modal-inner-border-radius: #{$modal-content-inner-border-radius};
|
23
|
+
--#{$prefix}modal-header-padding-x: #{$modal-header-padding-x};
|
24
|
+
--#{$prefix}modal-header-padding-y: #{$modal-header-padding-y};
|
25
|
+
--#{$prefix}modal-header-padding: #{$modal-header-padding}; // Todo in v6: Split this padding into x and y
|
26
|
+
--#{$prefix}modal-header-border-color: #{$modal-header-border-color};
|
27
|
+
--#{$prefix}modal-header-border-width: #{$modal-header-border-width};
|
28
|
+
--#{$prefix}modal-title-line-height: #{$modal-title-line-height};
|
29
|
+
--#{$prefix}modal-footer-gap: #{$modal-footer-margin-between};
|
30
|
+
--#{$prefix}modal-footer-bg: #{$modal-footer-bg};
|
31
|
+
--#{$prefix}modal-footer-border-color: #{$modal-footer-border-color};
|
32
|
+
--#{$prefix}modal-footer-border-width: #{$modal-footer-border-width};
|
33
|
+
// scss-docs-end modal-css-vars
|
34
|
+
|
9
35
|
position: fixed;
|
10
36
|
top: 0;
|
11
37
|
left: 0;
|
12
|
-
z-index: $zindex
|
38
|
+
z-index: var(--#{$prefix}modal-zindex);
|
13
39
|
display: none;
|
14
40
|
width: 100%;
|
15
41
|
height: 100%;
|
@@ -27,7 +53,7 @@
|
|
27
53
|
.modal-dialog {
|
28
54
|
position: relative;
|
29
55
|
width: auto;
|
30
|
-
margin: $modal-
|
56
|
+
margin: var(--#{$prefix}modal-margin);
|
31
57
|
// allow clicks to pass through for custom click handling to close modal
|
32
58
|
pointer-events: none;
|
33
59
|
|
@@ -47,7 +73,7 @@
|
|
47
73
|
}
|
48
74
|
|
49
75
|
.modal-dialog-scrollable {
|
50
|
-
height:
|
76
|
+
height: calc(100% - var(--#{$prefix}modal-margin) * 2);
|
51
77
|
|
52
78
|
.modal-content {
|
53
79
|
max-height: 100%;
|
@@ -62,7 +88,7 @@
|
|
62
88
|
.modal-dialog-centered {
|
63
89
|
display: flex;
|
64
90
|
align-items: center;
|
65
|
-
min-height:
|
91
|
+
min-height: calc(100% - var(--#{$prefix}modal-margin) * 2);
|
66
92
|
}
|
67
93
|
|
68
94
|
// Actual modal
|
@@ -72,20 +98,26 @@
|
|
72
98
|
flex-direction: column;
|
73
99
|
width: 100%; // Ensure `.modal-content` extends the full width of the parent `.modal-dialog`
|
74
100
|
// counteract the pointer-events: none; in the .modal-dialog
|
75
|
-
color: $modal-
|
101
|
+
color: var(--#{$prefix}modal-color);
|
76
102
|
pointer-events: auto;
|
77
|
-
background-color: $modal-
|
103
|
+
background-color: var(--#{$prefix}modal-bg);
|
78
104
|
background-clip: padding-box;
|
79
|
-
border: $modal-
|
80
|
-
@include border-radius($modal-
|
81
|
-
@include box-shadow($modal-
|
105
|
+
border: var(--#{$prefix}modal-border-width) solid var(--#{$prefix}modal-border-color);
|
106
|
+
@include border-radius(var(--#{$prefix}modal-border-radius));
|
107
|
+
@include box-shadow(var(--#{$prefix}modal-box-shadow));
|
82
108
|
// Remove focus outline from opened modal
|
83
109
|
outline: 0;
|
84
110
|
}
|
85
111
|
|
86
112
|
// Modal background
|
87
113
|
.modal-backdrop {
|
88
|
-
|
114
|
+
// scss-docs-start modal-backdrop-css-vars
|
115
|
+
--#{$prefix}backdrop-zindex: #{$zindex-modal-backdrop};
|
116
|
+
--#{$prefix}backdrop-bg: #{$modal-backdrop-bg};
|
117
|
+
--#{$prefix}backdrop-opacity: #{$modal-backdrop-opacity};
|
118
|
+
// scss-docs-end modal-backdrop-css-vars
|
119
|
+
|
120
|
+
@include overlay-backdrop(var(--#{$prefix}backdrop-zindex), var(--#{$prefix}backdrop-bg), var(--#{$prefix}backdrop-opacity));
|
89
121
|
}
|
90
122
|
|
91
123
|
// Modal header
|
@@ -95,20 +127,20 @@
|
|
95
127
|
flex-shrink: 0;
|
96
128
|
align-items: center;
|
97
129
|
justify-content: space-between; // Put modal header elements (title and dismiss) on opposite ends
|
98
|
-
padding: $modal-header-padding;
|
99
|
-
border-bottom: $modal-header-border-width solid $modal-header-border-color;
|
100
|
-
@include border-top-radius($modal-
|
130
|
+
padding: var(--#{$prefix}modal-header-padding);
|
131
|
+
border-bottom: var(--#{$prefix}modal-header-border-width) solid var(--#{$prefix}modal-header-border-color);
|
132
|
+
@include border-top-radius(var(--#{$prefix}modal-inner-border-radius));
|
101
133
|
|
102
134
|
.btn-close {
|
103
|
-
padding: ($modal-header-padding-y * .5) ($modal-header-padding-x * .5);
|
104
|
-
margin: ($modal-header-padding-y
|
135
|
+
padding: calc(var(--#{$prefix}modal-header-padding-y) * .5) calc(var(--#{$prefix}modal-header-padding-x) * .5);
|
136
|
+
margin: calc(-.5 * var(--#{$prefix}modal-header-padding-y)) calc(-.5 * var(--#{$prefix}modal-header-padding-x)) calc(-.5 * var(--#{$prefix}modal-header-padding-y)) auto;
|
105
137
|
}
|
106
138
|
}
|
107
139
|
|
108
140
|
// Title text within header
|
109
141
|
.modal-title {
|
110
142
|
margin-bottom: 0;
|
111
|
-
line-height: $modal-title-line-height;
|
143
|
+
line-height: var(--#{$prefix}modal-title-line-height);
|
112
144
|
}
|
113
145
|
|
114
146
|
// Modal body
|
@@ -118,60 +150,59 @@
|
|
118
150
|
// Enable `flex-grow: 1` so that the body take up as much space as possible
|
119
151
|
// when there should be a fixed height on `.modal-dialog`.
|
120
152
|
flex: 1 1 auto;
|
121
|
-
padding: $modal-
|
153
|
+
padding: var(--#{$prefix}modal-padding);
|
122
154
|
}
|
123
155
|
|
124
156
|
// Footer (for actions)
|
125
157
|
.modal-footer {
|
126
158
|
display: flex;
|
127
|
-
flex-wrap: wrap;
|
128
159
|
flex-shrink: 0;
|
160
|
+
flex-wrap: wrap;
|
129
161
|
align-items: center; // vertically center
|
130
162
|
justify-content: flex-end; // Right align buttons with flex property because text-align doesn't work on flex items
|
131
|
-
padding: $modal-
|
132
|
-
|
133
|
-
|
163
|
+
padding: calc(var(--#{$prefix}modal-padding) - var(--#{$prefix}modal-footer-gap) * .5);
|
164
|
+
background-color: var(--#{$prefix}modal-footer-bg);
|
165
|
+
border-top: var(--#{$prefix}modal-footer-border-width) solid var(--#{$prefix}modal-footer-border-color);
|
166
|
+
@include border-bottom-radius(var(--#{$prefix}modal-inner-border-radius));
|
134
167
|
|
135
168
|
// Place margin between footer elements
|
136
169
|
// This solution is far from ideal because of the universal selector usage,
|
137
170
|
// but is needed to fix https://github.com/twbs/bootstrap/issues/24800
|
138
171
|
> * {
|
139
|
-
margin: $modal-footer-
|
172
|
+
margin: calc(var(--#{$prefix}modal-footer-gap) * .5); // Todo in v6: replace with gap on parent class
|
140
173
|
}
|
141
174
|
}
|
142
175
|
|
143
176
|
// Scale up the modal
|
144
177
|
@include media-breakpoint-up(sm) {
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
margin: $modal-dialog-margin-y-sm-up auto;
|
178
|
+
.modal {
|
179
|
+
--#{$prefix}modal-margin: #{$modal-dialog-margin-y-sm-up};
|
180
|
+
--#{$prefix}modal-box-shadow: #{$modal-content-box-shadow-sm-up};
|
149
181
|
}
|
150
182
|
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
min-height: subtract(100%, $modal-dialog-margin-y-sm-up * 2);
|
183
|
+
// Automatically set modal's width for larger viewports
|
184
|
+
.modal-dialog {
|
185
|
+
max-width: var(--#{$prefix}modal-width);
|
186
|
+
margin-right: auto;
|
187
|
+
margin-left: auto;
|
157
188
|
}
|
158
189
|
|
159
|
-
.modal-
|
160
|
-
|
190
|
+
.modal-sm {
|
191
|
+
--#{$prefix}modal-width: #{$modal-sm};
|
161
192
|
}
|
162
|
-
|
163
|
-
.modal-sm { max-width: $modal-sm; }
|
164
193
|
}
|
165
194
|
|
166
195
|
@include media-breakpoint-up(lg) {
|
167
196
|
.modal-lg,
|
168
197
|
.modal-xl {
|
169
|
-
|
198
|
+
--#{$prefix}modal-width: #{$modal-lg};
|
170
199
|
}
|
171
200
|
}
|
172
201
|
|
173
202
|
@include media-breakpoint-up(xl) {
|
174
|
-
.modal-xl {
|
203
|
+
.modal-xl {
|
204
|
+
--#{$prefix}modal-width: #{$modal-xl};
|
205
|
+
}
|
175
206
|
}
|
176
207
|
|
177
208
|
// scss-docs-start modal-fullscreen-loop
|
@@ -192,17 +223,14 @@
|
|
192
223
|
@include border-radius(0);
|
193
224
|
}
|
194
225
|
|
195
|
-
.modal-header
|
226
|
+
.modal-header,
|
227
|
+
.modal-footer {
|
196
228
|
@include border-radius(0);
|
197
229
|
}
|
198
230
|
|
199
231
|
.modal-body {
|
200
232
|
overflow-y: auto;
|
201
233
|
}
|
202
|
-
|
203
|
-
.modal-footer {
|
204
|
-
@include border-radius(0);
|
205
|
-
}
|
206
234
|
}
|
207
235
|
}
|
208
236
|
}
|
data/_sass/bootstrap/_nav.scss
CHANGED
@@ -4,6 +4,16 @@
|
|
4
4
|
// `<nav>`s, `<ul>`s or `<ol>`s.
|
5
5
|
|
6
6
|
.nav {
|
7
|
+
// scss-docs-start nav-css-vars
|
8
|
+
--#{$prefix}nav-link-padding-x: #{$nav-link-padding-x};
|
9
|
+
--#{$prefix}nav-link-padding-y: #{$nav-link-padding-y};
|
10
|
+
@include rfs($nav-link-font-size, --#{$prefix}nav-link-font-size);
|
11
|
+
--#{$prefix}nav-link-font-weight: #{$nav-link-font-weight};
|
12
|
+
--#{$prefix}nav-link-color: #{$nav-link-color};
|
13
|
+
--#{$prefix}nav-link-hover-color: #{$nav-link-hover-color};
|
14
|
+
--#{$prefix}nav-link-disabled-color: #{$nav-link-disabled-color};
|
15
|
+
// scss-docs-end nav-css-vars
|
16
|
+
|
7
17
|
display: flex;
|
8
18
|
flex-wrap: wrap;
|
9
19
|
padding-left: 0;
|
@@ -13,22 +23,22 @@
|
|
13
23
|
|
14
24
|
.nav-link {
|
15
25
|
display: block;
|
16
|
-
padding: $nav-link-padding-y $nav-link-padding-x;
|
17
|
-
@include font-size($nav-link-font-size);
|
18
|
-
font-weight: $nav-link-font-weight;
|
19
|
-
color: $nav-link-color;
|
26
|
+
padding: var(--#{$prefix}nav-link-padding-y) var(--#{$prefix}nav-link-padding-x);
|
27
|
+
@include font-size(var(--#{$prefix}nav-link-font-size));
|
28
|
+
font-weight: var(--#{$prefix}nav-link-font-weight);
|
29
|
+
color: var(--#{$prefix}nav-link-color);
|
20
30
|
text-decoration: if($link-decoration == none, null, none);
|
21
31
|
@include transition($nav-link-transition);
|
22
32
|
|
23
33
|
&:hover,
|
24
34
|
&:focus {
|
25
|
-
color: $nav-link-hover-color;
|
35
|
+
color: var(--#{$prefix}nav-link-hover-color);
|
26
36
|
text-decoration: if($link-hover-decoration == underline, none, null);
|
27
37
|
}
|
28
38
|
|
29
39
|
// Disabled state lightens text
|
30
40
|
&.disabled {
|
31
|
-
color: $nav-link-disabled-color;
|
41
|
+
color: var(--#{$prefix}nav-link-disabled-color);
|
32
42
|
pointer-events: none;
|
33
43
|
cursor: default;
|
34
44
|
}
|
@@ -39,23 +49,34 @@
|
|
39
49
|
//
|
40
50
|
|
41
51
|
.nav-tabs {
|
42
|
-
|
52
|
+
// scss-docs-start nav-tabs-css-vars
|
53
|
+
--#{$prefix}nav-tabs-border-width: #{$nav-tabs-border-width};
|
54
|
+
--#{$prefix}nav-tabs-border-color: #{$nav-tabs-border-color};
|
55
|
+
--#{$prefix}nav-tabs-border-radius: #{$nav-tabs-border-radius};
|
56
|
+
--#{$prefix}nav-tabs-link-hover-border-color: #{$nav-tabs-link-hover-border-color};
|
57
|
+
--#{$prefix}nav-tabs-link-active-color: #{$nav-tabs-link-active-color};
|
58
|
+
--#{$prefix}nav-tabs-link-active-bg: #{$nav-tabs-link-active-bg};
|
59
|
+
--#{$prefix}nav-tabs-link-active-border-color: #{$nav-tabs-link-active-border-color};
|
60
|
+
// scss-docs-end nav-tabs-css-vars
|
61
|
+
|
62
|
+
border-bottom: var(--#{$prefix}nav-tabs-border-width) solid var(--#{$prefix}nav-tabs-border-color);
|
43
63
|
|
44
64
|
.nav-link {
|
45
|
-
margin-bottom:
|
65
|
+
margin-bottom: calc(-1 * var(--#{$prefix}nav-tabs-border-width)); // stylelint-disable-line function-disallowed-list
|
46
66
|
background: none;
|
47
|
-
border: $nav-tabs-border-width solid transparent;
|
48
|
-
@include border-top-radius($nav-tabs-border-radius);
|
67
|
+
border: var(--#{$prefix}nav-tabs-border-width) solid transparent;
|
68
|
+
@include border-top-radius(var(--#{$prefix}nav-tabs-border-radius));
|
49
69
|
|
50
70
|
&:hover,
|
51
71
|
&:focus {
|
52
|
-
border-color: $nav-tabs-link-hover-border-color;
|
53
72
|
// Prevents active .nav-link tab overlapping focus outline of previous/next .nav-link
|
54
73
|
isolation: isolate;
|
74
|
+
border-color: var(--#{$prefix}nav-tabs-link-hover-border-color);
|
55
75
|
}
|
56
76
|
|
57
|
-
&.disabled
|
58
|
-
|
77
|
+
&.disabled,
|
78
|
+
&:disabled {
|
79
|
+
color: var(--#{$prefix}nav-link-disabled-color);
|
59
80
|
background-color: transparent;
|
60
81
|
border-color: transparent;
|
61
82
|
}
|
@@ -63,14 +84,14 @@
|
|
63
84
|
|
64
85
|
.nav-link.active,
|
65
86
|
.nav-item.show .nav-link {
|
66
|
-
color: $nav-tabs-link-active-color;
|
67
|
-
background-color: $nav-tabs-link-active-bg;
|
68
|
-
border-color: $nav-tabs-link-active-border-color;
|
87
|
+
color: var(--#{$prefix}nav-tabs-link-active-color);
|
88
|
+
background-color: var(--#{$prefix}nav-tabs-link-active-bg);
|
89
|
+
border-color: var(--#{$prefix}nav-tabs-link-active-border-color);
|
69
90
|
}
|
70
91
|
|
71
92
|
.dropdown-menu {
|
72
93
|
// Make dropdown border overlap tab border
|
73
|
-
margin-top:
|
94
|
+
margin-top: calc(-1 * var(--#{$prefix}nav-tabs-border-width)); // stylelint-disable-line function-disallowed-list
|
74
95
|
// Remove the top rounded corners here since there is a hard edge above the menu
|
75
96
|
@include border-top-radius(0);
|
76
97
|
}
|
@@ -82,16 +103,28 @@
|
|
82
103
|
//
|
83
104
|
|
84
105
|
.nav-pills {
|
106
|
+
// scss-docs-start nav-pills-css-vars
|
107
|
+
--#{$prefix}nav-pills-border-radius: #{$nav-pills-border-radius};
|
108
|
+
--#{$prefix}nav-pills-link-active-color: #{$nav-pills-link-active-color};
|
109
|
+
--#{$prefix}nav-pills-link-active-bg: #{$nav-pills-link-active-bg};
|
110
|
+
// scss-docs-end nav-pills-css-vars
|
111
|
+
|
85
112
|
.nav-link {
|
86
113
|
background: none;
|
87
114
|
border: 0;
|
88
|
-
@include border-radius($nav-pills-border-radius);
|
115
|
+
@include border-radius(var(--#{$prefix}nav-pills-border-radius));
|
116
|
+
|
117
|
+
&:disabled {
|
118
|
+
color: var(--#{$prefix}nav-link-disabled-color);
|
119
|
+
background-color: transparent;
|
120
|
+
border-color: transparent;
|
121
|
+
}
|
89
122
|
}
|
90
123
|
|
91
124
|
.nav-link.active,
|
92
125
|
.show > .nav-link {
|
93
|
-
color: $nav-pills-link-active-color;
|
94
|
-
@include gradient-bg($nav-pills-link-active-bg);
|
126
|
+
color: var(--#{$prefix}nav-pills-link-active-color);
|
127
|
+
@include gradient-bg(var(--#{$prefix}nav-pills-link-active-bg));
|
95
128
|
}
|
96
129
|
}
|
97
130
|
|