@unlk/keymaster 1.0.5 → 1.0.7
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 +16 -0
- package/dist/css/keymaster.css +314 -34
- 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 -1
- package/scss/theme/_accordion.scss +2 -1
- package/scss/theme/_alert.scss +7 -1
- package/scss/theme/_forms.scss +2 -0
- package/scss/theme/_utilities-overrides.scss +5 -5
- package/scss/theme/_variables-overrides.scss +251 -212
- package/scss/theme/_variables.scss +22 -22
- package/scss/theme/forms/_floating-labels.scss +12 -0
- package/scss/theme/forms/_form-check.scss +89 -0
@@ -1,43 +1,44 @@
|
|
1
1
|
@import "../assets/bootstrap5/functions";
|
2
2
|
|
3
|
-
$prefix: bs
|
4
|
-
$enable-
|
3
|
+
$prefix: bs- !default;
|
4
|
+
$enable-shadows: true !default;
|
5
|
+
$enable-validation-icons: false !default;
|
5
6
|
|
6
7
|
// Fontawesome
|
7
|
-
$font-path: "../../fonts";
|
8
|
-
$fa-font-path: "../../../fonts";
|
8
|
+
$font-path: "../../fonts" !default;
|
9
|
+
$fa-font-path: "../../../fonts" !default;
|
9
10
|
|
10
11
|
// Font
|
11
|
-
$font-size-base: 1rem;
|
12
|
-
$font-size-lg: $font-size-base * 1.125;
|
12
|
+
$font-size-base: 1rem !default;
|
13
|
+
$font-size-lg: $font-size-base * 1.125 !default;
|
13
14
|
|
14
|
-
$font-family-base: "Wix MadeFor Display";
|
15
|
-
$font-family-code: "Wix MadeFor Display";
|
15
|
+
$font-family-base: "Wix MadeFor Display" !default;
|
16
|
+
$font-family-code: "Wix MadeFor Display" !default;
|
16
17
|
|
17
18
|
// Colors
|
18
|
-
$foundation: #1d1f50;
|
19
|
-
$blueprint: #3e51a2;
|
20
|
-
$entryway: #3b7bbf;
|
21
|
-
$skylight: #cdecf9;
|
22
|
-
$turnkey: #6346d3;
|
23
|
-
$sunglow: #fbcd2f;
|
24
|
-
$green: #027a48;
|
25
|
-
$red: #b42318;
|
26
|
-
$gray: #c1c5cc;
|
27
|
-
|
28
|
-
$white: #fff;
|
29
|
-
$gray-25: tint-color($gray, 95%);
|
30
|
-
$gray-50: tint-color($gray, 90%);
|
31
|
-
$gray-100: tint-color($gray, 80%);
|
32
|
-
$gray-200: tint-color($gray, 60%);
|
33
|
-
$gray-300: tint-color($gray, 40%);
|
34
|
-
$gray-400: tint-color($gray, 20%);
|
35
|
-
$gray-500: $gray;
|
36
|
-
$gray-600: shade-color($gray, 20%);
|
37
|
-
$gray-700: shade-color($gray, 40%);
|
38
|
-
$gray-800: shade-color($gray, 60%);
|
39
|
-
$gray-900: shade-color($gray, 80%);
|
40
|
-
$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;
|
41
42
|
|
42
43
|
$grays: (
|
43
44
|
"25": $gray-25,
|
@@ -51,7 +52,7 @@ $grays: (
|
|
51
52
|
"700": $gray-700,
|
52
53
|
"800": $gray-800,
|
53
54
|
"900": $gray-900
|
54
|
-
);
|
55
|
+
) !default;
|
55
56
|
|
56
57
|
$colors: (
|
57
58
|
"foundation": $foundation,
|
@@ -62,106 +63,116 @@ $colors: (
|
|
62
63
|
"turnkey": $turnkey,
|
63
64
|
"red": $red,
|
64
65
|
"gray": $gray-600,
|
65
|
-
);
|
66
|
+
) !default;
|
66
67
|
|
67
68
|
// Color variants
|
68
|
-
$foundation-25: tint-color($foundation, 95%);
|
69
|
-
$foundation-
|
70
|
-
$foundation-
|
71
|
-
$foundation-
|
72
|
-
$foundation-
|
73
|
-
$foundation-
|
74
|
-
$foundation-
|
75
|
-
$foundation-
|
76
|
-
$foundation-
|
77
|
-
$foundation-
|
78
|
-
$foundation-
|
79
|
-
|
80
|
-
|
81
|
-
$blueprint-
|
82
|
-
$blueprint-
|
83
|
-
$blueprint-
|
84
|
-
$blueprint-
|
85
|
-
$blueprint-
|
86
|
-
$blueprint-
|
87
|
-
$blueprint-
|
88
|
-
$blueprint-
|
89
|
-
$blueprint-
|
90
|
-
$blueprint-
|
91
|
-
|
92
|
-
$
|
93
|
-
|
94
|
-
$entryway-
|
95
|
-
$entryway-
|
96
|
-
$entryway-
|
97
|
-
$entryway-
|
98
|
-
$entryway-
|
99
|
-
$entryway-
|
100
|
-
$entryway-
|
101
|
-
$entryway-
|
102
|
-
$entryway-
|
103
|
-
|
104
|
-
$
|
105
|
-
$
|
106
|
-
|
107
|
-
$skylight-
|
108
|
-
$skylight-
|
109
|
-
$skylight-
|
110
|
-
$skylight-
|
111
|
-
$skylight-
|
112
|
-
$skylight-
|
113
|
-
$skylight-
|
114
|
-
$skylight-
|
115
|
-
|
116
|
-
$
|
117
|
-
$
|
118
|
-
$
|
119
|
-
|
120
|
-
$sunglow-
|
121
|
-
$sunglow-
|
122
|
-
$sunglow-
|
123
|
-
$sunglow-
|
124
|
-
$sunglow-
|
125
|
-
$sunglow-
|
126
|
-
$sunglow-
|
127
|
-
|
128
|
-
$
|
129
|
-
$
|
130
|
-
$
|
131
|
-
$
|
132
|
-
|
133
|
-
$turnkey-
|
134
|
-
$turnkey-
|
135
|
-
$turnkey-
|
136
|
-
$turnkey-
|
137
|
-
$turnkey-
|
138
|
-
$turnkey-
|
139
|
-
|
140
|
-
$
|
141
|
-
$
|
142
|
-
$
|
143
|
-
$
|
144
|
-
$
|
145
|
-
|
146
|
-
$success-
|
147
|
-
$success-
|
148
|
-
$success-
|
149
|
-
$success-
|
150
|
-
$success-
|
151
|
-
|
152
|
-
$
|
153
|
-
$
|
154
|
-
$
|
155
|
-
$
|
156
|
-
$
|
157
|
-
$
|
158
|
-
|
159
|
-
$danger-
|
160
|
-
$danger-
|
161
|
-
$danger-
|
162
|
-
$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;
|
163
172
|
|
164
173
|
$foundations: (
|
174
|
+
"foundation-25": $foundation-25,
|
175
|
+
"foundation-50": $foundation-50,
|
165
176
|
"foundation-100": $foundation-100,
|
166
177
|
"foundation-200": $foundation-200,
|
167
178
|
"foundation-300": $foundation-300,
|
@@ -172,9 +183,11 @@ $foundations: (
|
|
172
183
|
"foundation-700": $foundation-700,
|
173
184
|
"foundation-800": $foundation-800,
|
174
185
|
"foundation-900": $foundation-900
|
175
|
-
);
|
186
|
+
) !default;
|
176
187
|
|
177
188
|
$blueprints: (
|
189
|
+
"blueprint-25": $blueprint-25,
|
190
|
+
"blueprint-50": $blueprint-50,
|
178
191
|
"blueprint-100": $blueprint-100,
|
179
192
|
"blueprint-200": $blueprint-200,
|
180
193
|
"blueprint-300": $blueprint-300,
|
@@ -185,9 +198,11 @@ $blueprints: (
|
|
185
198
|
"blueprint-700": $blueprint-700,
|
186
199
|
"blueprint-800": $blueprint-800,
|
187
200
|
"blueprint-900": $blueprint-900
|
188
|
-
);
|
201
|
+
) !default;
|
189
202
|
|
190
203
|
$entryways: (
|
204
|
+
"entryway-25": $entryway-25,
|
205
|
+
"entryway-50": $entryway-50,
|
191
206
|
"entryway-100": $entryway-100,
|
192
207
|
"entryway-200": $entryway-200,
|
193
208
|
"entryway-300": $entryway-300,
|
@@ -198,9 +213,26 @@ $entryways: (
|
|
198
213
|
"entryway-700": $entryway-700,
|
199
214
|
"entryway-800": $entryway-800,
|
200
215
|
"entryway-900": $entryway-900
|
201
|
-
);
|
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;
|
202
232
|
|
203
233
|
$sunglows: (
|
234
|
+
"sunglow-25": $sunglow-25,
|
235
|
+
"sunglow-50": $sunglow-50,
|
204
236
|
"sunglow-100": $sunglow-100,
|
205
237
|
"sunglow-200": $sunglow-200,
|
206
238
|
"sunglow-300": $sunglow-300,
|
@@ -211,9 +243,11 @@ $sunglows: (
|
|
211
243
|
"sunglow-700": $sunglow-700,
|
212
244
|
"sunglow-800": $sunglow-800,
|
213
245
|
"sunglow-900": $sunglow-900
|
214
|
-
);
|
246
|
+
) !default;
|
215
247
|
|
216
248
|
$warnings: (
|
249
|
+
"warning-25": $sunglow-25,
|
250
|
+
"warning-50": $sunglow-50,
|
217
251
|
"warning-100": $sunglow-100,
|
218
252
|
"warning-200": $sunglow-200,
|
219
253
|
"warning-300": $sunglow-300,
|
@@ -224,9 +258,11 @@ $warnings: (
|
|
224
258
|
"warning-700": $sunglow-700,
|
225
259
|
"warning-800": $sunglow-800,
|
226
260
|
"warning-900": $sunglow-900
|
227
|
-
);
|
261
|
+
) !default;
|
228
262
|
|
229
263
|
$turnkeys: (
|
264
|
+
"turnkey-25": $turnkey-25,
|
265
|
+
"turnkey-50": $turnkey-50,
|
230
266
|
"turnkey-100": $turnkey-100,
|
231
267
|
"turnkey-200": $turnkey-200,
|
232
268
|
"turnkey-300": $turnkey-300,
|
@@ -237,10 +273,11 @@ $turnkeys: (
|
|
237
273
|
"turnkey-700": $turnkey-700,
|
238
274
|
"turnkey-800": $turnkey-800,
|
239
275
|
"turnkey-900": $turnkey-900
|
240
|
-
);
|
276
|
+
) !default;
|
241
277
|
|
242
278
|
$dangers: (
|
243
279
|
"danger-25": $danger-25,
|
280
|
+
"danger-50": $danger-50,
|
244
281
|
"danger-100": $danger-100,
|
245
282
|
"danger-200": $danger-200,
|
246
283
|
"danger-300": $danger-300,
|
@@ -251,10 +288,11 @@ $dangers: (
|
|
251
288
|
"danger-700": $danger-700,
|
252
289
|
"danger-800": $danger-800,
|
253
290
|
"danger-900": $danger-900
|
254
|
-
);
|
291
|
+
) !default;
|
255
292
|
|
256
293
|
$successs: (
|
257
294
|
"success-25": $success-25,
|
295
|
+
"success-50": $success-50,
|
258
296
|
"success-100": $success-100,
|
259
297
|
"success-200": $success-200,
|
260
298
|
"success-300": $success-300,
|
@@ -264,18 +302,18 @@ $successs: (
|
|
264
302
|
"success-600": $success-600,
|
265
303
|
"success-700": $success-700,
|
266
304
|
"success-800": $success-800,
|
267
|
-
"success-900": $success-900
|
268
|
-
);
|
269
|
-
|
270
|
-
$primary: $blueprint;
|
271
|
-
$secondary: $entryway;
|
272
|
-
$tertiary: $skylight;
|
273
|
-
$success: $green;
|
274
|
-
$action: $turnkey;
|
275
|
-
$warning: $sunglow;
|
276
|
-
$danger: $red;
|
277
|
-
$light: $white;
|
278
|
-
$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;
|
279
317
|
|
280
318
|
$theme-colors: (
|
281
319
|
"primary": $primary,
|
@@ -287,26 +325,26 @@ $theme-colors: (
|
|
287
325
|
"danger": $danger,
|
288
326
|
"light": $light,
|
289
327
|
"dark": $dark,
|
290
|
-
);
|
328
|
+
) !default;
|
291
329
|
|
292
330
|
// scss-docs-start theme-text-variables
|
293
|
-
$tertiary-text-emphasis: shade-color($tertiary, 60%);
|
294
|
-
$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;
|
295
333
|
// scss-docs-end theme-text-variables
|
296
334
|
|
297
335
|
// scss-docs-start theme-bg-subtle-variables
|
298
|
-
$tertiary-bg-subtle: tint-color($tertiary, 0%);
|
299
|
-
$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;
|
300
338
|
// scss-docs-end theme-bg-subtle-variables
|
301
339
|
|
302
340
|
// scss-docs-start theme-border-subtle-variables
|
303
|
-
$tertiary-border-subtle: tint-color($tertiary, 60%);
|
304
|
-
$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;
|
305
343
|
// scss-docs-end theme-border-subtle-variables
|
306
344
|
|
307
345
|
|
308
346
|
// Body
|
309
|
-
$body-color: $gray-900;
|
347
|
+
$body-color: $gray-900 !default;
|
310
348
|
|
311
349
|
// Grid breakpoints
|
312
350
|
$grid-breakpoints: (
|
@@ -317,7 +355,7 @@ $grid-breakpoints: (
|
|
317
355
|
xl: 1200px,
|
318
356
|
xxl: 1400px,
|
319
357
|
xxxl: 1600px
|
320
|
-
);
|
358
|
+
) !default;
|
321
359
|
|
322
360
|
// Grid containers
|
323
361
|
$container-max-widths: (
|
@@ -328,20 +366,20 @@ $container-max-widths: (
|
|
328
366
|
xl: 1140px,
|
329
367
|
xxl: 1320px,
|
330
368
|
xxxl: 1510px
|
331
|
-
);
|
369
|
+
) !default;
|
332
370
|
|
333
371
|
// Body
|
334
|
-
$body-color: $foundation-500;
|
372
|
+
$body-color: $foundation-500 !default;
|
335
373
|
|
336
374
|
// Headings
|
337
|
-
$headings-color: $foundation-500;
|
338
|
-
$headings-font-family: "Neulis Neue";
|
339
|
-
$headings-font-weight: var(--#{$prefix}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;
|
340
378
|
|
341
379
|
// Display Headings
|
342
|
-
$display-font-family: "Neulis Neue";
|
343
|
-
$display-font-weight: var(--#{$prefix}font-weight-medium);
|
344
|
-
$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;
|
345
383
|
|
346
384
|
$font-sizes: (
|
347
385
|
1: $font-size-base * 1.25,
|
@@ -350,10 +388,10 @@ $font-sizes: (
|
|
350
388
|
4: $font-size-base * .875,
|
351
389
|
5: $font-size-base * .75,
|
352
390
|
6: $font-size-base * .625,
|
353
|
-
);
|
391
|
+
) !default;
|
354
392
|
|
355
393
|
// Tables
|
356
|
-
$table-bg-scale: -80
|
394
|
+
$table-bg-scale: -80% !default;
|
357
395
|
|
358
396
|
$table-variants: (
|
359
397
|
"primary": shift-color($primary, $table-bg-scale),
|
@@ -365,72 +403,73 @@ $table-variants: (
|
|
365
403
|
"danger": shift-color($danger, $table-bg-scale),
|
366
404
|
"light": $light,
|
367
405
|
"dark": $dark,
|
368
|
-
);
|
406
|
+
) !default;
|
369
407
|
|
370
408
|
// Borders
|
371
|
-
$border-width: 2px;
|
372
|
-
$border-color: $gray-400;
|
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-button-active-bg: var(--#{$prefix}primary);
|
399
|
-
$accordion-button-active-color: var(--#{$prefix}light);
|
400
|
-
$accordion-icon-color: $body-color;
|
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-
|
462
|
+
$tooltip-border-radius: var(--#{$prefix}border-radius-xs) !default;
|
463
|
+
$tooltip-bg: var(--#{$prefix}primary) !default;
|
425
464
|
|
426
465
|
// Progress
|
427
|
-
$progress-border-radius: var(--#{$prefix}border-radius-xs);
|
466
|
+
$progress-border-radius: var(--#{$prefix}border-radius-xs) !default;
|
428
467
|
|
429
468
|
// Inputs
|
430
|
-
$input-border-color: $gray-600;
|
431
|
-
$input-placeholder-color: $gray-600;
|
432
|
-
$input-focus-border-color: $tertiary;
|
433
|
-
$input-focus-box-shadow: 0 0 0 .25rem rgba($tertiary, .75);
|
434
|
-
$input-border-radius: var(--#{$prefix}border-radius-xs);
|
435
|
-
$input-border-radius-sm: var(--#{$prefix}border-radius-xs);
|
436
|
-
$input-border-radius-lg: var(--#{$prefix}border-radius-sm);
|
469
|
+
$input-border-color: $gray-600 !default;
|
470
|
+
$input-placeholder-color: $gray-600 !default;
|
471
|
+
$input-focus-border-color: $tertiary !default;
|
472
|
+
$input-focus-box-shadow: 0 0 0 .25rem rgba($tertiary, .75) !default;
|
473
|
+
$input-border-radius: var(--#{$prefix}border-radius-xs) !default;
|
474
|
+
$input-border-radius-sm: var(--#{$prefix}border-radius-xs) !default;
|
475
|
+
$input-border-radius-lg: var(--#{$prefix}border-radius-sm) !default;
|