@unlk/keymaster 1.0.4 → 1.0.6
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/CHANGELOG.md +17 -3
- package/README.md +8 -28
- package/dist/css/keymaster.css +352 -200
- package/dist/css/keymaster.css.map +1 -1
- package/dist/css/keymaster.min.css +2 -2
- package/dist/css/keymaster.min.css.map +1 -1
- package/dist/js/keymaster.js +327 -4594
- package/dist/js/keymaster.js.map +1 -1
- package/dist/js/keymaster.min.js +28 -34
- package/dist/js/keymaster.min.js.map +1 -1
- package/js/carousel-caption.js +48 -21
- package/js/video-modal.js +76 -53
- package/package.json +1 -6
- package/scss/keymaster.scss +2 -0
- package/scss/theme/_accordion.scss +2 -1
- package/scss/theme/_alert.scss +7 -1
- package/scss/theme/_forms.scss +1 -0
- package/scss/theme/_root.scss +6 -0
- package/scss/theme/_utilities-overrides.scss +5 -5
- package/scss/theme/_variables-overrides.scss +254 -204
- package/scss/theme/_variables.scss +22 -23
- package/scss/theme/forms/_form-control.scss +3 -0
@@ -1,44 +1,44 @@
|
|
1
1
|
@import "../assets/bootstrap5/functions";
|
2
|
-
@import "../assets/bootstrap5/variables";
|
3
2
|
|
4
|
-
$
|
5
|
-
$enable-
|
3
|
+
$prefix: bs- !default;
|
4
|
+
$enable-shadows: true !default;
|
5
|
+
$enable-validation-icons: false !default;
|
6
6
|
|
7
7
|
// Fontawesome
|
8
|
-
$font-path: "../../fonts";
|
9
|
-
$fa-font-path: "../../../fonts";
|
8
|
+
$font-path: "../../fonts" !default;
|
9
|
+
$fa-font-path: "../../../fonts" !default;
|
10
10
|
|
11
11
|
// Font
|
12
|
-
$font-size-base: 1rem;
|
13
|
-
$font-size-lg: $font-size-base * 1.125;
|
12
|
+
$font-size-base: 1rem !default;
|
13
|
+
$font-size-lg: $font-size-base * 1.125 !default;
|
14
14
|
|
15
|
-
$font-family-base: "Wix MadeFor Display";
|
16
|
-
$font-family-code: "Wix MadeFor Display";
|
15
|
+
$font-family-base: "Wix MadeFor Display" !default;
|
16
|
+
$font-family-code: "Wix MadeFor Display" !default;
|
17
17
|
|
18
18
|
// Colors
|
19
|
-
$foundation: #1d1f50;
|
20
|
-
$blueprint: #3e51a2;
|
21
|
-
$entryway: #3b7bbf;
|
22
|
-
$skylight: #cdecf9;
|
23
|
-
$turnkey: #6346d3;
|
24
|
-
$sunglow: #fbcd2f;
|
25
|
-
$green: #027a48;
|
26
|
-
$red: #b42318;
|
27
|
-
$gray: #c1c5cc;
|
28
|
-
|
29
|
-
$white: #fff;
|
30
|
-
$gray-25: tint-color($gray, 95%);
|
31
|
-
$gray-50: tint-color($gray, 90%);
|
32
|
-
$gray-100: tint-color($gray, 80%);
|
33
|
-
$gray-200: tint-color($gray, 60%);
|
34
|
-
$gray-300: tint-color($gray, 40%);
|
35
|
-
$gray-400: tint-color($gray, 20%);
|
36
|
-
$gray-500: $gray;
|
37
|
-
$gray-600: shade-color($gray, 20%);
|
38
|
-
$gray-700: shade-color($gray, 40%);
|
39
|
-
$gray-800: shade-color($gray, 60%);
|
40
|
-
$gray-900: shade-color($gray, 80%);
|
41
|
-
$black: #000;
|
19
|
+
$foundation: #1d1f50 !default;
|
20
|
+
$blueprint: #3e51a2 !default;
|
21
|
+
$entryway: #3b7bbf !default;
|
22
|
+
$skylight: #cdecf9 !default;
|
23
|
+
$turnkey: #6346d3 !default;
|
24
|
+
$sunglow: #fbcd2f !default;
|
25
|
+
$green: #027a48 !default;
|
26
|
+
$red: #b42318 !default;
|
27
|
+
$gray: #c1c5cc !default;
|
28
|
+
|
29
|
+
$white: #fff !default;
|
30
|
+
$gray-25: tint-color($gray, 95%) !default;
|
31
|
+
$gray-50: tint-color($gray, 90%) !default;
|
32
|
+
$gray-100: tint-color($gray, 80%) !default;
|
33
|
+
$gray-200: tint-color($gray, 60%) !default;
|
34
|
+
$gray-300: tint-color($gray, 40%) !default;
|
35
|
+
$gray-400: tint-color($gray, 20%) !default;
|
36
|
+
$gray-500: $gray !default;
|
37
|
+
$gray-600: shade-color($gray, 20%) !default;
|
38
|
+
$gray-700: shade-color($gray, 40%) !default;
|
39
|
+
$gray-800: shade-color($gray, 60%) !default;
|
40
|
+
$gray-900: shade-color($gray, 80%) !default;
|
41
|
+
$black: #000 !default;
|
42
42
|
|
43
43
|
$grays: (
|
44
44
|
"25": $gray-25,
|
@@ -52,7 +52,7 @@ $grays: (
|
|
52
52
|
"700": $gray-700,
|
53
53
|
"800": $gray-800,
|
54
54
|
"900": $gray-900
|
55
|
-
);
|
55
|
+
) !default;
|
56
56
|
|
57
57
|
$colors: (
|
58
58
|
"foundation": $foundation,
|
@@ -63,106 +63,116 @@ $colors: (
|
|
63
63
|
"turnkey": $turnkey,
|
64
64
|
"red": $red,
|
65
65
|
"gray": $gray-600,
|
66
|
-
);
|
66
|
+
) !default;
|
67
67
|
|
68
68
|
// Color variants
|
69
|
-
$foundation-25: tint-color($foundation, 95%);
|
70
|
-
$foundation-
|
71
|
-
$foundation-
|
72
|
-
$foundation-
|
73
|
-
$foundation-
|
74
|
-
$foundation-
|
75
|
-
$foundation-
|
76
|
-
$foundation-
|
77
|
-
$foundation-
|
78
|
-
$foundation-
|
79
|
-
$foundation-
|
80
|
-
|
81
|
-
|
82
|
-
$blueprint-
|
83
|
-
$blueprint-
|
84
|
-
$blueprint-
|
85
|
-
$blueprint-
|
86
|
-
$blueprint-
|
87
|
-
$blueprint-
|
88
|
-
$blueprint-
|
89
|
-
$blueprint-
|
90
|
-
$blueprint-
|
91
|
-
$blueprint-
|
92
|
-
|
93
|
-
$
|
94
|
-
|
95
|
-
$entryway-
|
96
|
-
$entryway-
|
97
|
-
$entryway-
|
98
|
-
$entryway-
|
99
|
-
$entryway-
|
100
|
-
$entryway-
|
101
|
-
$entryway-
|
102
|
-
$entryway-
|
103
|
-
$entryway-
|
104
|
-
|
105
|
-
$
|
106
|
-
$
|
107
|
-
|
108
|
-
$skylight-
|
109
|
-
$skylight-
|
110
|
-
$skylight-
|
111
|
-
$skylight-
|
112
|
-
$skylight-
|
113
|
-
$skylight-
|
114
|
-
$skylight-
|
115
|
-
$skylight-
|
116
|
-
|
117
|
-
$
|
118
|
-
$
|
119
|
-
$
|
120
|
-
|
121
|
-
$sunglow-
|
122
|
-
$sunglow-
|
123
|
-
$sunglow-
|
124
|
-
$sunglow-
|
125
|
-
$sunglow-
|
126
|
-
$sunglow-
|
127
|
-
$sunglow-
|
128
|
-
|
129
|
-
$
|
130
|
-
$
|
131
|
-
$
|
132
|
-
$
|
133
|
-
|
134
|
-
$turnkey-
|
135
|
-
$turnkey-
|
136
|
-
$turnkey-
|
137
|
-
$turnkey-
|
138
|
-
$turnkey-
|
139
|
-
$turnkey-
|
140
|
-
|
141
|
-
$
|
142
|
-
$
|
143
|
-
$
|
144
|
-
$
|
145
|
-
$
|
146
|
-
|
147
|
-
$success-
|
148
|
-
$success-
|
149
|
-
$success-
|
150
|
-
$success-
|
151
|
-
$success-
|
152
|
-
|
153
|
-
$
|
154
|
-
$
|
155
|
-
$
|
156
|
-
$
|
157
|
-
$
|
158
|
-
$
|
159
|
-
|
160
|
-
$danger-
|
161
|
-
$danger-
|
162
|
-
$danger-
|
163
|
-
$danger-
|
69
|
+
$foundation-25: tint-color($foundation, 95%) !default;
|
70
|
+
$foundation-50: tint-color($foundation, 90%) !default;
|
71
|
+
$foundation-100: tint-color($foundation, 80%) !default;
|
72
|
+
$foundation-200: tint-color($foundation, 60%) !default;
|
73
|
+
$foundation-300: tint-color($foundation, 40%) !default;
|
74
|
+
$foundation-400: tint-color($foundation, 20%) !default;
|
75
|
+
$foundation-450: tint-color($foundation, 10%) !default;
|
76
|
+
$foundation-500: $foundation !default;
|
77
|
+
$foundation-600: shade-color($foundation, 20%) !default;
|
78
|
+
$foundation-700: shade-color($foundation, 40%) !default;
|
79
|
+
$foundation-800: shade-color($foundation, 60%) !default;
|
80
|
+
$foundation-900: shade-color($foundation, 80%) !default;
|
81
|
+
|
82
|
+
$blueprint-25: tint-color($blueprint, 95%) !default;
|
83
|
+
$blueprint-50: tint-color($blueprint, 90%) !default;
|
84
|
+
$blueprint-100: tint-color($blueprint, 80%) !default;
|
85
|
+
$blueprint-200: tint-color($blueprint, 60%) !default;
|
86
|
+
$blueprint-300: tint-color($blueprint, 40%) !default;
|
87
|
+
$blueprint-400: tint-color($blueprint, 20%) !default;
|
88
|
+
$blueprint-450: tint-color($blueprint, 10%) !default;
|
89
|
+
$blueprint-500: $blueprint !default;
|
90
|
+
$blueprint-600: shade-color($blueprint, 20%) !default;
|
91
|
+
$blueprint-700: shade-color($blueprint, 40%) !default;
|
92
|
+
$blueprint-800: shade-color($blueprint, 60%) !default;
|
93
|
+
$blueprint-900: shade-color($blueprint, 80%) !default;
|
94
|
+
|
95
|
+
$entryway-25: tint-color($entryway, 95%) !default;
|
96
|
+
$entryway-50: tint-color($entryway, 90%) !default;
|
97
|
+
$entryway-100: tint-color($entryway, 80%) !default;
|
98
|
+
$entryway-200: tint-color($entryway, 60%) !default;
|
99
|
+
$entryway-300: tint-color($entryway, 40%) !default;
|
100
|
+
$entryway-400: tint-color($entryway, 20%) !default;
|
101
|
+
$entryway-450: tint-color($entryway, 10%) !default;
|
102
|
+
$entryway-500: $entryway !default;
|
103
|
+
$entryway-600: shade-color($entryway, 20%) !default;
|
104
|
+
$entryway-700: shade-color($entryway, 40%) !default;
|
105
|
+
$entryway-800: shade-color($entryway, 60%) !default;
|
106
|
+
$entryway-900: shade-color($entryway, 80%) !default;
|
107
|
+
|
108
|
+
$skylight-25: tint-color($skylight, 95%) !default;
|
109
|
+
$skylight-50: tint-color($skylight, 90%) !default;
|
110
|
+
$skylight-100: tint-color($skylight, 80%) !default;
|
111
|
+
$skylight-200: tint-color($skylight, 60%) !default;
|
112
|
+
$skylight-300: tint-color($skylight, 40%) !default;
|
113
|
+
$skylight-400: tint-color($skylight, 20%) !default;
|
114
|
+
$skylight-450: tint-color($skylight, 10%) !default;
|
115
|
+
$skylight-500: $skylight !default;
|
116
|
+
$skylight-600: shade-color($skylight, 20%) !default;
|
117
|
+
$skylight-700: shade-color($skylight, 40%) !default;
|
118
|
+
$skylight-800: shade-color($skylight, 60%) !default;
|
119
|
+
$skylight-900: shade-color($skylight, 80%) !default;
|
120
|
+
|
121
|
+
$sunglow-25: tint-color($sunglow, 95%) !default;
|
122
|
+
$sunglow-50: tint-color($sunglow, 90%) !default;
|
123
|
+
$sunglow-100: tint-color($sunglow, 80%) !default;
|
124
|
+
$sunglow-200: tint-color($sunglow, 60%) !default;
|
125
|
+
$sunglow-300: tint-color($sunglow, 40%) !default;
|
126
|
+
$sunglow-400: tint-color($sunglow, 20%) !default;
|
127
|
+
$sunglow-450: tint-color($sunglow, 10%) !default;
|
128
|
+
$sunglow-500: $sunglow !default;
|
129
|
+
$sunglow-600: shade-color($sunglow, 20%) !default;
|
130
|
+
$sunglow-700: shade-color($sunglow, 40%) !default;
|
131
|
+
$sunglow-800: shade-color($sunglow, 60%) !default;
|
132
|
+
$sunglow-900: shade-color($sunglow, 80%) !default;
|
133
|
+
|
134
|
+
$turnkey-25: tint-color($turnkey, 95%) !default;
|
135
|
+
$turnkey-50: tint-color($turnkey, 90%) !default;
|
136
|
+
$turnkey-100: tint-color($turnkey, 80%) !default;
|
137
|
+
$turnkey-200: tint-color($turnkey, 60%) !default;
|
138
|
+
$turnkey-300: tint-color($turnkey, 40%) !default;
|
139
|
+
$turnkey-400: tint-color($turnkey, 20%) !default;
|
140
|
+
$turnkey-450: tint-color($turnkey, 10%) !default;
|
141
|
+
$turnkey-500: $turnkey !default;
|
142
|
+
$turnkey-600: shade-color($turnkey, 20%) !default;
|
143
|
+
$turnkey-700: shade-color($turnkey, 40%) !default;
|
144
|
+
$turnkey-800: shade-color($turnkey, 60%) !default;
|
145
|
+
$turnkey-900: shade-color($turnkey, 80%) !default;
|
146
|
+
|
147
|
+
$success-25: tint-color($green, 95%) !default;
|
148
|
+
$success-50: tint-color($green, 90%) !default;
|
149
|
+
$success-100: tint-color($green, 80%) !default;
|
150
|
+
$success-200: tint-color($green, 60%) !default;
|
151
|
+
$success-300: tint-color($green, 40%) !default;
|
152
|
+
$success-400: tint-color($green, 20%) !default;
|
153
|
+
$success-450: tint-color($green, 10%) !default;
|
154
|
+
$success-500: $green !default;
|
155
|
+
$success-600: shade-color($green, 20%) !default;
|
156
|
+
$success-700: shade-color($green, 40%) !default;
|
157
|
+
$success-800: shade-color($green, 60%) !default;
|
158
|
+
$success-900: shade-color($green, 80%) !default;
|
159
|
+
|
160
|
+
$danger-25: tint-color($red, 95%) !default;
|
161
|
+
$danger-50: tint-color($red, 90%) !default;
|
162
|
+
$danger-100: tint-color($red, 80%) !default;
|
163
|
+
$danger-200: tint-color($red, 60%) !default;
|
164
|
+
$danger-300: tint-color($red, 40%) !default;
|
165
|
+
$danger-400: tint-color($red, 20%) !default;
|
166
|
+
$danger-450: tint-color($red, 10%) !default;
|
167
|
+
$danger-500: $red !default;
|
168
|
+
$danger-600: shade-color($red, 20%) !default;
|
169
|
+
$danger-700: shade-color($red, 40%) !default;
|
170
|
+
$danger-800: shade-color($red, 60%) !default;
|
171
|
+
$danger-900: shade-color($red, 80%) !default;
|
164
172
|
|
165
173
|
$foundations: (
|
174
|
+
"foundation-25": $foundation-25,
|
175
|
+
"foundation-50": $foundation-50,
|
166
176
|
"foundation-100": $foundation-100,
|
167
177
|
"foundation-200": $foundation-200,
|
168
178
|
"foundation-300": $foundation-300,
|
@@ -173,9 +183,11 @@ $foundations: (
|
|
173
183
|
"foundation-700": $foundation-700,
|
174
184
|
"foundation-800": $foundation-800,
|
175
185
|
"foundation-900": $foundation-900
|
176
|
-
);
|
186
|
+
) !default;
|
177
187
|
|
178
188
|
$blueprints: (
|
189
|
+
"blueprint-25": $blueprint-25,
|
190
|
+
"blueprint-50": $blueprint-50,
|
179
191
|
"blueprint-100": $blueprint-100,
|
180
192
|
"blueprint-200": $blueprint-200,
|
181
193
|
"blueprint-300": $blueprint-300,
|
@@ -186,9 +198,11 @@ $blueprints: (
|
|
186
198
|
"blueprint-700": $blueprint-700,
|
187
199
|
"blueprint-800": $blueprint-800,
|
188
200
|
"blueprint-900": $blueprint-900
|
189
|
-
);
|
201
|
+
) !default;
|
190
202
|
|
191
203
|
$entryways: (
|
204
|
+
"entryway-25": $entryway-25,
|
205
|
+
"entryway-50": $entryway-50,
|
192
206
|
"entryway-100": $entryway-100,
|
193
207
|
"entryway-200": $entryway-200,
|
194
208
|
"entryway-300": $entryway-300,
|
@@ -199,9 +213,26 @@ $entryways: (
|
|
199
213
|
"entryway-700": $entryway-700,
|
200
214
|
"entryway-800": $entryway-800,
|
201
215
|
"entryway-900": $entryway-900
|
202
|
-
);
|
216
|
+
) !default;
|
217
|
+
|
218
|
+
$skylights: (
|
219
|
+
"skylight-25": $skylight-25,
|
220
|
+
"skylight-50": $skylight-50,
|
221
|
+
"skylight-100": $skylight-100,
|
222
|
+
"skylight-200": $skylight-200,
|
223
|
+
"skylight-300": $skylight-300,
|
224
|
+
"skylight-400": $skylight-400,
|
225
|
+
"skylight-450": $skylight-450,
|
226
|
+
"skylight-500": $skylight-500,
|
227
|
+
"skylight-600": $skylight-600,
|
228
|
+
"skylight-700": $skylight-700,
|
229
|
+
"skylight-800": $skylight-800,
|
230
|
+
"skylight-900": $skylight-900
|
231
|
+
) !default;
|
203
232
|
|
204
233
|
$sunglows: (
|
234
|
+
"sunglow-25": $sunglow-25,
|
235
|
+
"sunglow-50": $sunglow-50,
|
205
236
|
"sunglow-100": $sunglow-100,
|
206
237
|
"sunglow-200": $sunglow-200,
|
207
238
|
"sunglow-300": $sunglow-300,
|
@@ -212,9 +243,11 @@ $sunglows: (
|
|
212
243
|
"sunglow-700": $sunglow-700,
|
213
244
|
"sunglow-800": $sunglow-800,
|
214
245
|
"sunglow-900": $sunglow-900
|
215
|
-
);
|
246
|
+
) !default;
|
216
247
|
|
217
248
|
$warnings: (
|
249
|
+
"warning-25": $sunglow-25,
|
250
|
+
"warning-50": $sunglow-50,
|
218
251
|
"warning-100": $sunglow-100,
|
219
252
|
"warning-200": $sunglow-200,
|
220
253
|
"warning-300": $sunglow-300,
|
@@ -225,9 +258,11 @@ $warnings: (
|
|
225
258
|
"warning-700": $sunglow-700,
|
226
259
|
"warning-800": $sunglow-800,
|
227
260
|
"warning-900": $sunglow-900
|
228
|
-
);
|
261
|
+
) !default;
|
229
262
|
|
230
263
|
$turnkeys: (
|
264
|
+
"turnkey-25": $turnkey-25,
|
265
|
+
"turnkey-50": $turnkey-50,
|
231
266
|
"turnkey-100": $turnkey-100,
|
232
267
|
"turnkey-200": $turnkey-200,
|
233
268
|
"turnkey-300": $turnkey-300,
|
@@ -238,10 +273,11 @@ $turnkeys: (
|
|
238
273
|
"turnkey-700": $turnkey-700,
|
239
274
|
"turnkey-800": $turnkey-800,
|
240
275
|
"turnkey-900": $turnkey-900
|
241
|
-
);
|
276
|
+
) !default;
|
242
277
|
|
243
278
|
$dangers: (
|
244
279
|
"danger-25": $danger-25,
|
280
|
+
"danger-50": $danger-50,
|
245
281
|
"danger-100": $danger-100,
|
246
282
|
"danger-200": $danger-200,
|
247
283
|
"danger-300": $danger-300,
|
@@ -252,10 +288,11 @@ $dangers: (
|
|
252
288
|
"danger-700": $danger-700,
|
253
289
|
"danger-800": $danger-800,
|
254
290
|
"danger-900": $danger-900
|
255
|
-
);
|
291
|
+
) !default;
|
256
292
|
|
257
293
|
$successs: (
|
258
294
|
"success-25": $success-25,
|
295
|
+
"success-50": $success-50,
|
259
296
|
"success-100": $success-100,
|
260
297
|
"success-200": $success-200,
|
261
298
|
"success-300": $success-300,
|
@@ -265,18 +302,18 @@ $successs: (
|
|
265
302
|
"success-600": $success-600,
|
266
303
|
"success-700": $success-700,
|
267
304
|
"success-800": $success-800,
|
268
|
-
"success-900": $success-900
|
269
|
-
);
|
270
|
-
|
271
|
-
$primary: $blueprint;
|
272
|
-
$secondary: $entryway;
|
273
|
-
$tertiary: $skylight;
|
274
|
-
$success: $green;
|
275
|
-
$action: $turnkey;
|
276
|
-
$warning: $sunglow;
|
277
|
-
$danger: $red;
|
278
|
-
$light: $white;
|
279
|
-
$dark: $gray-900;
|
305
|
+
"success-900": $success-900
|
306
|
+
) !default;
|
307
|
+
|
308
|
+
$primary: $blueprint !default;
|
309
|
+
$secondary: $entryway !default;
|
310
|
+
$tertiary: $skylight !default;
|
311
|
+
$success: $green !default;
|
312
|
+
$action: $turnkey !default;
|
313
|
+
$warning: $sunglow !default;
|
314
|
+
$danger: $red !default;
|
315
|
+
$light: $white !default;
|
316
|
+
$dark: $gray-900 !default;
|
280
317
|
|
281
318
|
$theme-colors: (
|
282
319
|
"primary": $primary,
|
@@ -288,26 +325,26 @@ $theme-colors: (
|
|
288
325
|
"danger": $danger,
|
289
326
|
"light": $light,
|
290
327
|
"dark": $dark,
|
291
|
-
);
|
328
|
+
) !default;
|
292
329
|
|
293
330
|
// scss-docs-start theme-text-variables
|
294
|
-
$tertiary-text-emphasis: shade-color($tertiary, 60%);
|
295
|
-
$action-text-emphasis: shade-color($action, 60%);
|
331
|
+
$tertiary-text-emphasis: shade-color($tertiary, 60%) !default;
|
332
|
+
$action-text-emphasis: shade-color($action, 60%) !default;
|
296
333
|
// scss-docs-end theme-text-variables
|
297
334
|
|
298
335
|
// scss-docs-start theme-bg-subtle-variables
|
299
|
-
$tertiary-bg-subtle: tint-color($tertiary, 0%);
|
300
|
-
$action-bg-subtle: tint-color($action, 80%);
|
336
|
+
$tertiary-bg-subtle: tint-color($tertiary, 0%) !default;
|
337
|
+
$action-bg-subtle: tint-color($action, 80%) !default;
|
301
338
|
// scss-docs-end theme-bg-subtle-variables
|
302
339
|
|
303
340
|
// scss-docs-start theme-border-subtle-variables
|
304
|
-
$tertiary-border-subtle: tint-color($tertiary, 60%);
|
305
|
-
$action-border-subtle: tint-color($action, 60%);
|
341
|
+
$tertiary-border-subtle: tint-color($tertiary, 60%) !default;
|
342
|
+
$action-border-subtle: tint-color($action, 60%) !default;
|
306
343
|
// scss-docs-end theme-border-subtle-variables
|
307
344
|
|
308
345
|
|
309
346
|
// Body
|
310
|
-
$body-color: $gray-900;
|
347
|
+
$body-color: $gray-900 !default;
|
311
348
|
|
312
349
|
// Grid breakpoints
|
313
350
|
$grid-breakpoints: (
|
@@ -318,7 +355,7 @@ $grid-breakpoints: (
|
|
318
355
|
xl: 1200px,
|
319
356
|
xxl: 1400px,
|
320
357
|
xxxl: 1600px
|
321
|
-
);
|
358
|
+
) !default;
|
322
359
|
|
323
360
|
// Grid containers
|
324
361
|
$container-max-widths: (
|
@@ -329,20 +366,20 @@ $container-max-widths: (
|
|
329
366
|
xl: 1140px,
|
330
367
|
xxl: 1320px,
|
331
368
|
xxxl: 1510px
|
332
|
-
);
|
369
|
+
) !default;
|
333
370
|
|
334
371
|
// Body
|
335
|
-
$body-color: $foundation-500;
|
372
|
+
$body-color: $foundation-500 !default;
|
336
373
|
|
337
374
|
// Headings
|
338
|
-
$headings-color: $foundation-500;
|
339
|
-
$headings-font-family: "Neulis Neue";
|
340
|
-
$headings-font-weight: $font-weight-medium;
|
375
|
+
$headings-color: $foundation-500 !default;
|
376
|
+
$headings-font-family: "Neulis Neue" !default;
|
377
|
+
$headings-font-weight: var(--#{$prefix}font-weight-medium) !default;
|
341
378
|
|
342
379
|
// Display Headings
|
343
|
-
$display-font-family: "Neulis Neue";
|
344
|
-
$display-font-weight: $font-weight-medium;
|
345
|
-
$display-line-height: 1.1;
|
380
|
+
$display-font-family: "Neulis Neue" !default;
|
381
|
+
$display-font-weight: var(--#{$prefix}font-weight-medium) !default;
|
382
|
+
$display-line-height: 1.1 !default;
|
346
383
|
|
347
384
|
$font-sizes: (
|
348
385
|
1: $font-size-base * 1.25,
|
@@ -351,10 +388,10 @@ $font-sizes: (
|
|
351
388
|
4: $font-size-base * .875,
|
352
389
|
5: $font-size-base * .75,
|
353
390
|
6: $font-size-base * .625,
|
354
|
-
);
|
391
|
+
) !default;
|
355
392
|
|
356
393
|
// Tables
|
357
|
-
$table-bg-scale: -80
|
394
|
+
$table-bg-scale: -80% !default;
|
358
395
|
|
359
396
|
$table-variants: (
|
360
397
|
"primary": shift-color($primary, $table-bg-scale),
|
@@ -366,59 +403,72 @@ $table-variants: (
|
|
366
403
|
"danger": shift-color($danger, $table-bg-scale),
|
367
404
|
"light": $light,
|
368
405
|
"dark": $dark,
|
369
|
-
);
|
406
|
+
) !default;
|
370
407
|
|
371
408
|
// Borders
|
372
|
-
$border-width: 2px;
|
409
|
+
$border-width: 2px !default;
|
410
|
+
$border-color: $gray-400 !default;
|
373
411
|
|
374
412
|
// Buttons + Forms
|
375
|
-
$input-btn-border-width: .125rem;
|
413
|
+
$input-btn-border-width: .125rem !default;
|
376
414
|
|
377
415
|
// Buttons
|
378
|
-
$btn-hover-bg-shade-amount: 20
|
379
|
-
$btn-hover-bg-tint-amount: 10
|
380
|
-
$btn-hover-border-shade-amount: 20
|
381
|
-
$btn-hover-border-tint-amount: 10
|
382
|
-
$btn-active-bg-shade-amount: 40
|
383
|
-
$btn-active-bg-tint-amount: 20
|
384
|
-
$btn-active-border-shade-amount: 40
|
385
|
-
$btn-active-border-tint-amount: 10
|
416
|
+
$btn-hover-bg-shade-amount: 20% !default;
|
417
|
+
$btn-hover-bg-tint-amount: 10% !default;
|
418
|
+
$btn-hover-border-shade-amount: 20% !default;
|
419
|
+
$btn-hover-border-tint-amount: 10% !default;
|
420
|
+
$btn-active-bg-shade-amount: 40% !default;
|
421
|
+
$btn-active-bg-tint-amount: 20% !default;
|
422
|
+
$btn-active-border-shade-amount: 40% !default;
|
423
|
+
$btn-active-border-tint-amount: 10% !default;
|
386
424
|
|
387
425
|
// Border Radius
|
388
|
-
$border-radius: .5rem;
|
389
|
-
$border-radius-sm: .375rem;
|
390
|
-
$border-radius-lg: .625rem;
|
391
|
-
$border-radius-xl: 1rem;
|
392
|
-
$border-radius-xxl: 1.5rem;
|
426
|
+
$border-radius: .5rem !default;
|
427
|
+
$border-radius-sm: .375rem !default;
|
428
|
+
$border-radius-lg: .625rem !default;
|
429
|
+
$border-radius-xl: 1rem !default;
|
430
|
+
$border-radius-xxl: 1.5rem !default;
|
393
431
|
|
394
|
-
$blockquote-font-size: $font-size-base * 3.5;
|
432
|
+
$blockquote-font-size: $font-size-base * 3.5 !default;
|
395
433
|
|
396
434
|
// Accordion
|
397
|
-
$accordion-border-radius: var(--#{$prefix}border-radius-sm);
|
398
|
-
$accordion-
|
399
|
-
$accordion-button-active-
|
400
|
-
$accordion-
|
401
|
-
$accordion-icon-active-color: $light;
|
402
|
-
$accordion-button-icon: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='#{$accordion-icon-color}'><path d='M11.1,18.3c0.5,0.5,1.4,0.5,1.9,0L23.6,7.6c0.5-0.5,0.5-1.4,0-1.9c-0.5-0.5-1.4-0.5-1.9,0L12,15.5L2.3,5.7c-0.5-0.5-1.4-0.5-1.9,0s-0.5,1.4,0,1.9L11.1,18.3z'/></svg>");
|
403
|
-
$accordion-button-active-icon: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='#{$accordion-icon-active-color}'><path d='M11.1,18.3c0.5,0.5,1.4,0.5,1.9,0L23.6,7.6c0.5-0.5,0.5-1.4,0-1.9c-0.5-0.5-1.4-0.5-1.9,0L12,15.5L2.3,5.7c-0.5-0.5-1.4-0.5-1.9,0s-0.5,1.4,0,1.9L11.1,18.3z'/></svg>");
|
404
|
-
$accordion-button-focus-box-shadow: none;
|
435
|
+
$accordion-border-radius: var(--#{$prefix}border-radius-sm) !default;
|
436
|
+
$accordion-button-active-bg: var(--#{$prefix}primary) !default;
|
437
|
+
$accordion-button-active-color: var(--#{$prefix}light) !default;
|
438
|
+
$accordion-icon-color: $body-color !default;
|
439
|
+
$accordion-icon-active-color: $light !default;
|
440
|
+
$accordion-button-icon: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='#{$accordion-icon-color}'><path d='M11.1,18.3c0.5,0.5,1.4,0.5,1.9,0L23.6,7.6c0.5-0.5,0.5-1.4,0-1.9c-0.5-0.5-1.4-0.5-1.9,0L12,15.5L2.3,5.7c-0.5-0.5-1.4-0.5-1.9,0s-0.5,1.4,0,1.9L11.1,18.3z'/></svg>") !default;
|
441
|
+
$accordion-button-active-icon: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='#{$accordion-icon-active-color}'><path d='M11.1,18.3c0.5,0.5,1.4,0.5,1.9,0L23.6,7.6c0.5-0.5,0.5-1.4,0-1.9c-0.5-0.5-1.4-0.5-1.9,0L12,15.5L2.3,5.7c-0.5-0.5-1.4-0.5-1.9,0s-0.5,1.4,0,1.9L11.1,18.3z'/></svg>") !default;
|
442
|
+
$accordion-button-focus-box-shadow: none !default;
|
405
443
|
|
406
444
|
// Badges
|
407
|
-
$badge-font-size: .9375em;
|
408
|
-
$badge-border-radius: var(--#{$prefix}border-radius-pill);
|
445
|
+
$badge-font-size: .9375em !default;
|
446
|
+
$badge-border-radius: var(--#{$prefix}border-radius-pill) !default;
|
409
447
|
|
410
448
|
// Modal
|
411
|
-
$modal-backdrop-bg: $foundation;
|
412
|
-
$modal-backdrop-opacity: .7;
|
449
|
+
$modal-backdrop-bg: $foundation !default;
|
450
|
+
$modal-backdrop-opacity: .7 !default;
|
413
451
|
|
414
452
|
// Carousel
|
415
|
-
$carousel-control-color: $black;
|
416
|
-
$carousel-control-icon-width: .75rem;
|
417
|
-
$carousel-indicator-width: 6px;
|
418
|
-
$carousel-indicator-height: 6px;
|
419
|
-
$carousel-indicator-active-bg: $foundation-500;
|
420
|
-
$carousel-control-prev-icon-bg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='#{$carousel-control-color}'><path d='M0.251787 5.38204C-0.083034 5.72383 -0.083034 6.27891 0.251787 6.62071L4.5375 10.9957C4.87232 11.3375 5.41607 11.3375 5.75089 10.9957C6.08572 10.6539 6.08572 10.0988 5.75089 9.75704L2.925 6.87501H11.1429C11.617 6.87501 12 6.48399 12 6.00001C12 5.51602 11.617 5.12501 11.1429 5.12501H2.92768L5.74822 2.24297C6.08304 1.90118 6.08304 1.3461 5.74822 1.0043C5.41339 0.662506 4.86964 0.662506 4.53482 1.0043L0.249109 5.3793L0.251787 5.38204Z'/></svg>");
|
421
|
-
$carousel-control-next-icon-bg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='#{$carousel-control-color}'><path d='M11.7482 5.87002C12.083 5.52822 12.083 4.97314 11.7482 4.63135L7.4625 0.256348C7.12768 -0.0854492 6.58393 -0.0854492 6.24911 0.256348C5.91429 0.598145 5.91429 1.15322 6.24911 1.49502L9.075 4.37705H0.857143C0.383036 4.37705 0 4.76807 0 5.25205C0 5.73604 0.383036 6.12705 0.857143 6.12705H9.07232L6.25179 9.00908C5.91696 9.35088 5.91696 9.90596 6.25179 10.2478C6.58661 10.5896 7.13036 10.5896 7.46518 10.2478L11.7509 5.87275L11.7482 5.87002Z'/></svg>");
|
453
|
+
$carousel-control-color: $black !default;
|
454
|
+
$carousel-control-icon-width: .75rem !default;
|
455
|
+
$carousel-indicator-width: 6px !default;
|
456
|
+
$carousel-indicator-height: 6px !default;
|
457
|
+
$carousel-indicator-active-bg: $foundation-500 !default;
|
458
|
+
$carousel-control-prev-icon-bg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='#{$carousel-control-color}'><path d='M0.251787 5.38204C-0.083034 5.72383 -0.083034 6.27891 0.251787 6.62071L4.5375 10.9957C4.87232 11.3375 5.41607 11.3375 5.75089 10.9957C6.08572 10.6539 6.08572 10.0988 5.75089 9.75704L2.925 6.87501H11.1429C11.617 6.87501 12 6.48399 12 6.00001C12 5.51602 11.617 5.12501 11.1429 5.12501H2.92768L5.74822 2.24297C6.08304 1.90118 6.08304 1.3461 5.74822 1.0043C5.41339 0.662506 4.86964 0.662506 4.53482 1.0043L0.249109 5.3793L0.251787 5.38204Z'/></svg>") !default;
|
459
|
+
$carousel-control-next-icon-bg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='#{$carousel-control-color}'><path d='M11.7482 5.87002C12.083 5.52822 12.083 4.97314 11.7482 4.63135L7.4625 0.256348C7.12768 -0.0854492 6.58393 -0.0854492 6.24911 0.256348C5.91429 0.598145 5.91429 1.15322 6.24911 1.49502L9.075 4.37705H0.857143C0.383036 4.37705 0 4.76807 0 5.25205C0 5.73604 0.383036 6.12705 0.857143 6.12705H9.07232L6.25179 9.00908C5.91696 9.35088 5.91696 9.90596 6.25179 10.2478C6.58661 10.5896 7.13036 10.5896 7.46518 10.2478L11.7509 5.87275L11.7482 5.87002Z'/></svg>") !default;
|
422
460
|
|
423
461
|
// Tooltips
|
424
|
-
$tooltip-bg: var(--#{$prefix}primary);
|
462
|
+
$tooltip-bg: var(--#{$prefix}primary) !default;
|
463
|
+
|
464
|
+
// Progress
|
465
|
+
$progress-border-radius: var(--#{$prefix}border-radius-xs) !default;
|
466
|
+
|
467
|
+
// Inputs
|
468
|
+
$input-border-color: $gray-600 !default;
|
469
|
+
$input-placeholder-color: $gray-600 !default;
|
470
|
+
$input-focus-border-color: $tertiary !default;
|
471
|
+
$input-focus-box-shadow: 0 0 0 .25rem rgba($tertiary, .75) !default;
|
472
|
+
$input-border-radius: var(--#{$prefix}border-radius-xs) !default;
|
473
|
+
$input-border-radius-sm: var(--#{$prefix}border-radius-xs) !default;
|
474
|
+
$input-border-radius-lg: var(--#{$prefix}border-radius-sm) !default;
|